summaryrefslogtreecommitdiffstats
path: root/spec/unit/file_serving/metadata_spec.rb
blob: a55396577371340832c52c7f76262befe0c72add (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../spec_helper'

require 'puppet/file_serving/metadata'

describe Puppet::FileServing::Metadata do
    it "should should be a subclass of Base" do
        Puppet::FileServing::Metadata.superclass.should equal(Puppet::FileServing::Base)
    end

    it "should indirect file_metadata" do
        Puppet::FileServing::Metadata.indirection.name.should == :file_metadata
    end

    it "should should include the IndirectionHooks module in its indirection" do
        Puppet::FileServing::Metadata.indirection.singleton_class.included_modules.should include(Puppet::FileServing::IndirectionHooks)
    end

    it "should have a method that triggers attribute collection" do
        Puppet::FileServing::Metadata.new("/foo/bar").should respond_to(:collect)
    end

    it "should support pson serialization" do
        Puppet::FileServing::Metadata.new("/foo/bar").should respond_to(:to_pson)
    end

    it "should support to_pson_data_hash" do
        Puppet::FileServing::Metadata.new("/foo/bar").should respond_to(:to_pson_data_hash)
    end

    it "should support pson deserialization" do
        Puppet::FileServing::Metadata.should respond_to(:from_pson)
    end

    describe "when serializing" do
        before do
            @metadata = Puppet::FileServing::Metadata.new("/foo/bar")
        end
        it "should perform pson serialization by calling to_pson on it's pson_data_hash" do
            pdh = mock "data hash"
            pdh_as_pson = mock "data as pson"
            @metadata.expects(:to_pson_data_hash).returns pdh
            pdh.expects(:to_pson).returns pdh_as_pson
            @metadata.to_pson.should == pdh_as_pson
        end

        it "should serialize as FileMetadata" do
            @metadata.to_pson_data_hash['document_type'].should == "FileMetadata"
        end

        it "the data should include the path, relative_path, links, owner, group, mode, checksum, type, and destination" do
            @metadata.to_pson_data_hash['data'].keys.sort.should == %w{ path relative_path links owner group mode checksum type destination }.sort
        end

        it "should pass the path in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['path'] == @metadata.path
        end

        it "should pass the relative_path in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['relative_path'] == @metadata.relative_path
        end

        it "should pass the links in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['links'] == @metadata.links
        end

        it "should pass the path owner in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['owner'] == @metadata.owner
        end

        it "should pass the group in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['group'] == @metadata.group
        end

        it "should pass the mode in the hash verbatum" do
            @metadata.to_pson_data_hash['data']['mode'] == @metadata.mode
        end

        it "should pass the ftype in the hash verbatum as the 'type'" do
            @metadata.to_pson_data_hash['data']['type'] == @metadata.ftype
        end

        it "should pass the destination verbatum" do
            @metadata.to_pson_data_hash['data']['destination'] == @metadata.destination
        end

        it "should pass the checksum in the hash as a nested hash" do
            @metadata.to_pson_data_hash['data']['checksum'].should be_is_a(Hash)
        end

        it "should pass the checksum_type in the hash verbatum as the checksum's type" do
            @metadata.to_pson_data_hash['data']['checksum']['type'] == @metadata.checksum_type
        end

        it "should pass the checksum in the hash verbatum as the checksum's value" do
            @metadata.to_pson_data_hash['data']['checksum']['value'] == @metadata.checksum
        end

    end
end

describe Puppet::FileServing::Metadata, " when finding the file to use for setting attributes" do
    before do
        @path = "/my/path"
        @metadata = Puppet::FileServing::Metadata.new(@path)

        # Use a link because it's easier to test -- no checksumming
        @stat = stub "stat", :uid => 10, :gid => 20, :mode => 0755, :ftype => "link"

        # Not quite.  We don't want to checksum links, but we must because they might be being followed.
        @checksum = Digest::MD5.hexdigest("some content\n") # Remove these when :managed links are no longer checksumed.
        @metadata.stubs(:md5_file).returns(@checksum)           #
    end

    it "should accept a base path path to which the file should be relative" do
        File.expects(:lstat).with(@path).returns @stat
        File.expects(:readlink).with(@path).returns "/what/ever"
        @metadata.collect
    end

    it "should use the set base path if one is not provided" do
        File.expects(:lstat).with(@path).returns @stat
        File.expects(:readlink).with(@path).returns "/what/ever"
        @metadata.collect()
    end

    it "should raise an exception if the file does not exist" do
        File.expects(:lstat).with(@path).raises(Errno::ENOENT)
        proc { @metadata.collect()}.should raise_error(Errno::ENOENT)
    end
end

describe Puppet::FileServing::Metadata, " when collecting attributes" do
    before do
        @path = "/my/file"
        # Use a real file mode, so we can validate the masking is done.
        @stat = stub 'stat', :uid => 10, :gid => 20, :mode => 33261, :ftype => "file"
        File.stubs(:lstat).returns(@stat)
        @checksum = Digest::MD5.hexdigest("some content\n")
        @metadata = Puppet::FileServing::Metadata.new("/my/file")
        @metadata.stubs(:md5_file).returns(@checksum)
        @metadata.collect
    end

    it "should be able to produce xmlrpc-style attribute information" do
        @metadata.should respond_to(:attributes_with_tabs)
    end

    # LAK:FIXME This should actually change at some point
    it "should set the owner by id" do
        @metadata.owner.should be_instance_of(Fixnum)
    end

    # LAK:FIXME This should actually change at some point
    it "should set the group by id" do
        @metadata.group.should be_instance_of(Fixnum)
    end

    it "should set the owner to the file's current owner" do
        @metadata.owner.should == 10
    end

    it "should set the group to the file's current group" do
        @metadata.group.should == 20
    end

    it "should set the mode to the file's masked mode" do
        @metadata.mode.should == 0755
    end

    it "should set the checksum to the file's current checksum" do
        @metadata.checksum.should == "{md5}#{@checksum}"
    end

    describe "when managing files" do
        it "should default to a checksum of type MD5" do
            @metadata.checksum.should == "{md5}#{@checksum}"
        end

        it "should give a mtime checksum when checksum_type is set" do
            time = Time.now
            @metadata.checksum_type = "mtime"
            @metadata.expects(:mtime_file).returns(@time)
            @metadata.collect
            @metadata.checksum.should == "{mtime}#{@time}"
        end

        it "should produce tab-separated mode, type, owner, group, and checksum for xmlrpc" do
            @metadata.attributes_with_tabs.should == "#{0755.to_s}\tfile\t10\t20\t{md5}#{@checksum}"
        end
    end

    describe "when managing directories" do
        before do
            @stat.stubs(:ftype).returns("directory")
            @time = Time.now
            @metadata.expects(:ctime_file).returns(@time)
        end

        it "should only use checksums of type 'ctime' for directories" do
            @metadata.collect
            @metadata.checksum.should == "{ctime}#{@time}"
        end

        it "should only use checksums of type 'ctime' for directories even if checksum_type set" do
            @metadata.checksum_type = "mtime"
            @metadata.expects(:mtime_file).never
            @metadata.collect
            @metadata.checksum.should == "{ctime}#{@time}"
        end

        it "should produce tab-separated mode, type, owner, group, and checksum for xmlrpc" do
            @metadata.collect
            @metadata.attributes_with_tabs.should == "#{0755.to_s}\tdirectory\t10\t20\t{ctime}#{@time.to_s}"
        end
    end

    describe "when managing links" do
        before do
            @stat.stubs(:ftype).returns("link")
            File.expects(:readlink).with("/my/file").returns("/path/to/link")
            @metadata.collect

            @checksum = Digest::MD5.hexdigest("some content\n") # Remove these when :managed links are no longer checksumed.
            @file.stubs(:md5_file).returns(@checksum)           #
        end

        it "should read links instead of returning their checksums" do
            @metadata.destination.should == "/path/to/link"
        end

        it "should produce tab-separated mode, type, owner, group, and destination for xmlrpc" do
            pending "We'd like this to be true, but we need to always collect the checksum because in the server/client/server round trip we lose the distintion between manage and follow."
            @metadata.attributes_with_tabs.should == "#{0755}\tlink\t10\t20\t/path/to/link"
        end

        it "should produce tab-separated mode, type, owner, group, checksum, and destination for xmlrpc" do
            @metadata.attributes_with_tabs.should == "#{0755}\tlink\t10\t20\t{md5}eb9c2bf0eb63f3a7bc0ea37ef18aeba5\t/path/to/link"
        end
    end
end

describe Puppet::FileServing::Metadata, " when pointing to a link" do
    describe "when links are managed" do
        before do
            @file = Puppet::FileServing::Metadata.new("/base/path/my/file", :links => :manage)
            File.expects(:lstat).with("/base/path/my/file").returns stub("stat", :uid => 1, :gid => 2, :ftype => "link", :mode => 0755)
            File.expects(:readlink).with("/base/path/my/file").returns "/some/other/path"

            @checksum = Digest::MD5.hexdigest("some content\n") # Remove these when :managed links are no longer checksumed.
            @file.stubs(:md5_file).returns(@checksum)           #
        end
        it "should store the destination of the link in :destination if links are :manage" do
            @file.collect
            @file.destination.should == "/some/other/path"
        end
        it "should not collect the checksum if links are :manage" do
            pending "We'd like this to be true, but we need to always collect the checksum because in the server/client/server round trip we lose the distintion between manage and follow."
            @file.collect
            @file.checksum.should be_nil
        end
        it "should collect the checksum if links are :manage" do # see pending note above
            @file.collect
            @file.checksum.should == "{md5}#{@checksum}"
        end
    end

    describe "when links are followed" do
        before do
            @file = Puppet::FileServing::Metadata.new("/base/path/my/file", :links => :follow)
            File.expects(:stat).with("/base/path/my/file").returns stub("stat", :uid => 1, :gid => 2, :ftype => "file", :mode => 0755)
            File.expects(:readlink).with("/base/path/my/file").never
            @checksum = Digest::MD5.hexdigest("some content\n")
            @file.stubs(:md5_file).returns(@checksum)
        end
        it "should not store the destination of the link in :destination if links are :follow" do
            @file.collect
            @file.destination.should be_nil
        end
        it "should collect the checksum if links are :follow" do
            @file.collect
            @file.checksum.should == "{md5}#{@checksum}"
        end
    end
end