-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.test
330 lines (282 loc) · 8.16 KB
/
main.test
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
Go Replace tests:
$ CURRENT="$(pwd)"
$ cd "$TESTDIR/../"
$ go build -o go-replace
$ cd "$CURRENT"
$ alias go-replace="$TESTDIR/../go-replace"
Usage:
$ go-replace -h > /dev/null
$ go-replace -V
go-replace version .+ \(.+\) (re)
Copyright \(C\) 20[0-9]{2} webdevops.io (re)
$ go-replace --dumpversion
([0-9]+.[0-9]+.[0-9]+|<unknown>) (re)
Testing ignoring missing arguments:
$ go-replace -s foobar -r ___xxx --ignore-empty
Testing missing search and replace argument:
$ go-replace --mode=replace /dev/null
Error: Missing either --search or --replace for this mode
Command: .* (re)
[1]
Testing ignoring missing arguments in template mode:
$ go-replace --mode=template --ignore-empty
Testing replace mode:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace -s foobar -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___xxx line
this is the last line
Testing replace mode with multiple changesets:
$ cat > test.txt <<EOF
> this is a testline
> this is the second barfoo line
> this is the third foobar line
> this is the last oofrab line
> EOF
$ go-replace -s foobar -r 111 -s barfoo -r 222 -s oofrab -r 333 test.txt
$ cat test.txt
this is a testline
this is the second 222 line
this is the third 111 line
this is the last 333 line
Testing replace mode with stdin:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ cat test.txt | go-replace -s foobar -r ___xxx --stdin
this is a testline
this is the second line
this is the third ___xxx line
this is the last line
Testing replace mode with multiple matches:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ go-replace -s foobar -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___xxx line
this is the ___xxx forth ___xxx line
this is the last line
Testing replace mode without match:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ go-replace -s barfoo -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third foobar line
this is the foobar forth foobar line
this is the last line
Testing replace mode with regex:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace --regex -s 'f[o]+b[a]*r' -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___xxx line
this is the last line
Testing replace mode with regex:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace --regex --regex-backrefs -s 'f[o]+(b[a]*r)' -r '___$1' test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___bar line
this is the last line
$ go-replace --regex --regex-backrefs -s 'not-existing-line' -r '___$1' test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___bar line
this is the last line
Testing replace mode with regex and case-insensitive:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace --regex --regex-backrefs -s 'F[O]+(b[a]*r)' -r '___$1' --case-insensitive test.txt
$ cat test.txt
this is a testline
this is the second line
this is the third ___bar line
this is the last line
Testing line mode:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace --mode=line -s foobar -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
___xxx
this is the last line
Testing line mode with multiple matches:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ go-replace --mode=line -s foobar -r ___xxx test.txt
$ cat test.txt
this is a testline
this is the second line
___xxx
___xxx
this is the last line
Testing line mode with multiple matches and --once:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ go-replace --mode=line -s foobar -r ___xxx --once test.txt
$ cat test.txt
this is a testline
this is the second line
___xxx
this is the foobar forth foobar line
this is the last line
Testing line mode with multiple matches and --once=unique:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ go-replace --mode=line -s foobar -r ___xxx --once=unique test.txt
$ cat test.txt
this is a testline
this is the second line
___xxx
this is the last line
Testing replace mode with path option:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the foobar forth foobar line
> this is the last line
> EOF
$ mkdir -p testing/sub1/subsub testing/sub2/subsub
$ cp test.txt testing/sub1/subsub/test1.txt
$ cp test.txt testing/sub1/subsub/test2.txt
$ cp test.txt testing/sub1/test3.txt
$ cp test.txt testing/sub2/subsub/test4.txt
$ cp test.txt testing/sub2/subsub/test5.txt
$ cp test.txt testing/sub2/original.md
$ go-replace -s foobar -r barfoo --path=./testing --path-pattern='*.txt'
$ cat testing/sub1/subsub/test1.txt
this is a testline
this is the second line
this is the third barfoo line
this is the barfoo forth barfoo line
this is the last line
$ cat testing/sub1/subsub/test2.txt
this is a testline
this is the second line
this is the third barfoo line
this is the barfoo forth barfoo line
this is the last line
$ cat testing/sub1/test3.txt
this is a testline
this is the second line
this is the third barfoo line
this is the barfoo forth barfoo line
this is the last line
$ cat testing/sub2/subsub/test4.txt
this is a testline
this is the second line
this is the third barfoo line
this is the barfoo forth barfoo line
this is the last line
$ cat testing/sub2/subsub/test5.txt
this is a testline
this is the second line
this is the third barfoo line
this is the barfoo forth barfoo line
this is the last line
$ cat testing/sub2/original.md
this is a testline
this is the second line
this is the third foobar line
this is the foobar forth foobar line
this is the last line
Testing with --output:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace -s foobar -r ___xxx test.txt --output test.output
$ cat test.output
this is a testline
this is the second line
this is the third ___xxx line
this is the last line
Testing with --output but multiple arguments:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ cp test.txt test2.txt
$ go-replace -s foobar -r ___xxx test.txt test2.txt --output test.output
Error: Only one file is allowed when using --output
Command: .* (re)
[1]
Testing with source:dest:
$ cat > test.txt <<EOF
> this is a testline
> this is the second line
> this is the third foobar line
> this is the last line
> EOF
$ go-replace -s foobar -r ___xxx test.txt:test.output
$ cat test.output
this is a testline
this is the second line
this is the third ___xxx line
this is the last line