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

33 lines
779 B
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
require 'spec_helper'
2015-12-09 09:50:51 +00:00
describe Ci::Variable, models: true do
2015-09-10 13:52:52 +00:00
subject { Ci::Variable.new }
2015-08-26 01:42:46 +00:00
let(:secret_value) { 'secret' }
before :each do
subject.value = secret_value
end
2016-07-11 22:12:31 +00:00
describe '#value' do
2015-08-26 01:42:46 +00:00
it 'stores the encrypted value' do
2015-09-10 13:52:52 +00:00
expect(subject.encrypted_value).not_to be_nil
2015-08-26 01:42:46 +00:00
end
it 'stores an iv for value' do
2015-09-10 13:52:52 +00:00
expect(subject.encrypted_value_iv).not_to be_nil
2015-08-26 01:42:46 +00:00
end
it 'stores a salt for value' do
2015-09-10 13:52:52 +00:00
expect(subject.encrypted_value_salt).not_to be_nil
2015-08-26 01:42:46 +00:00
end
it 'fails to decrypt if iv is incorrect' do
subject.encrypted_value_iv = SecureRandom.hex
2015-08-26 01:42:46 +00:00
subject.instance_variable_set(:@value, nil)
expect { subject.value }.
to raise_error(OpenSSL::Cipher::CipherError, 'bad decrypt')
2015-08-26 01:42:46 +00:00
end
end
end