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
|
require "formula"
describe "patching" do
TESTBALL_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz".freeze
TESTBALL_PATCHES_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1-patches.tgz".freeze
PATCH_URL_A = "file://#{TEST_FIXTURE_DIR}/patches/noop-a.diff".freeze
PATCH_URL_B = "file://#{TEST_FIXTURE_DIR}/patches/noop-b.diff".freeze
PATCH_A_CONTENTS = File.read "#{TEST_FIXTURE_DIR}/patches/noop-a.diff"
PATCH_B_CONTENTS = File.read "#{TEST_FIXTURE_DIR}/patches/noop-b.diff"
APPLY_A = "noop-a.diff".freeze
APPLY_B = "noop-b.diff".freeze
APPLY_C = "noop-c.diff".freeze
def formula(name = "formula_name", path: Formulary.core_path(name), spec: :stable, alias_path: nil, &block)
Class.new(Formula) {
url TESTBALL_URL
sha256 TESTBALL_SHA256
class_eval(&block)
}.new(name, path, spec, alias_path: alias_path)
end
matcher :be_patched do
match do |formula|
formula.brew do
formula.patch
s = File.read("libexec/NOOP")
expect(s).not_to include("NOOP"), "libexec/NOOP was not patched as expected"
expect(s).to include("ABCD"), "libexec/NOOP was not patched as expected"
end
end
end
matcher :be_sequentially_patched do
match do |formula|
formula.brew do
formula.patch
s = File.read("libexec/NOOP")
expect(s).not_to include("NOOP"), "libexec/NOOP was not patched as expected"
expect(s).not_to include("ABCD"), "libexec/NOOP was not patched as expected"
expect(s).to include("1234"), "libexec/NOOP was not patched as expected"
end
end
end
matcher :miss_apply do
match do |formula|
expect {
formula.brew do
formula.patch
end
}.to raise_error(MissingApplyError)
end
end
specify "single_patch" do
expect(
formula do
def patches
PATCH_URL_A
end
end,
).to be_patched
end
specify "single_patch_dsl" do
expect(
formula do
patch do
url PATCH_URL_A
sha256 PATCH_A_SHA256
end
end,
).to be_patched
end
specify "single_patch_dsl_with_apply" do
expect(
formula do
patch do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply APPLY_A
end
end,
).to be_patched
end
specify "single_patch_dsl_with_sequential_apply" do
expect(
formula do
patch do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply APPLY_A, APPLY_C
end
end,
).to be_sequentially_patched
end
specify "single_patch_dsl_with_strip" do
expect(
formula do
patch :p1 do
url PATCH_URL_A
sha256 PATCH_A_SHA256
end
end,
).to be_patched
end
specify "single_patch_dsl_with_strip_with_apply" do
expect(
formula do
patch :p1 do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply APPLY_A
end
end,
).to be_patched
end
specify "single_patch_dsl_with_incorrect_strip" do
expect {
f = formula do
patch :p0 do
url PATCH_URL_A
sha256 PATCH_A_SHA256
end
end
f.brew { |formula, _staging| formula.patch }
}.to raise_error(ErrorDuringExecution)
end
specify "single_patch_dsl_with_incorrect_strip_with_apply" do
expect {
f = formula do
patch :p0 do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply APPLY_A
end
end
f.brew { |formula, _staging| formula.patch }
}.to raise_error(ErrorDuringExecution)
end
specify "patch_p0_dsl" do
expect(
formula do
patch :p0 do
url PATCH_URL_B
sha256 PATCH_B_SHA256
end
end,
).to be_patched
end
specify "patch_p0_dsl_with_apply" do
expect(
formula do
patch :p0 do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply APPLY_B
end
end,
).to be_patched
end
specify "patch_p0" do
expect(
formula do
def patches
{ p0: PATCH_URL_B }
end
end,
).to be_patched
end
specify "patch_array" do
expect(
formula do
def patches
[PATCH_URL_A]
end
end,
).to be_patched
end
specify "patch_hash" do
expect(
formula do
def patches
{ p1: PATCH_URL_A }
end
end,
).to be_patched
end
specify "patch_hash_array" do
expect(
formula do
def patches
{ p1: [PATCH_URL_A] }
end
end,
).to be_patched
end
specify "patch_string" do
expect(formula { patch PATCH_A_CONTENTS }).to be_patched
end
specify "patch_string_with_strip" do
expect(formula { patch :p0, PATCH_B_CONTENTS }).to be_patched
end
specify "patch_data_constant" do
expect(
formula("test", path: Pathname.new(__FILE__).expand_path) do
def patches
:DATA
end
end,
).to be_patched
end
specify "single_patch_missing_apply_fail" do
expect(
formula do
def patches
TESTBALL_PATCHES_URL
end
end,
).to miss_apply
end
specify "single_patch_dsl_missing_apply_fail" do
expect(
formula do
patch do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
end
end,
).to miss_apply
end
specify "single_patch_dsl_with_apply_enoent_fail" do
expect {
f = formula do
patch do
url TESTBALL_PATCHES_URL
sha256 TESTBALL_PATCHES_SHA256
apply "patches/#{APPLY_A}"
end
end
f.brew { |formula, _staging| formula.patch }
}.to raise_error(ErrorDuringExecution)
end
end
__END__
diff --git a/libexec/NOOP b/libexec/NOOP
index bfdda4c..e08d8f4 100755
--- a/libexec/NOOP
+++ b/libexec/NOOP
@@ -1,2 +1,2 @@
#!/bin/bash
-echo NOOP
\ No newline at end of file
+echo ABCD
\ No newline at end of file
|