2017-03-20 17:05:53 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Gitlab::VisibilityLevel do
|
2017-03-20 17:05:53 -04:00
|
|
|
describe '.level_value' do
|
|
|
|
it 'converts "public" to integer value' do
|
|
|
|
expect(described_class.level_value('public')).to eq(Gitlab::VisibilityLevel::PUBLIC)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'converts string integer to integer value' do
|
|
|
|
expect(described_class.level_value('20')).to eq(20)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defaults to PRIVATE when string value is not valid' do
|
|
|
|
expect(described_class.level_value('invalid')).to eq(Gitlab::VisibilityLevel::PRIVATE)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defaults to PRIVATE when integer value is not valid' do
|
|
|
|
expect(described_class.level_value(100)).to eq(Gitlab::VisibilityLevel::PRIVATE)
|
|
|
|
end
|
|
|
|
end
|
2017-06-13 10:44:55 -04:00
|
|
|
|
|
|
|
describe '.levels_for_user' do
|
|
|
|
it 'returns all levels for an admin' do
|
2017-06-22 02:35:49 -04:00
|
|
|
user = build(:user, :admin)
|
2017-06-13 10:44:55 -04:00
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(described_class.levels_for_user(user))
|
|
|
|
.to eq([Gitlab::VisibilityLevel::PRIVATE,
|
|
|
|
Gitlab::VisibilityLevel::INTERNAL,
|
|
|
|
Gitlab::VisibilityLevel::PUBLIC])
|
2017-06-13 10:44:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns INTERNAL and PUBLIC for internal users' do
|
2017-06-22 02:35:49 -04:00
|
|
|
user = build(:user)
|
2017-06-13 10:44:55 -04:00
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(described_class.levels_for_user(user))
|
|
|
|
.to eq([Gitlab::VisibilityLevel::INTERNAL,
|
|
|
|
Gitlab::VisibilityLevel::PUBLIC])
|
2017-06-13 10:44:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns PUBLIC for external users' do
|
2017-06-22 02:35:49 -04:00
|
|
|
user = build(:user, :external)
|
2017-06-13 10:44:55 -04:00
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(described_class.levels_for_user(user))
|
|
|
|
.to eq([Gitlab::VisibilityLevel::PUBLIC])
|
2017-06-13 10:44:55 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns PUBLIC when no user is given' do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(described_class.levels_for_user)
|
|
|
|
.to eq([Gitlab::VisibilityLevel::PUBLIC])
|
2017-06-13 10:44:55 -04:00
|
|
|
end
|
|
|
|
end
|
2017-03-20 17:05:53 -04:00
|
|
|
end
|