2012-10-09 11:14:17 +03:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
2012-11-19 21:24:05 +03:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 11:14:17 +03:00
|
|
|
# user_id :integer
|
2012-11-19 21:24:05 +03:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-10-09 11:14:17 +03:00
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# identifier :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
#
|
|
|
|
|
2011-10-09 00:36:38 +03:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Key do
|
|
|
|
describe "Associations" do
|
2012-08-29 11:36:02 -04:00
|
|
|
it { should belong_to(:user) }
|
|
|
|
it { should belong_to(:project) }
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2012-09-26 11:17:17 -07:00
|
|
|
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-09 00:36:38 +03:00
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should validate_presence_of(:key) }
|
2012-08-29 11:36:02 -04:00
|
|
|
it { should ensure_length_of(:title).is_within(0..255) }
|
|
|
|
it { should ensure_length_of(:key).is_within(0..5000) }
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2011-10-26 18:46:25 +05:00
|
|
|
describe "Methods" do
|
2011-10-09 00:36:38 +03:00
|
|
|
it { should respond_to :projects }
|
|
|
|
end
|
|
|
|
|
2012-03-01 16:00:14 +01:00
|
|
|
context "validation of uniqueness" do
|
|
|
|
|
|
|
|
context "as a deploy key" do
|
2012-08-28 07:01:27 -04:00
|
|
|
let!(:deploy_key) { create(:deploy_key) }
|
2012-03-01 16:00:14 +01:00
|
|
|
|
|
|
|
it "does not accept the same key twice for a project" do
|
2012-08-28 07:01:27 -04:00
|
|
|
key = build(:key, project: deploy_key.project)
|
2012-03-01 16:00:14 +01:00
|
|
|
key.should_not be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does accept the same key for another project" do
|
2012-08-28 07:01:27 -04:00
|
|
|
key = build(:key, project_id: 0)
|
2012-03-01 16:00:14 +01:00
|
|
|
key.should be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "as a personal key" do
|
2012-11-06 14:31:55 +11:00
|
|
|
let(:user) { create(:user) }
|
2012-03-01 16:00:14 +01:00
|
|
|
|
|
|
|
it "accepts the key once" do
|
2012-08-28 07:01:27 -04:00
|
|
|
build(:key, user: user).should be_valid
|
2012-03-01 16:00:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not accepts the key twice" do
|
2012-08-28 07:01:27 -04:00
|
|
|
create(:key, user: user)
|
|
|
|
build(:key, user: user).should_not be_valid
|
2012-03-01 16:00:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-09-21 18:22:43 +02:00
|
|
|
|
|
|
|
context "validate it is a fingerprintable key" do
|
2012-11-06 14:31:55 +11:00
|
|
|
let(:user) { create(:user) }
|
2012-09-21 18:22:43 +02:00
|
|
|
|
|
|
|
it "accepts the fingerprintable key" do
|
|
|
|
build(:key, user: user).should be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it "rejects the unfingerprintable key" do
|
|
|
|
build(:key_with_a_space_in_the_middle).should_not be_valid
|
|
|
|
end
|
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|