2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Key do
|
|
|
|
describe "Associations" do
|
2011-12-31 18:37:51 +01:00
|
|
|
it { should belong_to(:user) or belong_to(:project) }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should validate_presence_of(:key) }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe "Methods" do
|
2011-10-08 23:36:38 +02: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
|
|
|
|
let(:project) { Factory.create(:project, path: 'alpha', code: 'alpha') }
|
|
|
|
let(:another_project) { Factory.create(:project, path: 'beta', code: 'beta') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
deploy_key = Factory.create(:key, project: project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not accept the same key twice for a project" do
|
|
|
|
key = Factory.new(:key, project: project)
|
|
|
|
key.should_not be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does accept the same key for another project" do
|
|
|
|
key = Factory.new(:key, project: another_project)
|
|
|
|
key.should be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "as a personal key" do
|
|
|
|
let(:user) { Factory.create(:user) }
|
|
|
|
|
|
|
|
it "accepts the key once" do
|
|
|
|
Factory.new(:key, user: user).should be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not accepts the key twice" do
|
|
|
|
Factory.create(:key, user: user)
|
|
|
|
Factory.new(:key, user: user).should_not be_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2012-01-21 13:54:32 +01:00
|
|
|
# user_id :integer
|
2011-10-08 23:36:38 +02:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# identifier :string(255)
|
2012-01-21 13:54:32 +01:00
|
|
|
# project_id :integer
|
2011-10-08 23:36:38 +02:00
|
|
|
#
|
|
|
|
|