2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Key do
|
|
|
|
describe "Associations" do
|
2012-08-29 17:36:02 +02:00
|
|
|
it { should belong_to(:user) }
|
|
|
|
it { should 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) }
|
2012-08-29 17:36:02 +02:00
|
|
|
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
|
|
|
|
|
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
|
2012-08-28 13:01:27 +02: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 13:01:27 +02: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 13:01:27 +02: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
|
|
|
|
let(:user) { Factory.create(:user) }
|
|
|
|
|
|
|
|
it "accepts the key once" do
|
2012-08-28 13:01:27 +02: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 13:01:27 +02:00
|
|
|
create(:key, user: user)
|
|
|
|
build(:key, user: user).should_not be_valid
|
2012-03-01 16:00:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|