2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe Key, models: true do
|
2011-10-08 17:36:38 -04:00
|
|
|
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) }
|
2015-05-18 16:40:10 -04:00
|
|
|
it { is_expected.to validate_length_of(:title).is_within(0..255) }
|
|
|
|
it { is_expected.to validate_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
|
2016-08-02 01:56:23 -04:00
|
|
|
let(:user) { create(:user) }
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to respond_to :projects }
|
2015-06-19 13:17:34 -04:00
|
|
|
it { is_expected.to respond_to :publishable_key }
|
|
|
|
|
|
|
|
describe "#publishable_keys" do
|
2016-08-02 01:56:23 -04:00
|
|
|
it 'replaces SSH key comment with simple identifier of username + hostname' do
|
2016-08-02 07:49:59 -04:00
|
|
|
expect(build(:key, user: user).publishable_key).to include("#{user.name} (localhost)")
|
2015-06-19 13:17:34 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2016-06-16 06:53:32 -04:00
|
|
|
context "validation of uniqueness (based on fingerprint 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
|
|
|
|
|
2015-04-09 17:16:01 -04:00
|
|
|
it 'rejects an unfingerprintable key that contains a space' do
|
|
|
|
key = build(:key)
|
|
|
|
|
|
|
|
# Not always the middle, but close enough
|
2015-07-11 14:18:56 -04:00
|
|
|
key.key = key.key[0..100] + ' ' + key.key[101..-1]
|
2015-04-09 17:16:01 -04:00
|
|
|
|
|
|
|
expect(key).not_to be_valid
|
2012-09-21 12:22:43 -04:00
|
|
|
end
|
2013-02-15 04:31:05 -05:00
|
|
|
|
2015-04-09 17:16:01 -04:00
|
|
|
it 'rejects the unfingerprintable key (not a key)' do
|
|
|
|
expect(build(:key, key: 'ssh-rsa an-invalid-key==')).not_to be_valid
|
2013-02-15 04:31:05 -05:00
|
|
|
end
|
2015-07-11 14:18:56 -04:00
|
|
|
|
|
|
|
it 'rejects the multiple line key' do
|
|
|
|
key = build(:key)
|
2015-12-14 21:53:52 -05:00
|
|
|
key.key.tr!(' ', "\n")
|
2015-07-11 14:18:56 -04:00
|
|
|
expect(key).not_to be_valid
|
|
|
|
end
|
2012-09-21 12:22:43 -04:00
|
|
|
end
|
2014-04-02 14:13:05 -04:00
|
|
|
|
|
|
|
context 'callbacks' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'adds new key to authorized_file' do
|
2014-04-02 14:13:05 -04:00
|
|
|
@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
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'removes key from authorized_file' do
|
2014-04-02 14:13:05 -04:00
|
|
|
@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
|