key_spec.rb
1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
require 'spec_helper'
describe Key do
  describe "Associations" do
    it { should belong_to(:user) or belong_to(:project)  }
  end
  describe "Validation" do
    it { should validate_presence_of(:title) }
    it { should validate_presence_of(:key) }
  end
  describe "Methods" do
    it { should respond_to :projects }
  end
  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
end
# == Schema Information
#
# Table name: keys
#
#  id         :integer         not null, primary key
#  user_id    :integer
#  created_at :datetime
#  updated_at :datetime
#  key        :text
#  title      :string(255)
#  identifier :string(255)
#  project_id :integer
#