gitlab-org--gitlab-foss/spec/models/key_spec.rb

90 lines
2.4 KiB
Ruby
Raw Normal View History

2012-10-09 08:14:17 +00:00
# == Schema Information
#
# Table name: keys
#
2013-08-21 09:34:02 +00:00
# id :integer not null, primary key
# user_id :integer
# created_at :datetime
# updated_at :datetime
2013-08-21 09:34:02 +00:00
# key :text
# title :string(255)
# type :string(255)
# fingerprint :string(255)
2015-05-03 16:05:38 +00:00
# public :boolean default(FALSE), not null
2012-10-09 08:14:17 +00:00
#
2011-10-08 21:36:38 +00:00
require 'spec_helper'
describe Key do
describe "Associations" do
it { is_expected.to belong_to(:user) }
2011-10-08 21:36:38 +00:00
end
describe "Mass assignment" do
end
2011-10-08 21:36:38 +00:00
describe "Validation" do
it { is_expected.to validate_presence_of(:title) }
it { is_expected.to validate_presence_of(:key) }
2015-05-18 20:40:10 +00: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 21:36:38 +00:00
end
describe "Methods" do
it { is_expected.to respond_to :projects }
2011-10-08 21:36:38 +00:00
end
context "validation of uniqueness" do
2013-05-06 12:09:26 +00:00
let(:user) { create(:user) }
2013-05-06 12:09:26 +00:00
it "accepts the key once" do
expect(build(:key, user: user)).to be_valid
end
2013-07-17 13:16:34 +00:00
it "does not accept the exact same key twice" do
2013-05-06 12:09:26 +00:00
create(:key, user: user)
expect(build(:key, user: user)).not_to be_valid
end
2013-07-17 13:16:34 +00: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'
expect(duplicate).not_to be_valid
2013-07-17 13:16:34 +00:00
end
end
context "validate it is a fingerprintable key" do
it "accepts the fingerprintable key" do
expect(build(:key)).to be_valid
end
it 'rejects an unfingerprintable key that contains a space' do
key = build(:key)
# Not always the middle, but close enough
key.key = key.key[0..100] + ' ' + key.key[100..-1]
expect(key).not_to be_valid
end
it 'rejects the unfingerprintable key (not a key)' do
expect(build(:key, key: 'ssh-rsa an-invalid-key==')).not_to be_valid
end
end
context 'callbacks' do
it 'should add new key to authorized_file' do
@key = build(:personal_key, id: 7)
expect(GitlabShellWorker).to receive(:perform_async).with(:add_key, @key.shell_id, @key.key)
@key.save
end
it 'should remove key from authorized_file' do
@key = create(:personal_key)
expect(GitlabShellWorker).to receive(:perform_async).with(:remove_key, @key.shell_id, @key.key)
@key.destroy
end
end
2011-10-08 21:36:38 +00:00
end