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

84 lines
2.1 KiB
Ruby
Raw Normal View History

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
# 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
it { should belong_to(:user) }
2011-10-08 17:36:38 -04:00
end
describe "Mass assignment" do
end
2011-10-08 17:36:38 -04:00
describe "Validation" do
it { should validate_presence_of(:title) }
it { should validate_presence_of(:key) }
it { should ensure_length_of(:title).is_within(0..255) }
it { should ensure_length_of(:key).is_within(0..5000) }
2011-10-08 17:36:38 -04:00
end
describe "Methods" do
2011-10-08 17:36:38 -04:00
it { should respond_to :projects }
end
context "validation of uniqueness" do
2013-05-06 08:09:26 -04:00
let(:user) { create(:user) }
2013-05-06 08:09:26 -04:00
it "accepts the key once" do
build(:key, user: user).should be_valid
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)
build(:key, user: user).should_not be_valid
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'
duplicate.should_not be_valid
end
end
context "validate it is a fingerprintable key" do
it "accepts the fingerprintable key" do
2013-07-02 07:39:13 -04:00
build(:key).should be_valid
end
it "rejects the unfingerprintable key (contains space in middle)" do
build(:key_with_a_space_in_the_middle).should_not be_valid
end
it "rejects the unfingerprintable key (not a key)" do
build(:invalid_key).should_not be_valid
end
end
context 'callbacks' do
it 'should add new key to authorized_file' do
@key = build(:personal_key, id: 7)
GitlabShellWorker.should_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)
GitlabShellWorker.should_receive(:perform_async).with(:remove_key, @key.shell_id, @key.key)
@key.destroy
end
end
2011-10-08 17:36:38 -04:00
end