summaryrefslogtreecommitdiff
path: root/spec/unit/couchdb_spec.rb
blob: 621439df5170bf2b38aaa179eecfaac86cd0dfd0 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#
# Author:: Adam Jacob (<adam@hjksolutions.com>)
# Copyright:: Copyright (c) 2008 HJK Solutions, LLC
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#     http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require File.expand_path(File.join(File.dirname(__FILE__), "..", "spec_helper"))

describe Chef::CouchDB, "new" do
  it "should create a new Chef::REST object from the default url" do
    Chef::Config[:couchdb_url] = "http://monkey"
    Chef::REST.should_receive(:new).with("http://monkey").and_return(true)
    Chef::CouchDB.new
  end
  
  it "should create a new Chef::REST object from a provided url" do
    Chef::REST.should_receive(:new).with("http://monkeypants").and_return(true)
    Chef::CouchDB.new("http://monkeypants")
  end
end

describe Chef::CouchDB, "create_db" do
  before(:each) do
    @mock_rest = mock("Chef::REST", :null_object => true)
    @mock_rest.stub!(:get_rest).and_return([ "chef" ])
    @mock_rest.stub!(:put_rest).and_return(true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
  end
  
  def do_create_db
    couch = Chef::CouchDB.new
    couch.create_db
  end
  
  it "should get a list of current databases" do
    @mock_rest.should_receive(:get_rest).and_return(["chef"])
    do_create_db
  end
  
  it "should create the chef database if it does not exist" do
    @mock_rest.stub!(:get_rest).and_return([])
    @mock_rest.should_receive(:put_rest).with("chef", {}).and_return(true)
    do_create_db
  end
  
  it "should not create the chef database if it does exist" do
    @mock_rest.stub!(:get_rest).and_return(["chef"])
    @mock_rest.should_not_receive(:put_rest)
    do_create_db
  end
  
  it "should return 'chef'" do
    do_create_db.should eql("chef")
  end
end

describe Chef::CouchDB, "create_design_document" do
  before(:each) do
    @mock_rest = mock("Chef::REST", :null_object => true)
    @mock_design = {
      "version" => 1,
      "_rev" => 1
    }
    @mock_data = {
      "version" => 1,
      "language" => "javascript",
      "views" => {
        "all" => {
          "map" => <<-EOJS
          function(doc) { 
            if (doc.chef_type == "node") {
              emit(doc.name, doc);
            }
          }
          EOJS
        },
      }
    }
    @mock_rest.stub!(:get_rest).and_return(@mock_design)
    @mock_rest.stub!(:put_rest).and_return(true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
  end
  
  def do_create_design_document
    couchdb = Chef::CouchDB.new
    couchdb.create_design_document("bob", @mock_data)
  end
  
  it "should fetch the existing design document" do
    @mock_rest.should_receive(:get_rest).with("chef/_design%2Fbob")
    do_create_design_document
  end
  
  it "should populate the _rev in the new design if the versions dont match" do
    @mock_data["version"] = 2
    do_create_design_document
    @mock_data["_rev"].should eql(1)
  end
  
  it "should create the view if it requires updating" do
    @mock_data["version"] = 2
    @mock_rest.should_receive(:put_rest).with("chef/_design%2Fbob", @mock_data)
    do_create_design_document
  end
  
  it "should not create the view if it does not require updating" do
    @mock_data["version"] = 1
    @mock_rest.should_not_receive(:put_rest)
    do_create_design_document
  end
end

describe Chef::CouchDB, "store" do
  it "should put the object into couchdb" do
    @mock_rest = mock("Chef::REST", :null_object => true)
    @mock_rest.should_receive(:put_rest).with("chef/node_bob", {}).and_return(true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
    Chef::CouchDB.new.store("node", "bob", {})
  end
end

describe Chef::CouchDB, "load" do
  it "should load the object from couchdb" do
    @mock_rest = mock("Chef::REST", :null_object => true)
    @mock_rest.should_receive(:get_rest).with("chef/node_bob").and_return(true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
    Chef::CouchDB.new.load("node", "bob").should eql(true)
  end
end

describe Chef::CouchDB, "delete" do
  before(:each) do
    @mock_current = {
      "version" => 1,
      "_rev" => 1
    }
    @mock_rest = mock("Chef::REST", :null_object => true)
    @mock_rest.stub!(:get_rest).and_return(@mock_current)
    @mock_rest.stub!(:delete_rest).and_return(true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
  end
  
  def do_delete(rev=nil)
    Chef::REST.stub!(:new).and_return(@mock_rest)
    Chef::CouchDB.new.delete("node", "bob", rev)
  end
  
  it "should remove the object from couchdb with a specific revision" do
    @mock_rest.should_receive(:delete_rest).with("chef/node_bob?rev=1")
    do_delete(1)  
  end
  
  it "should remove the object from couchdb based on the couchdb_rev of the current obj" do
    mock_real = mock("Inflated Object")
    mock_real.stub!(:respond_to?).and_return(true)
    mock_real.stub!(:couchdb_rev).and_return(2)
    @mock_rest.should_receive(:get_rest).with("chef/node_bob").and_return(mock_real)
    @mock_rest.should_receive(:delete_rest).with("chef/node_bob?rev=2")
    do_delete
  end
  
  it "should remove the object from couchdb based on the current objects rev" do
    @mock_rest.should_receive(:delete_rest).with("chef/node_bob?rev=1")
    do_delete
  end
end

describe Chef::CouchDB, "list" do
  before(:each) do
    @mock_rest = mock("Chef::REST", :null_object => true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
  end
  
  it "should get the view for all objects if inflate is true" do
    @mock_rest.should_receive(:get_rest).with("chef/_view/node/all").and_return(true)
    Chef::CouchDB.new.list("node", true)
  end
  
  it "should get the view for just the object id's if inflate is false" do
    @mock_rest.should_receive(:get_rest).with("chef/_view/node/all_id").and_return(true)
    Chef::CouchDB.new.list("node", false)
  end
end

describe Chef::CouchDB, "has_key?" do
  before(:each) do
    @mock_rest = mock("Chef::REST", :null_object => true)
    Chef::REST.stub!(:new).and_return(@mock_rest)
  end
  
  it "should return true if the object exists" do
    @mock_rest.should_receive(:get_rest).and_return(true)
    Chef::CouchDB.new.has_key?("node", "bob").should eql(true)
  end
  
  it "should return false if the object does not exist" do
    @mock_rest.should_receive(:get_rest).and_raise(ArgumentError)
    Chef::CouchDB.new.has_key?("node", "bob").should eql(false)
  end
end