debian-mirror-gitlab/spec/models/ci/variable_spec.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe Ci::Variable, models: true do
2015-09-25 12:07:36 +05:30
subject { Ci::Variable.new }
let(:secret_value) { 'secret' }
2017-08-17 22:00:37 +05:30
it { is_expected.to validate_presence_of(:key) }
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) }
2015-09-25 12:07:36 +05:30
before :each do
subject.value = secret_value
end
2016-08-24 12:49:21 +05:30
describe '#value' do
2015-09-25 12:07:36 +05:30
it 'stores the encrypted value' do
expect(subject.encrypted_value).not_to be_nil
end
it 'stores an iv for value' do
expect(subject.encrypted_value_iv).not_to be_nil
end
it 'stores a salt for value' do
expect(subject.encrypted_value_salt).not_to be_nil
end
it 'fails to decrypt if iv is incorrect' do
subject.encrypted_value_iv = SecureRandom.hex
2015-09-25 12:07:36 +05:30
subject.instance_variable_set(:@value, nil)
expect { subject.value }.
to raise_error(OpenSSL::Cipher::CipherError, 'bad decrypt')
end
end
end