summaryrefslogtreecommitdiffstats
path: root/test/ral/type/file/target.rb
blob: 20e68a57801aaec95b61a376ac9e8a179bcecfb6 (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../../lib/puppettest'

require 'puppettest'
require 'puppettest/support/utils'
require 'fileutils'

class TestFileTarget < Test::Unit::TestCase
    include PuppetTest::Support::Utils
    include PuppetTest::FileTesting

    def setup
        super
        @file = Puppet::Type.type(:file)
    end

    # Make sure we can create symlinks
    def test_symlinks
        path = tempfile()
        link = tempfile()

        File.open(path, "w") { |f| f.puts "yay" }

        file = nil
        assert_nothing_raised {

                        file = Puppet::Type.type(:file).new(
                
                :title => "somethingelse",
                :ensure => path,
        
                :path => link
            )
        }

        assert_events([:link_created], file)

        assert(FileTest.symlink?(link), "Link was not created")

        assert_equal(path, File.readlink(link), "Link was created incorrectly")

        # Make sure running it again works
        assert_events([], file)
        assert_events([], file)
        assert_events([], file)
    end

    def test_simplerecursivelinking
        source = tempfile()
        path = tempfile()
        subdir = File.join(source, "subdir")
        file = File.join(subdir, "file")

        system("mkdir -p #{subdir}")
        system("touch #{file}")


                    link = Puppet::Type.type(:file).new(
                
            :ensure => source,
            :path => path,
        
            :recurse => true
        )

        catalog = mk_catalog(link)
        catalog.apply

        sublink = File.join(path, "subdir")
        linkpath = File.join(sublink, "file")
        assert(File.directory?(path), "dest is not a dir")
        assert(File.directory?(sublink), "subdest is not a dir")
        assert(File.symlink?(linkpath), "path is not a link")
        assert_equal(file, File.readlink(linkpath))

        # Use classes for comparison, because the resource inspection is so large
        assert_events([], link, "Link is not in sync")
    end

    def test_recursivelinking
        source = tempfile()
        dest = tempfile()

        files = []
        dirs = []

        # Make a bunch of files and dirs
        Dir.mkdir(source)
        Dir.chdir(source) do
            system("mkdir -p #{"some/path/of/dirs"}")
            system("mkdir -p #{"other/path/of/dirs"}")
            system("touch #{"file"}")
            system("touch #{"other/file"}")
            system("touch #{"some/path/of/file"}")
            system("touch #{"some/path/of/dirs/file"}")
            system("touch #{"other/path/of/file"}")

            files = %x{find . -type f}.chomp.split(/\n/)
            dirs = %x{find . -type d}.chomp.split(/\n/).reject{|d| d =~ /^\.+$/ }
        end

        link = nil
        assert_nothing_raised {

                        link = Puppet::Type.type(:file).new(
                
                :ensure => source,
                :path => dest,
        
                :recurse => true
            )
        }

        assert_apply(link)

        files.each do |f|
            f.sub!(/^\.#{File::SEPARATOR}/, '')
            path = File.join(dest, f)
            assert(FileTest.exists?(path), "Link #{path} was not created")
            assert(FileTest.symlink?(path), "#{f} is not a link")
            target = File.readlink(path)
            assert_equal(File.join(source, f), target)
        end

        dirs.each do |d|
            d.sub!(/^\.#{File::SEPARATOR}/, '')
            path = File.join(dest, d)
            assert(FileTest.exists?(path), "Dir #{path} was not created")
            assert(FileTest.directory?(path), "#{d} is not a directory")
        end
    end

    def test_localrelativelinks
        dir = tempfile()
        Dir.mkdir(dir)
        source = File.join(dir, "source")
        File.open(source, "w") { |f| f.puts "yay" }
        dest = File.join(dir, "link")

        link = nil
        assert_nothing_raised {

                        link = Puppet::Type.type(:file).new(
                
                :path => dest,
        
                :ensure => "source"
            )
        }

        assert_events([:link_created], link)
        assert(FileTest.symlink?(dest), "Did not create link")
        assert_equal("source", File.readlink(dest))
        assert_equal("yay\n", File.read(dest))
    end

    def test_recursivelinkingmissingtarget
        source = tempfile()
        dest = tempfile()

        resources = []

                    resources << Puppet::Type.type(:exec).new(
                
            :command => "mkdir #{source}; touch #{source}/file",
            :title => "yay",
        
            :path => ENV["PATH"]
        )

                    resources << Puppet::Type.type(:file).new(
                
            :ensure => source,
            :path => dest,
            :recurse => true,
        
            :require => resources[0]
        )

        assert_apply(*resources)

        link = File.join(dest, "file")
        assert(FileTest.symlink?(link), "Did not make link")
        assert_equal(File.join(source, "file"), File.readlink(link))
    end

    def test_insync?
        source = tempfile()
        dest = tempfile()

        obj = @file.create(:path => source, :target => dest)

        prop = obj.send(:property, :target)
        prop.send(:instance_variable_set, "@should", [:nochange])

                    assert(
                prop.insync?(prop.retrieve),
        
            "Property not in sync with should == :nochange")

        prop = obj.send(:property, :target)
        prop.send(:instance_variable_set, "@should", [:notlink])

                    assert(
                prop.insync?(prop.retrieve),
        
            "Property not in sync with should == :nochange")

        # Lastly, make sure that we don't try to do anything when we're
        # recursing, since 'ensure' does the work.
        obj[:recurse] = true
        prop.should = dest

                    assert(
                prop.insync?(prop.retrieve),
        
            "Still out of sync during recursion")
    end

    def test_replacedirwithlink
        Puppet[:trace] = false
        path = tempfile()
        link = tempfile()

        File.open(path, "w") { |f| f.puts "yay" }
        Dir.mkdir(link)
        File.open(File.join(link, "yay"), "w") do |f| f.puts "boo" end

        file = nil
        assert_nothing_raised {

                        file = Puppet::Type.type(:file).new(
                
                :ensure => path,
                :path => link,
        
                :backup => false
            )
        }

        # First run through without :force
        assert_events([], file)

        assert(FileTest.directory?(link), "Link replaced dir without force")

        assert_nothing_raised { file[:force] = true }

        assert_events([:link_created], file)

        assert(FileTest.symlink?(link), "Link was not created")

        assert_equal(path, File.readlink(link), "Link was created incorrectly")
    end

    def test_replace_links_with_files
        base = tempfile()

        Dir.mkdir(base)

        file = File.join(base, "file")
        link = File.join(base, "link")
        File.open(file, "w") { |f| f.puts "yayness" }
        File.symlink(file, link)


                    obj = Puppet::Type.type(:file).new(
                
            :path => link,
        
            :ensure => "file"
        )

        assert_apply(obj)


                    assert_equal(
                "yayness\n", File.read(file),
        
            "Original file got changed")
        assert_equal("file", File.lstat(link).ftype, "File is still a link")
    end

    def test_no_erase_linkedto_files
        base = tempfile()

        Dir.mkdir(base)

        dirs = {}
        %w{other source target}.each do |d|
            dirs[d] = File.join(base, d)
            Dir.mkdir(dirs[d])
        end

        file = File.join(dirs["other"], "file")
        sourcefile = File.join(dirs["source"], "sourcefile")
        link = File.join(dirs["target"], "sourcefile")

        File.open(file, "w") { |f| f.puts "other" }
        File.open(sourcefile, "w") { |f| f.puts "source" }
        File.symlink(file, link)


                    obj = Puppet::Type.type(:file).new(
                
            :path => dirs["target"],
            :ensure => :file,
            :source => dirs["source"],
        
            :recurse => true
        )
        config = mk_catalog obj
        config.apply

        newfile = File.join(dirs["target"], "sourcefile")

        assert(File.directory?(dirs["target"]), "Dir did not get created")
        assert(File.file?(newfile), "File did not get copied")

        assert_equal(File.read(sourcefile), File.read(newfile),
            "File did not get copied correctly.")


                    assert_equal(
                "other\n", File.read(file),
        
            "Original file got changed")
        assert_equal("file", File.lstat(link).ftype, "File is still a link")
    end

    def test_replace_links
        dest = tempfile()
        otherdest = tempfile()
        link = tempfile()

        File.open(dest, "w") { |f| f.puts "boo" }
        File.open(otherdest, "w") { |f| f.puts "yay" }


                    obj = Puppet::Type.type(:file).new(
                
            :path => link,
        
            :ensure => otherdest
        )


        assert_apply(obj)

        assert_equal(otherdest, File.readlink(link), "Link did not get created")

        obj[:ensure] = dest

        assert_apply(obj)

        assert_equal(dest, File.readlink(link), "Link did not get changed")
    end
end