gitlabhq/spec/models/key_spec.rb

85 lines
2.1 KiB
Ruby
Raw Normal View History

2012-10-09 10:14:17 +02:00
# == Schema Information
#
# Table name: keys
#
2012-11-19 19:24:05 +01:00
# id :integer not null, primary key
2012-10-09 10:14:17 +02:00
# user_id :integer
2012-11-19 19:24:05 +01:00
# created_at :datetime not null
# updated_at :datetime not null
2012-10-09 10:14:17 +02:00
# key :text
# title :string(255)
# identifier :string(255)
# project_id :integer
#
2011-10-08 23:36:38 +02:00
require 'spec_helper'
describe Key do
describe "Associations" do
it { should belong_to(:user) }
it { should belong_to(:project) }
2011-10-08 23:36:38 +02:00
end
describe "Mass assignment" do
it { should_not allow_mass_assignment_of(:project_id) }
it { should_not allow_mass_assignment_of(:user_id) }
end
2011-10-08 23:36:38 +02: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 23:36:38 +02:00
end
describe "Methods" do
2011-10-08 23:36:38 +02:00
it { should respond_to :projects }
end
context "validation of uniqueness" do
context "as a deploy key" do
let!(:deploy_key) { create(:deploy_key) }
it "does not accept the same key twice for a project" do
key = build(:key, project: deploy_key.project)
key.should_not be_valid
end
2013-02-07 09:25:47 +01:00
it "does not accept the same key for another project" do
key = build(:key, project_id: 0)
2013-02-07 09:25:47 +01:00
key.should_not be_valid
end
end
context "as a personal key" do
let(:user) { create(:user) }
it "accepts the key once" do
build(:key, user: user).should be_valid
end
it "does not accepts the key twice" do
create(:key, user: user)
build(:key, user: user).should_not be_valid
end
end
end
context "validate it is a fingerprintable key" do
let(:user) { create(:user) }
it "accepts the fingerprintable key" do
build(:key, user: user).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
2011-10-08 23:36:38 +02:00
end