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
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
context "project's last activity was less than 5 minutes ago" do
|
|
|
|
it 'does not update project.last_activity_at if it has been touched less than 5 minutes ago' do
|
|
|
|
create_event(project, project.owner)
|
|
|
|
project.update_column(:last_activity_at, 5.minutes.ago)
|
|
|
|
project_last_activity_at = project.last_activity_at
|
|
|
|
|
|
|
|
create_event(project, project.owner)
|
|
|
|
|
|
|
|
expect(project.last_activity_at).to eq(project_last_activity_at)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-14 18:00:59 -04:00
|
|
|
describe "Push event" do
|
|
|
|
before do
|
2012-11-05 22:31:55 -05:00
|
|
|
project = create(:project)
|
2012-03-28 15:53:45 -04:00
|
|
|
@user = project.owner
|
2016-04-21 03:42:08 -04:00
|
|
|
@event = create_event(project, @user)
|
2012-03-28 15:53:45 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(@event.push?).to be_truthy }
|
2016-03-24 13:24:22 -04:00
|
|
|
it { expect(@event.visible_to_user?).to be_truthy }
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(@event.tag?).to be_falsey }
|
|
|
|
it { expect(@event.branch_name).to eq("master") }
|
|
|
|
it { expect(@event.author).to eq(@user) }
|
2012-03-28 15:53:45 -04:00
|
|
|
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) }
|
|
|
|
let(:member) { create(:user) }
|
2016-06-06 15:13:31 -04:00
|
|
|
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-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(non_member)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(author)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(assignee)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(member)).to eq true }
|
2016-06-06 15:13:31 -04:00
|
|
|
it { expect(event.visible_to_user?(guest)).to eq true }
|
2016-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(admin)).to eq true }
|
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-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(non_member)).to eq false }
|
|
|
|
it { expect(event.visible_to_user?(author)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(assignee)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(member)).to eq true }
|
2016-06-06 15:13:31 -04:00
|
|
|
it { expect(event.visible_to_user?(guest)).to eq false }
|
2016-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(admin)).to eq true }
|
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-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(non_member)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(author)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(assignee)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(member)).to eq true }
|
2016-06-06 15:13:31 -04:00
|
|
|
it { expect(event.visible_to_user?(guest)).to eq true }
|
2016-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(admin)).to eq true }
|
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-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(non_member)).to eq false }
|
|
|
|
it { expect(event.visible_to_user?(author)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(assignee)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(member)).to eq true }
|
2016-06-06 15:13:31 -04:00
|
|
|
it { expect(event.visible_to_user?(guest)).to eq false }
|
2016-03-24 13:24:22 -04:00
|
|
|
it { expect(event.visible_to_user?(admin)).to eq true }
|
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 }
|
|
|
|
|
|
|
|
it { expect(event.visible_to_user?(non_member)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(author)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(assignee)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(member)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(guest)).to eq true }
|
|
|
|
it { expect(event.visible_to_user?(admin)).to eq true }
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
}.merge(attrs))
|
|
|
|
end
|
2012-02-28 08:09:23 -05:00
|
|
|
end
|