2016-10-12 08:01:34 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe IssueCollection do
|
|
|
|
let(:user) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2016-10-12 08:01:34 -04:00
|
|
|
let(:issue1) { create(:issue, project: project) }
|
|
|
|
let(:issue2) { create(:issue, project: project) }
|
|
|
|
let(:collection) { described_class.new([issue1, issue2]) }
|
|
|
|
|
|
|
|
describe '#collection' do
|
|
|
|
it 'returns the issues in the same order as the input Array' do
|
|
|
|
expect(collection.collection).to eq([issue1, issue2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#updatable_by_user' do
|
|
|
|
context 'using an admin user' do
|
|
|
|
it 'returns all issues' do
|
|
|
|
user = create(:admin)
|
|
|
|
|
|
|
|
expect(collection.updatable_by_user(user)).to eq([issue1, issue2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using a user that has no access to the project' do
|
|
|
|
it 'returns no issues when the user is not an assignee or author' do
|
|
|
|
expect(collection.updatable_by_user(user)).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the issues the user is assigned to' do
|
2017-05-04 08:11:15 -04:00
|
|
|
issue1.assignees << user
|
2016-10-12 08:01:34 -04:00
|
|
|
|
|
|
|
expect(collection.updatable_by_user(user)).to eq([issue1])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the issues for which the user is the author' do
|
|
|
|
issue1.author = user
|
|
|
|
|
|
|
|
expect(collection.updatable_by_user(user)).to eq([issue1])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using a user that has reporter access to the project' do
|
|
|
|
it 'returns the issues of the project' do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_reporter(user)
|
2016-10-12 08:01:34 -04:00
|
|
|
|
|
|
|
expect(collection.updatable_by_user(user)).to eq([issue1, issue2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using a user that is the owner of a project' do
|
|
|
|
it 'returns the issues of the project' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(collection.updatable_by_user(project.namespace.owner))
|
|
|
|
.to eq([issue1, issue2])
|
2016-10-12 08:01:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-10-07 09:20:57 -04:00
|
|
|
|
|
|
|
describe '#visible_to' do
|
|
|
|
it 'is an alias for updatable_by_user' do
|
|
|
|
updatable_by_user = described_class.instance_method(:updatable_by_user)
|
|
|
|
visible_to = described_class.instance_method(:visible_to)
|
|
|
|
|
|
|
|
expect(visible_to).to eq(updatable_by_user)
|
|
|
|
end
|
|
|
|
end
|
2016-10-12 08:01:34 -04:00
|
|
|
end
|