gitlabhq/spec/models/key_spec.rb

47 lines
1.1 KiB
Ruby
Raw Normal View History

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
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
it "does accept the same key for another project" do
key = build(:key, project_id: 0)
key.should be_valid
end
end
context "as a personal key" do
let(:user) { Factory.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
2011-10-08 23:36:38 +02:00
end