2015-08-25 21:42:46 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2015-11-13 13:22:46 -05:00
|
|
|
# Table name: ci_variables
|
2015-08-25 21:42:46 -04:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# project_id :integer not null
|
|
|
|
# key :string(255)
|
|
|
|
# value :text
|
|
|
|
# encrypted_value :text
|
|
|
|
# encrypted_value_salt :string(255)
|
|
|
|
# encrypted_value_iv :string(255)
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-09-09 08:17:16 -04:00
|
|
|
describe Ci::Variable do
|
2015-09-10 09:52:52 -04:00
|
|
|
subject { Ci::Variable.new }
|
2015-08-25 21:42:46 -04:00
|
|
|
|
|
|
|
let(:secret_value) { 'secret' }
|
|
|
|
|
|
|
|
before :each do
|
|
|
|
subject.value = secret_value
|
|
|
|
end
|
|
|
|
|
|
|
|
describe :value do
|
|
|
|
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 = nil
|
|
|
|
subject.instance_variable_set(:@value, nil)
|
2015-09-21 15:35:29 -04:00
|
|
|
expect { subject.value }.
|
|
|
|
to raise_error(OpenSSL::Cipher::CipherError, 'bad decrypt')
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|