blob: 6642704c0833f74c35d0fdb6c19cef3647ecbc13 (
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
|
require 'testing_env'
require 'test/testball'
class PatchingTests < Test::Unit::TestCase
def read_file path
File.open(path, 'r') { |f| f.read }
end
def test_single_patch
shutup do
Class.new(TestBall) do
def patches
"file:///#{TEST_FOLDER}/patches/noop-a.diff"
end
end.new("test_single_patch").brew do
s = read_file 'libexec/NOOP'
assert !s.include?("NOOP"), "File was unpatched."
assert s.include?("ABCD"), "File was not patched as expected."
end
end
end
def test_patch_array
shutup do
Class.new(TestBall) do
def patches
["file:///#{TEST_FOLDER}/patches/noop-a.diff"]
end
end.new("test_patch_array").brew do
s = read_file 'libexec/NOOP'
assert !s.include?("NOOP"), "File was unpatched."
assert s.include?("ABCD"), "File was not patched as expected."
end
end
end
def test_patch_p0
shutup do
Class.new(TestBall) do
def patches
"file:///#{TEST_FOLDER}/patches/noop-a.diff"
end
end.new("test_patch_p0").brew do
s = read_file 'libexec/NOOP'
assert !s.include?("NOOP"), "File was unpatched."
assert s.include?("ABCD"), "File was not patched as expected."
end
end
end
def test_patch_p1
shutup do
Class.new(TestBall) do
def patches
{ :p1 => ["file:///#{TEST_FOLDER}/patches/noop-a.diff"] }
end
end.new("test_patch_p1").brew do
s = read_file 'libexec/NOOP'
assert !s.include?("NOOP"), "File was unpatched."
assert s.include?("ABCD"), "File was not patched as expected."
end
end
end
end
|