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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
#!/usr/bin/env rspec
require 'spec_helper'
require 'puppet/network/http/handler'
require 'puppet/network/rest_authorization'
class HttpHandled
include Puppet::Network::HTTP::Handler
end
describe Puppet::Network::HTTP::Handler do
before do
@handler = HttpHandled.new
end
it "should include the v1 REST API" do
Puppet::Network::HTTP::Handler.ancestors.should be_include(Puppet::Network::HTTP::API::V1)
end
it "should include the Rest Authorization system" do
Puppet::Network::HTTP::Handler.ancestors.should be_include(Puppet::Network::RestAuthorization)
end
it "should have a method for initializing" do
@handler.should respond_to(:initialize_for_puppet)
end
describe "when initializing" do
it "should fail when no server type has been provided" do
lambda { @handler.initialize_for_puppet }.should raise_error(ArgumentError)
end
it "should set server type" do
@handler.initialize_for_puppet("foo")
@handler.server.should == "foo"
end
end
it "should be able to process requests" do
@handler.should respond_to(:process)
end
describe "when processing a request" do
before do
@request = stub('http request')
@request.stubs(:[]).returns "foo"
@response = stub('http response')
@model_class = stub('indirected model class')
@indirection = stub('indirection')
@model_class.stubs(:indirection).returns(@indirection)
@result = stub 'result', :render => "mytext"
@handler.stubs(:check_authorization)
stub_server_interface
end
# Stub out the interface we require our including classes to
# implement.
def stub_server_interface
@handler.stubs(:accept_header ).returns "format_one,format_two"
@handler.stubs(:content_type_header).returns "text/yaml"
@handler.stubs(:set_content_type ).returns "my_result"
@handler.stubs(:set_response ).returns "my_result"
@handler.stubs(:path ).returns "/my_handler/my_result"
@handler.stubs(:http_method ).returns("GET")
@handler.stubs(:params ).returns({})
@handler.stubs(:content_type ).returns("text/plain")
end
it "should create an indirection request from the path, parameters, and http method" do
@handler.expects(:path).with(@request).returns "mypath"
@handler.expects(:http_method).with(@request).returns "mymethod"
@handler.expects(:params).with(@request).returns "myparams"
@handler.expects(:uri2indirection).with("mymethod", "mypath", "myparams").returns stub("request", :method => :find)
@handler.stubs(:do_find)
@handler.process(@request, @response)
end
it "should call the 'do' method and delegate authorization to the RestAuthorization layer" do
@handler.expects(:uri2indirection).returns(["facts", :mymethod, "key", {:node => "name"}])
@handler.expects(:do_mymethod).with("facts", "key", {:node => "name"}, @request, @response)
@handler.expects(:check_authorization).with("facts", :mymethod, "key", {:node => "name"})
@handler.process(@request, @response)
end
it "should return 403 if the request is not authorized" do
@handler.expects(:uri2indirection).returns(["facts", :mymethod, "key", {:node => "name"}])
@handler.expects(:do_mymethod).never
@handler.expects(:check_authorization).with("facts", :mymethod, "key", {:node => "name"}).raises(Puppet::Network::AuthorizationError.new("forbidden"))
@handler.expects(:set_response).with { |response, body, status| status == 403 }
@handler.process(@request, @response)
end
it "should serialize a controller exception when an exception is thrown while finding the model instance" do
@handler.expects(:uri2indirection).returns(["facts", :find, "key", {:node => "name"}])
@handler.expects(:do_find).raises(ArgumentError, "The exception")
@handler.expects(:set_response).with { |response, body, status| body == "The exception" and status == 400 }
@handler.process(@request, @response)
end
it "should set the format to text/plain when serializing an exception" do
@handler.expects(:set_content_type).with(@response, "text/plain")
@handler.do_exception(@response, "A test", 404)
end
it "should raise an error if the request is formatted in an unknown format" do
@handler.stubs(:content_type_header).returns "unknown format"
lambda { @handler.request_format(@request) }.should raise_error
end
it "should still find the correct format if content type contains charset information" do
@handler.stubs(:content_type_header).returns "text/plain; charset=UTF-8"
@handler.request_format(@request).should == "s"
end
describe "when finding a model instance" do
before do
@indirection.stubs(:find).returns @result
Puppet::Indirector::Indirection.expects(:instance).with(:my_handler).returns( stub "indirection", :model => @model_class )
@format = stub 'format', :suitable? => true, :mime => "text/format", :name => "format"
Puppet::Network::FormatHandler.stubs(:format).returns @format
@oneformat = stub 'one', :suitable? => true, :mime => "text/one", :name => "one"
Puppet::Network::FormatHandler.stubs(:format).with("one").returns @oneformat
end
it "should use the indirection request to find the model class" do
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should use the escaped request key" do
@indirection.expects(:find).with do |key, args|
key == "my_result"
end.returns @result
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should use a common method for determining the request parameters" do
@indirection.expects(:find).with do |key, args|
args[:foo] == :baz and args[:bar] == :xyzzy
end.returns @result
@handler.do_find("my_handler", "my_result", {:foo => :baz, :bar => :xyzzy}, @request, @response)
end
it "should set the content type to the first format specified in the accept header" do
@handler.expects(:accept_header).with(@request).returns "one,two"
@handler.expects(:set_content_type).with(@response, @oneformat)
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should fail if no accept header is provided" do
@handler.expects(:accept_header).with(@request).returns nil
lambda { @handler.do_find("my_handler", "my_result", {}, @request, @response) }.should raise_error(ArgumentError)
end
it "should fail if the accept header does not contain a valid format" do
@handler.expects(:accept_header).with(@request).returns ""
lambda { @handler.do_find("my_handler", "my_result", {}, @request, @response) }.should raise_error(RuntimeError)
end
it "should not use an unsuitable format" do
@handler.expects(:accept_header).with(@request).returns "foo,bar"
foo = mock 'foo', :suitable? => false
bar = mock 'bar', :suitable? => true
Puppet::Network::FormatHandler.expects(:format).with("foo").returns foo
Puppet::Network::FormatHandler.expects(:format).with("bar").returns bar
@handler.expects(:set_content_type).with(@response, bar) # the suitable one
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should render the result using the first format specified in the accept header" do
@handler.expects(:accept_header).with(@request).returns "one,two"
@result.expects(:render).with(@oneformat)
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should pass the result through without rendering it if the result is a string" do
@indirection.stubs(:find).returns "foo"
@handler.expects(:set_response).with(@response, "foo")
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should use the default status when a model find call succeeds" do
@handler.expects(:set_response).with { |response, body, status| status.nil? }
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should return a serialized object when a model find call succeeds" do
@model_instance = stub('model instance')
@model_instance.expects(:render).returns "my_rendered_object"
@handler.expects(:set_response).with { |response, body, status| body == "my_rendered_object" }
@indirection.stubs(:find).returns(@model_instance)
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should return a 404 when no model instance can be found" do
@model_class.stubs(:name).returns "my name"
@handler.expects(:set_response).with { |response, body, status| status == 404 }
@indirection.stubs(:find).returns(nil)
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should write a log message when no model instance can be found" do
@model_class.stubs(:name).returns "my name"
@indirection.stubs(:find).returns(nil)
Puppet.expects(:info).with("Could not find my_handler for 'my_result'")
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
it "should serialize the result in with the appropriate format" do
@model_instance = stub('model instance')
@handler.expects(:format_to_use).returns(@oneformat)
@model_instance.expects(:render).with(@oneformat).returns "my_rendered_object"
@indirection.stubs(:find).returns(@model_instance)
@handler.do_find("my_handler", "my_result", {}, @request, @response)
end
end
describe "when performing head operation" do
before do
@handler.stubs(:model).with("my_handler").returns(stub 'model', :indirection => @model_class)
@handler.stubs(:http_method).with(@request).returns("HEAD")
@handler.stubs(:path).with(@request).returns("/production/my_handler/my_result")
@handler.stubs(:params).with(@request).returns({})
@model_class.stubs(:head).returns true
end
it "should use the escaped request key" do
@model_class.expects(:head).with do |key, args|
key == "my_result"
end.returns true
@handler.process(@request, @response)
end
it "should not generate a response when a model head call succeeds" do
@handler.expects(:set_response).never
@handler.process(@request, @response)
end
it "should return a 404 when the model head call returns false" do
@handler.expects(:set_response).with { |response, body, status| status == 404 }
@model_class.stubs(:head).returns(false)
@handler.process(@request, @response)
end
end
describe "when searching for model instances" do
before do
Puppet::Indirector::Indirection.expects(:instance).with(:my_handler).returns( stub "indirection", :model => @model_class )
@result1 = mock 'result1'
@result2 = mock 'results'
@result = [@result1, @result2]
@model_class.stubs(:render_multiple).returns "my rendered instances"
@indirection.stubs(:search).returns(@result)
@format = stub 'format', :suitable? => true, :mime => "text/format", :name => "format"
Puppet::Network::FormatHandler.stubs(:format).returns @format
@oneformat = stub 'one', :suitable? => true, :mime => "text/one", :name => "one"
Puppet::Network::FormatHandler.stubs(:format).with("one").returns @oneformat
end
it "should use the indirection request to find the model" do
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
it "should use a common method for determining the request parameters" do
@indirection.expects(:search).with do |key, args|
args[:foo] == :baz and args[:bar] == :xyzzy
end.returns @result
@handler.do_search("my_handler", "my_result", {:foo => :baz, :bar => :xyzzy}, @request, @response)
end
it "should use the default status when a model search call succeeds" do
@indirection.stubs(:search).returns(@result)
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
it "should set the content type to the first format returned by the accept header" do
@handler.expects(:accept_header).with(@request).returns "one,two"
@handler.expects(:set_content_type).with(@response, @oneformat)
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
it "should return a list of serialized objects when a model search call succeeds" do
@handler.expects(:accept_header).with(@request).returns "one,two"
@indirection.stubs(:search).returns(@result)
@model_class.expects(:render_multiple).with(@oneformat, @result).returns "my rendered instances"
@handler.expects(:set_response).with { |response, data| data == "my rendered instances" }
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
it "should return [] when searching returns an empty array" do
@handler.expects(:accept_header).with(@request).returns "one,two"
@indirection.stubs(:search).returns([])
@model_class.expects(:render_multiple).with(@oneformat, []).returns "[]"
@handler.expects(:set_response).with { |response, data| data == "[]" }
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
it "should return a 404 when searching returns nil" do
@model_class.stubs(:name).returns "my name"
@handler.expects(:set_response).with { |response, body, status| status == 404 }
@indirection.stubs(:search).returns(nil)
@handler.do_search("my_handler", "my_result", {}, @request, @response)
end
end
describe "when destroying a model instance" do
before do
Puppet::Indirector::Indirection.expects(:instance).with(:my_handler).returns( stub "indirection", :model => @model_class )
@result = stub 'result', :render => "the result"
@indirection.stubs(:destroy).returns @result
end
it "should use the indirection request to find the model" do
@handler.do_destroy("my_handler", "my_result", {}, @request, @response)
end
it "should use the escaped request key to destroy the instance in the model" do
@indirection.expects(:destroy).with do |key, args|
key == "foo bar"
end
@handler.do_destroy("my_handler", "foo bar", {}, @request, @response)
end
it "should use a common method for determining the request parameters" do
@indirection.expects(:destroy).with do |key, args|
args[:foo] == :baz and args[:bar] == :xyzzy
end
@handler.do_destroy("my_handler", "my_result", {:foo => :baz, :bar => :xyzzy}, @request, @response)
end
it "should use the default status code a model destroy call succeeds" do
@handler.expects(:set_response).with { |response, body, status| status.nil? }
@handler.do_destroy("my_handler", "my_result", {}, @request, @response)
end
it "should return a yaml-encoded result when a model destroy call succeeds" do
@result = stub 'result', :to_yaml => "the result"
@indirection.expects(:destroy).returns(@result)
@handler.expects(:set_response).with { |response, body, status| body == "the result" }
@handler.do_destroy("my_handler", "my_result", {}, @request, @response)
end
end
describe "when saving a model instance" do
before do
Puppet::Indirector::Indirection.stubs(:instance).with(:my_handler).returns( stub "indirection", :model => @model_class )
@handler.stubs(:body).returns('my stuff')
@handler.stubs(:content_type_header).returns("text/yaml")
@result = stub 'result', :render => "the result"
@model_instance = stub('indirected model instance')
@model_class.stubs(:convert_from).returns(@model_instance)
@indirection.stubs(:save)
@format = stub 'format', :suitable? => true, :name => "format", :mime => "text/format"
Puppet::Network::FormatHandler.stubs(:format).returns @format
@yamlformat = stub 'yaml', :suitable? => true, :name => "yaml", :mime => "text/yaml"
Puppet::Network::FormatHandler.stubs(:format).with("yaml").returns @yamlformat
end
it "should use the indirection request to find the model" do
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
it "should use the 'body' hook to retrieve the body of the request" do
@handler.expects(:body).returns "my body"
@model_class.expects(:convert_from).with { |format, body| body == "my body" }.returns @model_instance
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
it "should fail to save model if data is not specified" do
@handler.stubs(:body).returns('')
lambda { @handler.do_save("my_handler", "my_result", {}, @request, @response) }.should raise_error(ArgumentError)
end
it "should use a common method for determining the request parameters" do
@indirection.expects(:save).with(@model_instance, 'key').once
@handler.do_save("my_handler", "key", {}, @request, @response)
end
it "should use the default status when a model save call succeeds" do
@handler.expects(:set_response).with { |response, body, status| status.nil? }
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
it "should return the yaml-serialized result when a model save call succeeds" do
@indirection.stubs(:save).returns(@model_instance)
@model_instance.expects(:to_yaml).returns('foo')
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
it "should set the content to yaml" do
@handler.expects(:set_content_type).with(@response, @yamlformat)
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
it "should use the content-type header to know the body format" do
@handler.expects(:content_type_header).returns("text/format")
Puppet::Network::FormatHandler.stubs(:mime).with("text/format").returns @format
@model_class.expects(:convert_from).with { |format, body| format == "format" }.returns @model_instance
@handler.do_save("my_handler", "my_result", {}, @request, @response)
end
end
end
describe "when resolving node" do
it "should use a look-up from the ip address" do
Resolv.expects(:getname).with("1.2.3.4").returns("host.domain.com")
@handler.resolve_node(:ip => "1.2.3.4")
end
it "should return the look-up result" do
Resolv.stubs(:getname).with("1.2.3.4").returns("host.domain.com")
@handler.resolve_node(:ip => "1.2.3.4").should == "host.domain.com"
end
it "should return the ip address if resolving fails" do
Resolv.stubs(:getname).with("1.2.3.4").raises(RuntimeError, "no such host")
@handler.resolve_node(:ip => "1.2.3.4").should == "1.2.3.4"
end
end
end
|