2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Ci::Variable do
|
2017-05-08 15:56:37 -04:00
|
|
|
subject { build(:ci_variable) }
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2019-05-06 09:11:42 -04:00
|
|
|
it_behaves_like "CI variable"
|
|
|
|
|
2017-06-21 13:30:12 -04:00
|
|
|
describe 'validations' do
|
2017-05-03 14:51:55 -04:00
|
|
|
it { is_expected.to include_module(Presentable) }
|
2020-03-18 08:09:13 -04:00
|
|
|
it { is_expected.to include_module(Ci::Maskable) }
|
2019-08-08 14:51:52 -04:00
|
|
|
it { is_expected.to include_module(HasEnvironmentScope) }
|
2018-02-22 19:19:46 -05:00
|
|
|
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:project_id, :environment_scope).with_message(/\(\w+\) has already been taken/) }
|
2017-06-21 13:30:12 -04:00
|
|
|
end
|
2016-12-02 07:54:57 -05:00
|
|
|
|
2017-06-01 09:48:31 -04:00
|
|
|
describe '.unprotected' do
|
|
|
|
subject { described_class.unprotected }
|
|
|
|
|
|
|
|
context 'when variable is protected' do
|
|
|
|
before do
|
|
|
|
create(:ci_variable, :protected)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nothing' do
|
|
|
|
is_expected.to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when variable is not protected' do
|
|
|
|
let(:variable) { create(:ci_variable, protected: false) }
|
|
|
|
|
|
|
|
it 'returns the variable' do
|
|
|
|
is_expected.to contain_exactly(variable)
|
|
|
|
end
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|