-
Notifications
You must be signed in to change notification settings - Fork 0
/
kettle.replace.test.ts
286 lines (247 loc) · 6.79 KB
/
kettle.replace.test.ts
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
import {
replaceValues,
replaceIfBlocks,
stringToInclude,
replaceIfLines,
contentToInclude,
} from './kettle.replace';
describe('replaceValues', () => {
it('replaces a value', () => {
expect(
replaceValues('Hello __replace__plop__', {
values: {
plop: 'world',
},
})
).toEqual('Hello world');
});
it('replaces two consecutive values', () => {
expect(
replaceValues('__replace__value1____replace__value2__!', {
values: {
value1: 'hello',
value2: 'World',
},
})
).toEqual('helloWorld!');
});
it('allows customizing matching pattern', () => {
expect(
replaceValues(
'Hello _rp_plop_',
{
values: {
plop: 'world',
},
replacePrefix: '_rp_',
replaceSuffix: '_',
}
)
).toEqual('Hello world');
});
it('throws an error', () => {
expect(() =>
replaceValues('Hello __replace__plop__', {
values: {
// @ts-ignore
plop: 2,
},
})
).toThrow('[VALUE_IS_NOT_A_STRING] The value of "plop" is not a string');
});
});
describe('replaceList', () => {
it('replaces a value', () => {
expect(replaceValues('helloPlop', { replaceList: [{ from: 'Plop', to: 'World' }] })).toEqual(
'helloWorld'
);
});
it('replaces multiple values', () => {
expect(
replaceValues('plipPlop', {
replaceList: [
{ from: 'plip', to: 'hello' },
{ from: 'Plop', to: 'World' },
],
})
).toEqual('helloWorld');
});
it('replaces a same value multiple times', () => {
expect(
replaceValues('plipplip', {
replaceList: [{ from: 'plip', to: 'hello' }],
})
).toEqual('hellohello');
});
});
describe('replaceIfBlocks', () => {
it('keeps truthy IFs', () => {
const input = `
// __if__isWorld__
helloworld()
// __endif__
`;
const output = `
helloworld()
`;
expect(replaceIfBlocks(input, { values: { isWorld: true } })).toEqual(output);
});
it('keeps truthy IFs (with !)', () => {
const input = `
// __if__!isWorld__
helloworld()
// __endif__
`;
const output = `
helloworld()
`;
expect(replaceIfBlocks(input, { values: { isWorld: null } })).toEqual(output);
});
it('removes falsy Ifs', () => {
const input = `
// __if__isWorld__
helloworld()
// __endif__
`;
const output = `
`;
expect(replaceIfBlocks(input, { values: { isWorld: null } })).toEqual(output);
});
it('removes falsy Ifs (with !)', () => {
const input = `
// __if__!isWorld__
helloworld()
// __endif__
`;
const output = `
`;
expect(replaceIfBlocks(input, { values: { isWorld: true } })).toEqual(output);
});
it('allows custom matching patterns', () => {
const input = `
// IIisWorldII
helloworld()
// EI
`;
const output = `
helloworld()
`;
expect(
replaceIfBlocks(input, {
values: { isWorld: true },
ifPrefix: 'II',
ifSuffix: 'II',
endif: 'EI',
})
).toEqual(output);
});
});
describe('replaceIfLines', () => {
it('replaces paths containing ifs', () => {
const input = `
import test1 from '/myApp/truthy__if__isTrue__/test1.js';
import test2 from '/myApp/plop/truthy__if__isTrue__/test2.js';
`;
const ouput = `
import test1 from '/myApp/truthy/test1.js';
import test2 from '/myApp/plop/truthy/test2.js';
`;
expect(replaceIfLines(input, { values: { isTrue: true } })).toEqual(ouput);
});
it('removes paths containing falsy ifs', () => {
const input = `
import test1 from '/myApp/truthy__if__isTrue__/test1.js';
import test2 from '/myApp/plop/truthy__if__isFalse__/test2.js';
`;
const output = `
import test1 from '/myApp/truthy/test1.js';
`;
expect(replaceIfLines(input, { values: { isTrue: true, isFalse: false } })).toEqual(output);
});
it('allows custom matching patterns', () => {
const input = `
import test1 from '/myApp/truthyIIisTrueII/test1.js';
import test2 from '/myApp/plop/truthyIIisTrueII/test2.js';
`;
const output = `
import test1 from '/myApp/truthy/test1.js';
import test2 from '/myApp/plop/truthy/test2.js';
`;
expect(
replaceIfLines(input, { values: { isTrue: true }, ifPrefix: 'II', ifSuffix: 'II' })
).toEqual(output);
});
});
describe('stringToInclude', () => {
it('returns the string without ifs if it has a valid condition', () => {
expect(stringToInclude('helloWorld__if__value1__', { values: { value1: true } })).toEqual(
'helloWorld'
);
});
it('returns the string without ifs if it has a valid condition (with !)', () => {
expect(stringToInclude('helloWorld__if__!value1__', { values: { value1: false } })).toEqual(
'helloWorld'
);
});
it('returns null if the string has a falsy condition', () => {
expect(stringToInclude('helloWorld__if__value1__', { values: { value1: false } })).toEqual(
null
);
});
it('returns null if the string has a falsy condition (with !)', () => {
expect(stringToInclude('helloWorld__if__!value1__', { values: { value1: true } })).toEqual(
null
);
});
it('returns true if the string has no condition', () => {
expect(stringToInclude('helloWorld', { values: { value1: true } })).toEqual('helloWorld');
});
it('returns the string without ifs if any condition is true', () => {
expect(
stringToInclude('helloWorld__if__value1__/helloSun__if__value2__', {
values: {
value1: true,
value2: false,
},
})
).toEqual(null);
});
it('allows custom matching patterns', () => {
expect(
stringToInclude('helloWorldIIvalue1II', {
values: { value1: true },
ifPrefix: 'II',
ifSuffix: 'II',
})
).toEqual('helloWorld');
});
});
describe('contentToInclude', () => {
it('returns null if the include condition is false', () => {
const input = `
// __include_if__isFalse__
line 1
`;
const output: null = null;
expect(contentToInclude(input, { values: { isFalse: false } })).toEqual(output);
});
it('returns null if one of the include condition is false', () => {
const input = `
// __include_if__is__
// __include_if__isFalse__
line 1
`;
const output: null = null;
expect(contentToInclude(input, { values: { isFalse: false } })).toEqual(output);
});
it('returns the content without the first line if the include condition is true', () => {
const input = `
// __include_if__isTrue__
line 1
`;
const output = `
line 1
`;
expect(contentToInclude(input, { values: { isTrue: true } })).toEqual(output);
});
});