f1479b56b7
In 8278b763d9
the default behaviour of annotation
has changes, which was causing a lot of noise in diffs. We decided in #17382
that it is better to get rid of the whole annotate gem, and instead let people
look at schema.rb for the columns in a table.
Fixes: #17382
87 lines
2.4 KiB
Ruby
87 lines
2.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Key, models: true do
|
|
describe "Associations" do
|
|
it { is_expected.to belong_to(:user) }
|
|
end
|
|
|
|
describe "Mass assignment" do
|
|
end
|
|
|
|
describe "Validation" do
|
|
it { is_expected.to validate_presence_of(:title) }
|
|
it { is_expected.to validate_presence_of(:key) }
|
|
it { is_expected.to validate_length_of(:title).is_within(0..255) }
|
|
it { is_expected.to validate_length_of(:key).is_within(0..5000) }
|
|
end
|
|
|
|
describe "Methods" do
|
|
it { is_expected.to respond_to :projects }
|
|
it { is_expected.to respond_to :publishable_key }
|
|
|
|
describe "#publishable_keys" do
|
|
it 'strips all personal information' do
|
|
expect(build(:key).publishable_key).not_to match(/dummy@gitlab/)
|
|
end
|
|
end
|
|
end
|
|
|
|
context "validation of uniqueness" do
|
|
let(:user) { create(:user) }
|
|
|
|
it "accepts the key once" do
|
|
expect(build(:key, user: user)).to be_valid
|
|
end
|
|
|
|
it "does not accept the exact same key twice" do
|
|
create(:key, user: user)
|
|
expect(build(:key, user: user)).not_to be_valid
|
|
end
|
|
|
|
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
|
|
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[101..-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
|
|
|
|
it 'rejects the multiple line key' do
|
|
key = build(:key)
|
|
key.key.tr!(' ', "\n")
|
|
expect(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
|
|
end
|