gitlab-org--gitlab-foss/spec/models/ci/variable_spec.rb

69 lines
1.8 KiB
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
require 'spec_helper'
2015-12-09 04:50:51 -05:00
describe Ci::Variable, models: true do
subject { build(:ci_variable) }
2015-08-25 21:42:46 -04:00
let(:secret_value) { 'secret' }
it { is_expected.to validate_presence_of(:key) }
2017-03-17 19:06:11 -04:00
it { is_expected.to validate_uniqueness_of(:key).scoped_to(:project_id) }
it { is_expected.to validate_length_of(:key).is_at_most(255) }
it { is_expected.to allow_value('foo').for(:key) }
it { is_expected.not_to allow_value('foo bar').for(:key) }
it { is_expected.not_to allow_value('foo/bar').for(:key) }
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
2016-07-11 18:12:31 -04:00
describe '#value' do
before do
subject.value = secret_value
end
2015-08-25 21:42:46 -04:00
it 'stores the encrypted value' do
2015-09-10 09:52:52 -04:00
expect(subject.encrypted_value).not_to be_nil
2015-08-25 21:42:46 -04:00
end
it 'stores an iv for value' do
2015-09-10 09:52:52 -04:00
expect(subject.encrypted_value_iv).not_to be_nil
2015-08-25 21:42:46 -04:00
end
it 'stores a salt for value' do
2015-09-10 09:52:52 -04:00
expect(subject.encrypted_value_salt).not_to be_nil
2015-08-25 21:42:46 -04:00
end
it 'fails to decrypt if iv is incorrect' do
subject.encrypted_value_iv = SecureRandom.hex
2015-08-25 21:42:46 -04:00
subject.instance_variable_set(:@value, nil)
2017-06-21 09:48:12 -04:00
expect { subject.value }
.to raise_error(OpenSSL::Cipher::CipherError, 'bad decrypt')
2015-08-25 21:42:46 -04:00
end
end
describe '#to_runner_variable' do
it 'returns a hash for the runner' do
expect(subject.to_runner_variable)
.to eq(key: subject.key, value: subject.value, public: false)
end
end
2015-08-25 21:42:46 -04:00
end