2012-10-09 04:14:17 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
2013-08-21 05:34:02 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-08-21 05:34:02 -04:00
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# type :string(255)
|
|
|
|
# fingerprint :string(255)
|
2012-10-09 04:14:17 -04:00
|
|
|
#
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Key do
|
|
|
|
describe "Associations" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to(:user) }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
describe "Mass assignment" do
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
describe "Validation" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to validate_presence_of(:title) }
|
|
|
|
it { is_expected.to validate_presence_of(:key) }
|
|
|
|
it { is_expected.to ensure_length_of(:title).is_within(0..255) }
|
|
|
|
it { is_expected.to ensure_length_of(:key).is_within(0..5000) }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
describe "Methods" do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to respond_to :projects }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-03-01 10:00:14 -05:00
|
|
|
context "validation of uniqueness" do
|
2013-05-06 08:09:26 -04:00
|
|
|
let(:user) { create(:user) }
|
2012-03-01 10:00:14 -05:00
|
|
|
|
2013-05-06 08:09:26 -04:00
|
|
|
it "accepts the key once" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(build(:key, user: user)).to be_valid
|
2012-03-01 10:00:14 -05:00
|
|
|
end
|
|
|
|
|
2013-07-17 09:16:34 -04:00
|
|
|
it "does not accept the exact same key twice" do
|
2013-05-06 08:09:26 -04:00
|
|
|
create(:key, user: user)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(build(:key, user: user)).not_to be_valid
|
2012-03-01 10:00:14 -05:00
|
|
|
end
|
2013-07-17 09:16:34 -04:00
|
|
|
|
|
|
|
it "does not accept a duplicate key with a different comment" do
|
|
|
|
create(:key, user: user)
|
|
|
|
duplicate = build(:key, user: user)
|
|
|
|
duplicate.key << ' extra comment'
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(duplicate).not_to be_valid
|
2013-07-17 09:16:34 -04:00
|
|
|
end
|
2012-03-01 10:00:14 -05:00
|
|
|
end
|
2012-09-21 12:22:43 -04:00
|
|
|
|
|
|
|
context "validate it is a fingerprintable key" do
|
|
|
|
it "accepts the fingerprintable key" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(build(:key)).to be_valid
|
2012-09-21 12:22:43 -04:00
|
|
|
end
|
|
|
|
|
2013-02-15 04:31:05 -05:00
|
|
|
it "rejects the unfingerprintable key (contains space in middle)" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(build(:key_with_a_space_in_the_middle)).not_to be_valid
|
2012-09-21 12:22:43 -04:00
|
|
|
end
|
2013-02-15 04:31:05 -05:00
|
|
|
|
|
|
|
it "rejects the unfingerprintable key (not a key)" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(build(:invalid_key)).not_to be_valid
|
2013-02-15 04:31:05 -05:00
|
|
|
end
|
2012-09-21 12:22:43 -04:00
|
|
|
end
|
2014-04-02 14:13:05 -04:00
|
|
|
|
|
|
|
context 'callbacks' do
|
|
|
|
it 'should add new key to authorized_file' do
|
|
|
|
@key = build(:personal_key, id: 7)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(GitlabShellWorker).to receive(:perform_async).with(:add_key, @key.shell_id, @key.key)
|
2014-04-02 14:13:05 -04:00
|
|
|
@key.save
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should remove key from authorized_file' do
|
|
|
|
@key = create(:personal_key)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(GitlabShellWorker).to receive(:perform_async).with(:remove_key, @key.shell_id, @key.key)
|
2014-04-02 14:13:05 -04:00
|
|
|
@key.destroy
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|