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
|
require 'spec_helper'
require 'json'
require 'puppet/module_tool/applications'
require 'puppet/file_system'
require 'puppet_spec/modules'
describe Puppet::ModuleTool::Applications::Unpacker do
include PuppetSpec::Files
let(:target) { tmpdir("unpacker") }
let(:module_name) { 'myusername-mytarball' }
let(:filename) { tmpdir("module") + "/module.tar.gz" }
let(:working_dir) { tmpdir("working_dir") }
before :each do
Puppet.settings[:module_working_dir] = working_dir
end
it "should attempt to untar file to temporary location" do
untar = mock('Tar')
untar.expects(:unpack).with(filename, anything()) do |src, dest, _|
FileUtils.mkdir(File.join(dest, 'extractedmodule'))
File.open(File.join(dest, 'extractedmodule', 'metadata.json'), 'w+') do |file|
file.puts JSON.generate('name' => module_name, 'version' => '1.0.0')
end
true
end
Puppet::ModuleTool::Tar.expects(:instance).returns(untar)
Puppet::ModuleTool::Applications::Unpacker.run(filename, :target_dir => target)
File.should be_directory(File.join(target, 'mytarball'))
end
it "should warn about symlinks", :if => Puppet.features.manages_symlinks? do
untar = mock('Tar')
untar.expects(:unpack).with(filename, anything()) do |src, dest, _|
FileUtils.mkdir(File.join(dest, 'extractedmodule'))
File.open(File.join(dest, 'extractedmodule', 'metadata.json'), 'w+') do |file|
file.puts JSON.generate('name' => module_name, 'version' => '1.0.0')
end
FileUtils.touch(File.join(dest, 'extractedmodule/tempfile'))
Puppet::FileSystem.symlink(File.join(dest, 'extractedmodule/tempfile'), File.join(dest, 'extractedmodule/tempfile2'))
true
end
Puppet::ModuleTool::Tar.expects(:instance).returns(untar)
Puppet.expects(:warning).with(regexp_matches(/symlinks/i))
Puppet::ModuleTool::Applications::Unpacker.run(filename, :target_dir => target)
File.should be_directory(File.join(target, 'mytarball'))
end
it "should warn about symlinks in subdirectories", :if => Puppet.features.manages_symlinks? do
untar = mock('Tar')
untar.expects(:unpack).with(filename, anything()) do |src, dest, _|
FileUtils.mkdir(File.join(dest, 'extractedmodule'))
File.open(File.join(dest, 'extractedmodule', 'metadata.json'), 'w+') do |file|
file.puts JSON.generate('name' => module_name, 'version' => '1.0.0')
end
FileUtils.mkdir(File.join(dest, 'extractedmodule/manifests'))
FileUtils.touch(File.join(dest, 'extractedmodule/manifests/tempfile'))
Puppet::FileSystem.symlink(File.join(dest, 'extractedmodule/manifests/tempfile'), File.join(dest, 'extractedmodule/manifests/tempfile2'))
true
end
Puppet::ModuleTool::Tar.expects(:instance).returns(untar)
Puppet.expects(:warning).with(regexp_matches(/symlinks/i))
Puppet::ModuleTool::Applications::Unpacker.run(filename, :target_dir => target)
File.should be_directory(File.join(target, 'mytarball'))
end
end
|