2012-02-28 08:09:23 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe Event, models: true do
|
2012-02-28 09:01:14 -05:00
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
it { is_expected.to belong_to(:target) }
|
2012-02-28 09:01:14 -05:00
|
|
|
end
|
|
|
|
|
2012-03-28 15:53:45 -04:00
|
|
|
describe "Respond to" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to respond_to(:author_name) }
|
|
|
|
it { is_expected.to respond_to(:author_email) }
|
|
|
|
it { is_expected.to respond_to(:issue_title) }
|
|
|
|
it { is_expected.to respond_to(:merge_request_title) }
|
|
|
|
it { is_expected.to respond_to(:commits) }
|
2012-03-28 15:53:45 -04:00
|
|
|
end
|
|
|
|
|
2016-04-21 03:42:08 -04:00
|
|
|
describe 'Callbacks' do
|
|
|
|
describe 'after_create :reset_project_activity' do
|
2016-09-16 10:05:12 -04:00
|
|
|
let(:project) { create(:empty_project) }
|
2016-04-21 03:42:08 -04:00
|
|
|
|
2016-09-16 10:05:12 -04:00
|
|
|
it 'calls the reset_project_activity method' do
|
|
|
|
expect_any_instance_of(Event).to receive(:reset_project_activity)
|
2016-04-21 03:42:08 -04:00
|
|
|
|
2016-09-16 10:05:12 -04:00
|
|
|
create_event(project, project.owner)
|
2016-04-21 03:42:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-14 18:00:59 -04:00
|
|
|
describe "Push event" do
|
2016-10-12 02:16:29 -04:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:user) { project.owner }
|
|
|
|
let(:event) { create_event(project, user) }
|
|
|
|
|
|
|
|
it do
|
|
|
|
expect(event.push?).to be_truthy
|
|
|
|
expect(event.visible_to_user?).to be_truthy
|
|
|
|
expect(event.tag?).to be_falsey
|
|
|
|
expect(event.branch_name).to eq("master")
|
|
|
|
expect(event.author).to eq(user)
|
2012-03-28 15:53:45 -04:00
|
|
|
end
|
|
|
|
end
|
2015-11-11 11:14:47 -05:00
|
|
|
|
2016-07-04 10:29:28 -04:00
|
|
|
describe '#note?' do
|
|
|
|
subject { Event.new(project: target.project, target: target) }
|
|
|
|
|
|
|
|
context 'issue note event' do
|
|
|
|
let(:target) { create(:note_on_issue) }
|
|
|
|
|
|
|
|
it { is_expected.to be_note }
|
|
|
|
end
|
|
|
|
|
2016-07-06 04:08:42 -04:00
|
|
|
context 'merge request diff note event' do
|
2016-07-07 15:57:38 -04:00
|
|
|
let(:target) { create(:legacy_diff_note_on_merge_request) }
|
2016-07-04 10:29:28 -04:00
|
|
|
|
|
|
|
it { is_expected.to be_note }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-24 13:24:22 -04:00
|
|
|
describe '#visible_to_user?' do
|
2016-03-24 13:20:47 -04:00
|
|
|
let(:project) { create(:empty_project, :public) }
|
|
|
|
let(:non_member) { create(:user) }
|
2016-10-12 02:16:29 -04:00
|
|
|
let(:member) { create(:user) }
|
|
|
|
let(:guest) { create(:user) }
|
2016-03-24 13:20:47 -04:00
|
|
|
let(:author) { create(:author) }
|
|
|
|
let(:assignee) { create(:user) }
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
let(:issue) { create(:issue, project: project, author: author, assignee: assignee) }
|
|
|
|
let(:confidential_issue) { create(:issue, :confidential, project: project, author: author, assignee: assignee) }
|
|
|
|
let(:note_on_issue) { create(:note_on_issue, noteable: issue, project: project) }
|
|
|
|
let(:note_on_confidential_issue) { create(:note_on_issue, noteable: confidential_issue, project: project) }
|
|
|
|
let(:event) { Event.new(project: project, target: target, author_id: author.id) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.team << [member, :developer]
|
2016-06-06 15:13:31 -04:00
|
|
|
project.team << [guest, :guest]
|
2016-03-24 13:20:47 -04:00
|
|
|
end
|
2016-03-17 17:03:10 -04:00
|
|
|
|
2016-03-24 13:20:47 -04:00
|
|
|
context 'issue event' do
|
2016-03-17 17:03:10 -04:00
|
|
|
context 'for non confidential issues' do
|
2016-03-24 13:20:47 -04:00
|
|
|
let(:target) { issue }
|
2016-03-17 17:03:10 -04:00
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq true
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq true
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-03-17 17:03:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for confidential issues' do
|
2016-03-24 13:20:47 -04:00
|
|
|
let(:target) { confidential_issue }
|
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq false
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq false
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-03-24 13:20:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-04 10:29:28 -04:00
|
|
|
context 'issue note event' do
|
2016-03-24 13:20:47 -04:00
|
|
|
context 'on non confidential issues' do
|
|
|
|
let(:target) { note_on_issue }
|
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq true
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq true
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-03-24 13:20:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'on confidential issues' do
|
|
|
|
let(:target) { note_on_confidential_issue }
|
2016-03-17 17:03:10 -04:00
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq false
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq false
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-03-17 17:03:10 -04:00
|
|
|
end
|
|
|
|
end
|
2016-07-04 10:29:28 -04:00
|
|
|
|
2016-07-06 04:08:42 -04:00
|
|
|
context 'merge request diff note event' do
|
2016-07-04 10:29:28 -04:00
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
let(:merge_request) { create(:merge_request, source_project: project, author: author, assignee: assignee) }
|
2016-07-07 15:57:38 -04:00
|
|
|
let(:note_on_merge_request) { create(:legacy_diff_note_on_merge_request, noteable: merge_request, project: project) }
|
2016-07-04 10:29:28 -04:00
|
|
|
let(:target) { note_on_merge_request }
|
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq true
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq true
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-10-04 08:52:08 -04:00
|
|
|
|
|
|
|
context 'private project' do
|
|
|
|
let(:project) { create(:project, :private) }
|
|
|
|
|
2016-10-12 02:16:29 -04:00
|
|
|
it do
|
|
|
|
expect(event.visible_to_user?(non_member)).to eq false
|
|
|
|
expect(event.visible_to_user?(author)).to eq true
|
|
|
|
expect(event.visible_to_user?(assignee)).to eq true
|
|
|
|
expect(event.visible_to_user?(member)).to eq true
|
|
|
|
expect(event.visible_to_user?(guest)).to eq false
|
|
|
|
expect(event.visible_to_user?(admin)).to eq true
|
|
|
|
end
|
2016-10-04 08:52:08 -04:00
|
|
|
end
|
2016-07-04 10:29:28 -04:00
|
|
|
end
|
2016-03-17 17:03:10 -04:00
|
|
|
end
|
|
|
|
|
2015-11-18 06:25:37 -05:00
|
|
|
describe '.limit_recent' do
|
|
|
|
let!(:event1) { create(:closed_issue_event) }
|
|
|
|
let!(:event2) { create(:closed_issue_event) }
|
|
|
|
|
|
|
|
describe 'without an explicit limit' do
|
|
|
|
subject { Event.limit_recent }
|
|
|
|
|
|
|
|
it { is_expected.to eq([event2, event1]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with an explicit limit' do
|
|
|
|
subject { Event.limit_recent(1) }
|
|
|
|
|
|
|
|
it { is_expected.to eq([event2]) }
|
|
|
|
end
|
|
|
|
end
|
2016-04-21 03:42:08 -04:00
|
|
|
|
2016-09-16 10:05:12 -04:00
|
|
|
describe '#reset_project_activity' do
|
|
|
|
let(:project) { create(:empty_project) }
|
|
|
|
|
|
|
|
context 'when a project was updated less than 1 hour ago' do
|
|
|
|
it 'does not update the project' do
|
|
|
|
project.update(last_activity_at: Time.now)
|
|
|
|
|
|
|
|
expect(project).not_to receive(:update_column).
|
|
|
|
with(:last_activity_at, a_kind_of(Time))
|
|
|
|
|
|
|
|
create_event(project, project.owner)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a project was updated more than 1 hour ago' do
|
|
|
|
it 'updates the project' do
|
|
|
|
project.update(last_activity_at: 1.year.ago)
|
|
|
|
|
2016-10-04 11:22:58 -04:00
|
|
|
create_event(project, project.owner)
|
2016-09-16 10:05:12 -04:00
|
|
|
|
2016-10-04 11:22:58 -04:00
|
|
|
project.reload
|
2016-09-16 10:05:12 -04:00
|
|
|
|
2016-10-04 11:22:58 -04:00
|
|
|
project.last_activity_at <= 1.minute.ago
|
2016-09-16 10:05:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-21 03:42:08 -04:00
|
|
|
def create_event(project, user, attrs = {})
|
|
|
|
data = {
|
|
|
|
before: Gitlab::Git::BLANK_SHA,
|
|
|
|
after: "0220c11b9a3e6c69dc8fd35321254ca9a7b98f7e",
|
|
|
|
ref: "refs/heads/master",
|
|
|
|
user_id: user.id,
|
|
|
|
user_name: user.name,
|
|
|
|
repository: {
|
|
|
|
name: project.name,
|
|
|
|
url: "localhost/rubinius",
|
|
|
|
description: "",
|
|
|
|
homepage: "localhost/rubinius",
|
|
|
|
private: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Event.create({
|
|
|
|
project: project,
|
|
|
|
action: Event::PUSHED,
|
|
|
|
data: data,
|
|
|
|
author_id: user.id
|
2016-10-12 02:16:29 -04:00
|
|
|
}.merge!(attrs))
|
2016-04-21 03:42:08 -04:00
|
|
|
end
|
2012-02-28 08:09:23 -05:00
|
|
|
end
|