summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/file/content_spec.rb
blob: a07fcba2f3266cd15d3e85a44714841d7989a189 (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
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
#!/usr/bin/env ruby

Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }

content = Puppet::Type.type(:file).attrclass(:content)
describe content do
    before do
        @resource = Puppet::Type.type(:file).new :path => "/foo/bar"
    end

    it "should be a subclass of Property" do
        content.superclass.must == Puppet::Property
    end

    describe "when determining the checksum type" do
        it "should use the type specified in the source checksum if a source is set" do
            @resource[:source] = "/foo"
            @resource.parameter(:source).expects(:checksum).returns "{md5lite}eh"

            @content = content.new(:resource => @resource)
            @content.checksum_type.should == :md5lite
        end

        it "should use the type specified by the checksum parameter if no source is set" do
            @resource[:checksum] = :md5lite

            @content = content.new(:resource => @resource)
            @content.checksum_type.should == :md5lite
        end
    end

    describe "when determining the actual content to write" do
        it "should use the set content if available" do
            @content = content.new(:resource => @resource)
            @content.should = "ehness"
            @content.actual_content.should == "ehness"
        end

        it "should not use the content from the source if the source is set" do
            source = mock 'source'

            @resource.expects(:parameter).never.with(:source).returns source

            @content = content.new(:resource => @resource)
            @content.actual_content.should be_nil
        end
    end

    describe "when setting the desired content" do
        it "should make the actual content available via an attribute" do
            @content = content.new(:resource => @resource)
            @content.stubs(:checksum_type).returns "md5"
            @content.should = "this is some content"

            @content.actual_content.should == "this is some content"
        end

        it "should store the checksum as the desired content" do
            @content = content.new(:resource => @resource)
            digest = Digest::MD5.hexdigest("this is some content")

            @content.stubs(:checksum_type).returns "md5"
            @content.should = "this is some content"

            @content.should.must == "{md5}#{digest}"
        end

        it "should not checksum 'absent'" do
            @content = content.new(:resource => @resource)
            @content.should = :absent

            @content.should.must == :absent
        end

        it "should accept a checksum as the desired content" do
            @content = content.new(:resource => @resource)
            digest = Digest::MD5.hexdigest("this is some content")

            string = "{md5}#{digest}"
            @content.should = string

            @content.should.must == string
        end
    end

    describe "when retrieving the current content" do
        it "should return :absent if the file does not exist" do
            @content = content.new(:resource => @resource)
            @resource.expects(:stat).returns nil

            @content.retrieve.should == :absent
        end

        it "should not manage content on directories" do
            @content = content.new(:resource => @resource)

            stat = mock 'stat', :ftype => "directory"
            @resource.expects(:stat).returns stat

            @content.retrieve.should be_nil
        end

        it "should not manage content on links" do
            @content = content.new(:resource => @resource)

            stat = mock 'stat', :ftype => "link"
            @resource.expects(:stat).returns stat

            @content.retrieve.should be_nil
        end

        it "should always return the checksum as a string" do
            @content = content.new(:resource => @resource)
            @resource[:checksum] = :mtime

            stat = mock 'stat', :ftype => "file"
            @resource.expects(:stat).returns stat

            time = Time.now
            @resource.parameter(:checksum).expects(:mtime_file).with(@resource[:path]).returns time

            @content.retrieve.should == "{mtime}%s" % time
        end

        it "should return the checksum of the file if it exists and is a normal file" do
            @content = content.new(:resource => @resource)
            stat = mock 'stat', :ftype => "file"
            @resource.expects(:stat).returns stat
            @resource.parameter(:checksum).expects(:md5_file).with(@resource[:path]).returns "mysum"

            @content.retrieve.should == "{md5}mysum"
        end
    end

    describe "when testing whether the content is in sync" do
        before do
            @resource[:ensure] = :file
            @content = content.new(:resource => @resource)
        end

        it "should return true if the resource shouldn't be a regular file" do
            @resource.expects(:should_be_file?).returns false
            @content.must be_insync("whatever")
        end

        it "should return false if the current content is :absent" do
            @content.should_not be_insync(:absent)
        end

        it "should return false if the file should be a file but is not present" do
            @resource.expects(:should_be_file?).returns true

            @content.should_not be_insync(:absent)
        end

        describe "and the file exists" do
            before do
                @resource.stubs(:stat).returns mock("stat")
            end

            it "should return false if the current contents are different from the desired content" do
                @content.should = "some content"
                @content.should_not be_insync("other content")
            end

            it "should return true if the sum for the current contents is the same as the sum for the desired content" do
                @content.should = "some content"
                @content.must be_insync("{md5}" + Digest::MD5.hexdigest("some content"))
            end

            describe "and Puppet[:show_diff] is set" do
                before do
                    Puppet[:show_diff] = true
                end

                it "should display a diff if the current contents are different from the desired content" do
                    @content.should = "some content"
                    @content.expects(:diff).returns("my diff").once
                    @content.expects(:print).with("my diff").once

                    @content.insync?("other content")
                end

                it "should not display a diff if the sum for the current contents is the same as the sum for the desired content" do
                    @content.should = "some content"
                    @content.expects(:diff).never

                    @content.insync?("{md5}" + Digest::MD5.hexdigest("some content"))
                end
            end
        end

        describe "and :replace is false" do
            before do
                @resource.stubs(:replace?).returns false
            end

            it "should be insync if the file exists and the content is different" do
                @resource.stubs(:stat).returns mock('stat')

                @content.must be_insync("whatever")
            end

            it "should be insync if the file exists and the content is right" do
                @resource.stubs(:stat).returns mock('stat')

                @content.must be_insync("something")
            end

            it "should not be insync if the file does not exist" do
                @content.should_not be_insync(:absent)
            end
        end
    end

    describe "when changing the content" do
        before do
            @content = content.new(:resource => @resource)
            @content.should = "some content"

            @resource.stubs(:[]).with(:path).returns "/boo"
            @resource.stubs(:stat).returns "eh"
        end

        it "should use the file's :write method to write the content" do
            @resource.expects(:write).with(:content)

            @content.sync
        end

        it "should return :file_changed if the file already existed" do
            @resource.expects(:stat).returns "something"
            @resource.stubs(:write)
            @content.sync.should == :file_changed
        end

        it "should return :file_created if the file did not exist" do
            @resource.expects(:stat).returns nil
            @resource.stubs(:write)
            @content.sync.should == :file_created
        end
    end

    describe "when writing" do
        before do
            @content = content.new(:resource => @resource)
            @fh = stub_everything
        end

        it "should attempt to read from the filebucket if no actual content nor source exists" do
            @content.should = "{md5}foo"
            @content.resource.bucket.class.any_instance.stubs(:getfile).returns "foo"
            @content.write(@fh)
        end

        describe "from actual content" do
            before(:each) do
                @content.stubs(:actual_content).returns("this is content")
            end

            it "should write to the given file handle" do
                @fh.expects(:print).with("this is content")
                @content.write(@fh)
            end

            it "should return the current checksum value" do
                @resource.parameter(:checksum).expects(:sum_stream).returns "checksum"
                @content.write(@fh).should == "checksum"
            end
        end

        describe "from a file bucket" do
            it "should fail if a file bucket cannot be retrieved" do
                @content.should = "{md5}foo"
                @content.resource.expects(:bucket).returns nil
                lambda { @content.write(@fh) }.should raise_error(Puppet::Error)
            end

            it "should fail if the file bucket cannot find any content" do
                @content.should = "{md5}foo"
                bucket = stub 'bucket'
                @content.resource.expects(:bucket).returns bucket
                bucket.expects(:getfile).with("foo").raises "foobar"
                lambda { @content.write(@fh) }.should raise_error(Puppet::Error)
            end

            it "should write the returned content to the file" do
                @content.should = "{md5}foo"
                bucket = stub 'bucket'
                @content.resource.expects(:bucket).returns bucket
                bucket.expects(:getfile).with("foo").returns "mycontent"

                @fh.expects(:print).with("mycontent")
                @content.write(@fh)
            end
        end

        describe "from local source" do
            before(:each) do
                @content.stubs(:actual_content).returns(nil)
                @source = stub_everything 'source', :local? => true, :full_path => "/path/to/source"
                @resource.stubs(:parameter).with(:source).returns @source

                @sum = stub_everything 'sum'
                @resource.stubs(:parameter).with(:checksum).returns(@sum)

                @digest = stub_everything 'digest'
                @sum.stubs(:sum_stream).yields(@digest)

                @file = stub_everything 'file'
                File.stubs(:open).yields(@file)
                @file.stubs(:read).with(8192).returns("chunk1").then.returns("chunk2").then.returns(nil)
            end

            it "should open the local file" do
                File.expects(:open).with("/path/to/source", "r")
                @content.write(@fh)
            end

            it "should read the local file by chunks" do
                @file.expects(:read).with(8192).returns("chunk1").then.returns(nil)
                @content.write(@fh)
            end

            it "should write each chunk to the file" do
                @fh.expects(:print).with("chunk1").then.with("chunk2")
                @content.write(@fh)
            end

            it "should pass each chunk to the current sum stream" do
                @digest.expects(:<<).with("chunk1").then.with("chunk2")
                @content.write(@fh)
            end

            it "should return the checksum computed" do
                @sum.stubs(:sum_stream).yields(@digest).returns("checksum")
                @content.write(@fh).should == "checksum"
            end
        end

        describe "from remote source" do
            before(:each) do
                @response = stub_everything 'mock response', :code => "404"
                @conn = stub_everything 'connection'
                @conn.stubs(:request_get).yields(@response)
                Puppet::Network::HttpPool.stubs(:http_instance).returns @conn

                @content.stubs(:actual_content).returns(nil)
                @source = stub_everything 'source', :local? => false, :full_path => "/path/to/source", :server => "server", :port => 1234
                @resource.stubs(:parameter).with(:source).returns @source

                @sum = stub_everything 'sum'
                @resource.stubs(:parameter).with(:checksum).returns(@sum)

                @digest = stub_everything 'digest'
                @sum.stubs(:sum_stream).yields(@digest)
            end

            it "should open a network connection to source server and port" do
                Puppet::Network::HttpPool.expects(:http_instance).with("server", 1234).returns @conn
                @content.write(@fh)
            end

            it "should send the correct indirection uri" do
                @conn.expects(:request_get).with { |uri,headers| uri == "/production/file_content//path/to/source" }.yields(@response)
                @content.write(@fh)
            end

            it "should return nil if source is not found" do
                @response.expects(:code).returns("404")
                @content.write(@fh).should == nil
            end

            it "should not write anything if source is not found" do
                @response.expects(:code).returns("404")
                @fh.expects(:print).never
                @content.write(@fh).should == nil
            end

            it "should raise an HTTP error in case of server error" do
                @response.expects(:code).returns("500")
                lambda { @content.write(@fh) }.should raise_error
            end

            it "should write content by chunks" do
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")
                @fh.expects(:print).with("chunk1").then.with("chunk2")
                @content.write(@fh)
            end

            it "should pass each chunk to the current sum stream" do
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")
                @digest.expects(:<<).with("chunk1").then.with("chunk2")
                @content.write(@fh)
            end

            it "should return the checksum computed" do
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")
                @sum.expects(:sum_stream).yields(@digest).returns("checksum")
                @content.write(@fh).should == "checksum"
            end

            it "should get the current accept encoding header value" do
                @content.expects(:add_accept_encoding)
                @content.write(@fh)
            end

            it "should uncompress body on error" do
                @response.expects(:code).returns("500")
                @response.expects(:body).returns("compressed body")
                @content.expects(:uncompress_body).with(@response).returns("uncompressed")
                lambda { @content.write(@fh) }.should raise_error { |e| e.message =~ /uncompressed/ }
            end

            it "should uncompress chunk by chunk" do
                uncompressor = stub_everything 'uncompressor'
                @content.expects(:uncompress).with(@response).yields(uncompressor)
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")

                uncompressor.expects(:uncompress).with("chunk1").then.with("chunk2")
                @content.write(@fh)
            end

            it "should write uncompressed chunks to the file" do
                uncompressor = stub_everything 'uncompressor'
                @content.expects(:uncompress).with(@response).yields(uncompressor)
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")

                uncompressor.expects(:uncompress).with("chunk1").returns("uncompressed1")
                uncompressor.expects(:uncompress).with("chunk2").returns("uncompressed2")

                @fh.expects(:print).with("uncompressed1")
                @fh.expects(:print).with("uncompressed2")

                @content.write(@fh)
            end

            it "should pass each uncompressed chunk to the current sum stream" do
                uncompressor = stub_everything 'uncompressor'
                @content.expects(:uncompress).with(@response).yields(uncompressor)
                @response.expects(:code).returns("200")
                @response.expects(:read_body).multiple_yields("chunk1","chunk2")

                uncompressor.expects(:uncompress).with("chunk1").returns("uncompressed1")
                uncompressor.expects(:uncompress).with("chunk2").returns("uncompressed2")

                @digest.expects(:<<).with("uncompressed1").then.with("uncompressed2")
                @content.write(@fh)
            end
        end

        describe "from a filebucket" do
        end
    end
end