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
|
require 'testing_env'
require 'tmpdir'
require 'extend/pathname'
class PathnameExtensionTests < Homebrew::TestCase
include FileUtils
def setup
@src = Pathname.new(Dir.mktmpdir)
@dst = Pathname.new(Dir.mktmpdir)
@file = @src+'foo'
@dir = @src+'bar'
end
def teardown
rmtree(@src)
rmtree(@dst)
end
def test_rmdir_if_possible
mkdir_p @dir
touch @dir+'foo'
assert !@dir.rmdir_if_possible
assert @dir.directory?
rm_f @dir+'foo'
assert @dir.rmdir_if_possible
assert !@dir.exist?
end
def test_rmdir_if_possible_ignore_DS_Store
mkdir_p @dir
touch @dir+'.DS_Store'
assert @dir.rmdir_if_possible
assert !@dir.exist?
end
def test_write
@file.write('CONTENT')
assert_equal 'CONTENT', File.read(@file)
end
def test_write_does_not_overwrite
touch @file
assert_raises(RuntimeError) { @file.write('CONTENT') }
end
def test_atomic_write
touch @file
@file.atomic_write('CONTENT')
assert_equal 'CONTENT', File.read(@file)
end
def test_atomic_write_preserves_permissions
File.open(@file, "w", 0100777) { }
@file.atomic_write("CONTENT")
assert_equal 0100777 & ~File.umask, @file.stat.mode
end
def test_atomic_write_preserves_default_permissions
@file.atomic_write("CONTENT")
sentinel = @file.parent.join("sentinel")
touch sentinel
assert_equal sentinel.stat.mode, @file.stat.mode
end
def test_ensure_writable
touch @file
chmod 0555, @file
@file.ensure_writable { assert @file.writable? }
assert !@file.writable?
end
def test_extname
assert_equal '.tar.gz', Pathname('foo-0.1.tar.gz').extname
assert_equal '.cpio.gz', Pathname('foo-0.1.cpio.gz').extname
end
def test_stem
assert_equal 'foo-0.1', Pathname('foo-0.1.tar.gz').stem
assert_equal 'foo-0.1', Pathname('foo-0.1.cpio.gz').stem
end
def test_install_missing_file
assert_raises(RuntimeError) do
@dst.install 'non_existent_file'
end
end
def test_install_removes_original
touch @file
@dst.install(@file)
assert (@dst/@file.basename).exist?
assert !@file.exist?
end
def setup_install_test
cd @src do
(@src+'a.txt').write 'This is sample file a.'
(@src+'b.txt').write 'This is sample file b.'
yield
end
end
def test_install
setup_install_test do
@dst.install 'a.txt'
assert((@dst+'a.txt').exist?, 'a.txt not installed.')
assert(!(@dst+'b.txt').exist?, 'b.txt was installed.')
end
end
def test_install_list
setup_install_test do
@dst.install %w[a.txt b.txt]
assert((@dst+'a.txt').exist?, 'a.txt not installed.')
assert((@dst+'b.txt').exist?, 'b.txt not installed.')
end
end
def test_install_glob
setup_install_test do
@dst.install Dir['*.txt']
assert((@dst+'a.txt').exist?, 'a.txt not installed.')
assert((@dst+'b.txt').exist?, 'b.txt not installed.')
end
end
def test_install_directory
setup_install_test do
mkdir_p 'bin'
mv Dir['*.txt'], 'bin'
@dst.install 'bin'
assert((@dst+'bin/a.txt').exist?, 'a.txt not installed.')
assert((@dst+'bin/b.txt').exist?, 'b.txt not installed.')
end
end
def test_install_rename
setup_install_test do
@dst.install 'a.txt' => 'c.txt'
assert((@dst+'c.txt').exist?, 'c.txt not installed.')
assert(!(@dst+'a.txt').exist?, 'a.txt was installed but not renamed.')
assert(!(@dst+'b.txt').exist?, 'b.txt was installed.')
end
end
def test_install_rename_more
setup_install_test do
@dst.install({'a.txt' => 'c.txt', 'b.txt' => 'd.txt'})
assert((@dst+'c.txt').exist?, 'c.txt not installed.')
assert((@dst+'d.txt').exist?, 'd.txt not installed.')
assert(!(@dst+'a.txt').exist?, 'a.txt was installed but not renamed.')
assert(!(@dst+'b.txt').exist?, 'b.txt was installed but not renamed.')
end
end
def test_install_rename_directory
setup_install_test do
mkdir_p 'bin'
mv Dir['*.txt'], 'bin'
@dst.install 'bin' => 'libexec'
assert(!(@dst+'bin').exist?, 'bin was installed but not renamed.')
assert((@dst+'libexec/a.txt').exist?, 'a.txt not installed.')
assert((@dst+'libexec/b.txt').exist?, 'b.txt not installed.')
end
end
def test_install_symlink
setup_install_test do
mkdir_p 'bin'
mv Dir['*.txt'], 'bin'
@dst.install_symlink @src+'bin'
assert((@dst+'bin').symlink?)
assert((@dst+'bin').directory?)
assert((@dst+'bin/a.txt').exist?)
assert((@dst+'bin/b.txt').exist?)
assert((@dst+'bin').readlink.relative?)
end
end
def test_install_creates_intermediate_directories
touch @file
assert !@dir.directory?
@dir.install(@file)
assert @dir.directory?
end
end
|