2016-09-20 16:07:56 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe ProjectLabel do
|
2016-09-20 16:07:56 -04:00
|
|
|
describe 'relationships' do
|
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
2016-09-21 16:47:58 -04:00
|
|
|
|
|
|
|
context 'validates if title must not exist at group level' do
|
|
|
|
let(:group) { create(:group, name: 'gitlab-org') }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, group: group) }
|
2016-09-21 16:47:58 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
create(:group_label, group: group, title: 'Bug')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns error if title already exists at group level' do
|
|
|
|
label = described_class.new(project: project, title: 'Bug')
|
|
|
|
|
|
|
|
label.valid?
|
|
|
|
|
|
|
|
expect(label.errors[:title]).to include 'already exists at group level for gitlab-org. Please choose another one.'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not returns error if title does not exist at group level' do
|
|
|
|
label = described_class.new(project: project, title: 'Security')
|
|
|
|
|
|
|
|
label.valid?
|
|
|
|
|
|
|
|
expect(label.errors[:title]).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not returns error if project does not belong to group' do
|
2017-08-02 15:55:11 -04:00
|
|
|
another_project = create(:project)
|
2016-09-21 16:47:58 -04:00
|
|
|
label = described_class.new(project: another_project, title: 'Bug')
|
|
|
|
|
|
|
|
label.valid?
|
|
|
|
|
|
|
|
expect(label.errors[:title]).to be_empty
|
|
|
|
end
|
2016-10-13 16:45:39 -04:00
|
|
|
|
|
|
|
it 'does not returns error when title does not change' do
|
|
|
|
project_label = create(:label, project: project, name: 'Security')
|
|
|
|
create(:group_label, group: group, name: 'Security')
|
|
|
|
project_label.description = 'Security related stuff.'
|
|
|
|
|
|
|
|
project_label.valid?
|
|
|
|
|
2016-10-14 17:51:34 -04:00
|
|
|
expect(project_label.errors[:title]).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when attempting to add more than one priority to the project label' do
|
|
|
|
it 'returns error' do
|
|
|
|
subject.priorities.build
|
|
|
|
subject.priorities.build
|
|
|
|
|
|
|
|
subject.valid?
|
|
|
|
|
|
|
|
expect(subject.errors[:priorities]).to include 'Number of permitted priorities exceeded'
|
2016-10-13 16:45:39 -04:00
|
|
|
end
|
2016-09-21 16:47:58 -04:00
|
|
|
end
|
2016-09-20 16:07:56 -04:00
|
|
|
end
|
2016-09-28 23:21:47 -04:00
|
|
|
|
2016-10-17 15:48:46 -04:00
|
|
|
describe '#subject' do
|
|
|
|
it 'aliases project to subject' do
|
2017-08-02 15:55:11 -04:00
|
|
|
subject = described_class.new(project: build(:project))
|
2016-10-17 15:48:46 -04:00
|
|
|
|
|
|
|
expect(subject.subject).to be(subject.project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-28 23:21:47 -04:00
|
|
|
describe '#to_reference' do
|
|
|
|
let(:label) { create(:label) }
|
|
|
|
|
|
|
|
context 'using id' do
|
|
|
|
it 'returns a String reference to the object' do
|
|
|
|
expect(label.to_reference).to eq "~#{label.id}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using name' do
|
|
|
|
it 'returns a String reference to the object' do
|
|
|
|
expect(label.to_reference(format: :name)).to eq %(~"#{label.name}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses id when name contains double quote' do
|
|
|
|
label = create(:label, name: %q{"irony"})
|
|
|
|
expect(label.to_reference(format: :name)).to eq "~#{label.id}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using invalid format' do
|
|
|
|
it 'raises error' do
|
|
|
|
expect { label.to_reference(format: :invalid) }
|
|
|
|
.to raise_error StandardError, /Unknown format/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'cross project reference' do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2016-09-28 23:21:47 -04:00
|
|
|
|
|
|
|
context 'using name' do
|
|
|
|
it 'returns cross reference with label name' do
|
|
|
|
expect(label.to_reference(project, format: :name))
|
2017-07-20 05:34:09 -04:00
|
|
|
.to eq %Q(#{label.project.full_path}~"#{label.name}")
|
2016-09-28 23:21:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using id' do
|
|
|
|
it 'returns cross reference with label id' do
|
|
|
|
expect(label.to_reference(project, format: :id))
|
2017-07-20 05:34:09 -04:00
|
|
|
.to eq %Q(#{label.project.full_path}~#{label.id})
|
2016-09-28 23:21:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-09-20 16:07:56 -04:00
|
|
|
end
|