-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathdiff_test.v
More file actions
130 lines (118 loc) · 1.41 KB
/
diff_test.v
File metadata and controls
130 lines (118 loc) · 1.41 KB
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
import arrays.diff
fn test_diff_array() {
mut aa := ['hi', '1', '5', '3']
mut bb := aa.clone()
mut ctx := diff.diff(aa, bb)
assert ctx.changes.len == 0
bb.insert(2, 'max')
// aa := ['hi', '1', '5', '3']
// bb := ['hi', '1', 'max', '5', '3']
ctx = diff.diff(aa, bb)
assert ctx.changes == [
diff.DiffChange{
a: 2
b: 2
del: 0
ins: 1
},
]
bb.delete(4)
// aa := ['hi', '1', '5', '3']
// bb := ['hi', '1', 'max', '5']
ctx = diff.diff(aa, bb)
assert ctx.changes == [
diff.DiffChange{
a: 2
b: 2
del: 0
ins: 1
},
diff.DiffChange{
a: 3
b: 4
del: 1
ins: 0
},
]
str1 := ctx.generate_patch()
assert str1 == 'hi
1
-5
-3
+max
+5
'
str2 := ctx.generate_patch(block_header: true)
assert str2 == '@@ -1,7 +1,7 @@
hi
1
-5
-3
+max
+5
'
str3 := ctx.generate_patch(block_header: true, unified: 1)
assert str3 == '@@ -2,4 +2,4 @@
1
-5
-3
+max
+5
'
str4 := ctx.generate_patch(block_header: true, unified: 10)
assert str4 == '@@ -1,14 +1,14 @@
hi
1
-5
-3
+max
+5
'
str5 := ctx.generate_patch(block_header: true, unified: -1)
assert str5 == '@@ -3,2 +3,2 @@
-5
-3
+max
+5
'
}
fn test_diff_runes() {
mut aa := 'brown fox jumps over the lazy dog'.runes()
mut bb := 'brwn faax junps ovver the lay daog'.runes()
mut ctx := diff.diff(aa, bb)
str1 := ctx.generate_patch()
assert str1 == 'b
r
-o
w
n
f
-o
+a
+a
x
j
u
-m
+n
p
s
o
+v
v
e
r
l
a
-z
-y
-
-d
+y
+
+d
+a
o
g
'
}