forked from sebastienros/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StringFiltersTests.cs
398 lines (312 loc) · 15.2 KB
/
StringFiltersTests.cs
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
using System.Linq;
using Fluid.Values;
using Fluid.Filters;
using Xunit;
using Fluid.Tests.Extensions;
namespace Fluid.Tests
{
public class StringFiltersTests
{
[Fact]
public void Append()
{
var input = new StringValue("Hello");
var arguments = new FilterArguments().Add(new StringValue(" World"));
var context = new TemplateContext();
var result = StringFilters.Append(input, arguments, context);
Assert.Equal("Hello World", result.Result.ToStringValue());
}
[Fact]
public void Capitalize()
{
var input = new StringValue("hello world");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.Capitalize(input, arguments, context);
Assert.Equal("Hello World", result.Result.ToStringValue());
}
[Fact]
public void Downcase()
{
var input = new StringValue("Hello World");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.Downcase(input, arguments, context);
Assert.Equal("hello world", result.Result.ToStringValue());
}
[Fact]
public void LStrip()
{
var input = new StringValue(" Hello World ");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.LStrip(input, arguments, context);
Assert.Equal("Hello World ", result.Result.ToStringValue());
}
[Fact]
public void RStrip()
{
var input = new StringValue(" Hello World ");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.RStrip(input, arguments, context);
Assert.Equal(" Hello World", result.Result.ToStringValue());
}
[Fact]
public void Strip()
{
var input = new StringValue(" Hello World ");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.Strip(input, arguments, context);
Assert.Equal("Hello World", result.Result.ToStringValue());
}
[Fact]
public void StripNewLines()
{
var input = new StringValue(@"
Hello
world
");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.StripNewLines(input, arguments, context);
Assert.Equal("Helloworld", result.Result.ToStringValue());
}
[Fact]
public void NewLineToBr()
{
var input = new StringValue("Hello\nWorld");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.NewLineToBr(input, arguments, context);
Assert.Equal("Hello<br />World", result.Result.ToStringValue());
}
[Fact]
public void Prepend()
{
var input = new StringValue("World");
var arguments = new FilterArguments().Add(new StringValue("Hello "));
var context = new TemplateContext();
var result = StringFilters.Prepend(input, arguments, context);
Assert.Equal("Hello World", result.Result.ToStringValue());
}
[Theory]
[InlineData("a b a a", new object[] { "a " }, "b a a")]
[InlineData("1 1 1 1", new object[] { 1 }, " 1 1 1")]
public void RemoveFirst(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.RemoveFirst(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("a a a a", new object[] { "a" }, " ")]
[InlineData("1 1 1 1", new object[] { 1 }, " ")]
public void Remove(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.Remove(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Fact]
public void RemovesReturnsInputWhenArgumentIsEmpty()
{
var input = new StringValue("abcabc");
var arguments = FilterArguments.Empty;
var context = new TemplateContext();
var result = StringFilters.Remove(input, arguments, context);
Assert.Equal("abcabc", result.Result.ToStringValue());
}
[Theory]
[InlineData("a a b a", new object[] { " a" }, "a a b")]
[InlineData("1 1 1 1", new object[] { 1 }, "1 1 1 ")]
public void RemoveLast(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.RemoveLast(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("a a a a", new object[] { "a", "b" }, "b a a a")]
[InlineData("1 1 1 1", new object[] { 1, 2 }, "2 1 1 1")]
[InlineData("1 1 1 1", new object[] { 2, 3 }, "1 1 1 1")]
[InlineData("1 1 1 1", new object[] { "1", 2 }, "2 1 1 1")]
[InlineData("aa bb cc aa bb cc", new object[] { "cc", "dd" }, "aa bb dd aa bb cc")]
public void ReplaceFirst(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.ReplaceFirst(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("a a a a", new object[] { "a", "b" }, "b b b b")]
[InlineData("1 1 1 1", new object[] { 1, 2 }, "2 2 2 2")]
[InlineData("1 1 1 1", new object[] { 2, 3 }, "1 1 1 1")]
[InlineData("1 1 1 1", new object[] { "1", 2 }, "2 2 2 2")]
[InlineData("aa bb cc aa bb cc", new object[] { "cc", "dd" }, "aa bb dd aa bb dd")]
public void Replace(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.Replace(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("a a a a", new object[] { "a", "b" }, "a a a b")]
[InlineData("1 1 1 1", new object[] { 1, 2 }, "1 1 1 2")]
[InlineData("1 1 1 1", new object[] { 2, 3 }, "1 1 1 1")]
[InlineData("1 1 1 1", new object[] { "1", 2 }, "1 1 1 2")]
[InlineData("aa bb cc aa bb cc", new object[] { "cc", "dd" }, "aa bb cc aa bb dd")]
public void ReplaceLast(string input, object[] arguments, string expected)
{
var filterInput = new StringValue(input);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.ReplaceLast(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("hello", new object[] { 0 }, "h")]
[InlineData("hello", new object[] { 1 }, "e")]
[InlineData("hello", new object[] { 1, 3 }, "ell")]
[InlineData("hello", new object[] { -3, 3 }, "llo")]
[InlineData("hello", new object[] { -3 }, "l")]
[InlineData("abcdefg", new object[] { -3, 2 }, "ef")]
public void Slice(object input, object[] arguments, string expected)
{
var filterInput = FluidValue.Create(input, TemplateOptions.Default);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.Slice(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Theory]
[InlineData("hello", new object[] { 0, 100 }, "hello")]
[InlineData("hello", new object[] { 2, 100 }, "llo")]
[InlineData("hello", new object[] { 100, 100 }, "")]
[InlineData("hello", new object[] { -3, 100 }, "llo")]
[InlineData("hello", new object[] { -5, 200 }, "hello")]
[InlineData("hello", new object[] { -100, 100 }, "")]
[InlineData("hello", new object[] { -100, 200 }, "")]
[InlineData("hello", new object[] { -5, 100 }, "hello")]
[InlineData("hello", new object[] { 0, -100 }, "")]
[InlineData("hello", new object[] { -100, -100 }, "")]
[InlineData("hello", new object[] { 4, 2 }, "o")]
[InlineData("hello", new object[] { 5, 1 }, "")]
public void SliceOutsideBounds(object input, object[] arguments, string expected)
{
var filterInput = FluidValue.Create(input, TemplateOptions.Default);
var filterArguments = arguments.ToFilterArguments();
var context = new TemplateContext();
var result = StringFilters.Slice(filterInput, filterArguments, context);
Assert.Equal(expected, result.Result.ToStringValue());
}
[Fact]
public void Split()
{
var input = new StringValue("a.b.c");
var arguments = new FilterArguments().Add(new StringValue("."));
var context = new TemplateContext();
var result = StringFilters.Split(input, arguments, context);
Assert.Equal(3, result.Result.Enumerate(context).Count());
Assert.Equal(new StringValue("a"), result.Result.Enumerate(context).ElementAt(0));
Assert.Equal(new StringValue("b"), result.Result.Enumerate(context).ElementAt(1));
Assert.Equal(new StringValue("c"), result.Result.Enumerate(context).ElementAt(2));
}
[Fact]
public void SplitWithEmptyString()
{
var input = new StringValue("abc");
var arguments = new FilterArguments().Add(StringValue.Empty);
var context = new TemplateContext();
var result = StringFilters.Split(input, arguments, context);
Assert.Equal(3, result.Result.Enumerate(context).Count());
Assert.Equal(new StringValue("a"), result.Result.Enumerate(context).ElementAt(0));
Assert.Equal(new StringValue("b"), result.Result.Enumerate(context).ElementAt(1));
Assert.Equal(new StringValue("c"), result.Result.Enumerate(context).ElementAt(2));
}
[Theory]
[InlineData("The cat came back the very next day", 13, "The cat ca...")]
[InlineData("Hello", 3, "...")]
[InlineData("Hello", 10, "Hello")]
[InlineData("Hello", 0, "...")]
[InlineData(null, 5, "")]
public void Truncate(string input, int size, string output)
{
var source = new StringValue(input);
var arguments = new FilterArguments().Add(NumberValue.Create(size));
var context = new TemplateContext();
var result = StringFilters.Truncate(source, arguments, context);
Assert.Equal(output, result.Result.ToStringValue());
}
[Theory]
[InlineData("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 18, ", and so on", "ABCDEFG, and so on")]
[InlineData("I'm a little teapot, short and stout.", 15, "", "I'm a little te")]
[InlineData("ABCDEFGHIJKLMNOPQRSTUVWXYZ", 5, ", and so on", ", and so on")]
[InlineData("ABCD EFGH IJKLM NOPQRS TUVWXYZ", 3, "", "ABC")]
[InlineData("ABCD EFGH IJKLM NOPQRS TUVWXYZ", 0, "", "")]
public void TruncateWithCustomEllipsis(string input, int size, string ellipsis, string output)
{
var source = new StringValue(input);
var arguments = new FilterArguments()
.Add(NumberValue.Create(size))
.Add(new StringValue(ellipsis));
var context = new TemplateContext();
var result = StringFilters.Truncate(source, arguments, context);
Assert.Equal(output, result.Result.ToStringValue());
}
[Theory]
[InlineData("one two three", 4, "one two three")]
[InlineData("one two three", 2, "one two...")]
[InlineData("one two three", null, "one two three")]
[InlineData("Two small (13” x 5.5” x 10” high) baskets fit inside one large basket (13” x 16” x 10.5” high) with cover.", 15, "Two small (13” x 5.5” x 10” high) baskets fit inside one large basket (13”...")]
[InlineData("测试测试测试测试", 5, "测试测试测试测试")]
[InlineData("one two\tthree\nfour", 3, "one two three...")]
[InlineData("one two three four", 2, "one two...")]
[InlineData(" one two three four", 2, "one two...")]
[InlineData("one two three four", 0, "one...")]
public void TruncateWords(string input, object size, string output)
{
var options = new TemplateOptions();
var source = new StringValue(input);
var arguments = new FilterArguments()
.Add(FluidValue.Create(size, options));
var context = new TemplateContext();
var result = StringFilters.TruncateWords(source, arguments, context);
Assert.Equal(output, result.Result.ToStringValue());
}
[Theory]
[InlineData("The cat came back the very next day", 4, "--", "The cat came back--")]
[InlineData("The cat came back the very next day", 4, "", "The cat came back")]
[InlineData("The cat came back the very next day", 0, "", "The")]
public void TruncateWordsWithCustomEllipsis(string input, int size, string ellispsis, string output)
{
var source = new StringValue(input);
var arguments = new FilterArguments()
.Add(NumberValue.Create(size))
.Add(new StringValue(ellispsis));
var context = new TemplateContext();
var result = StringFilters.TruncateWords(source, arguments, context);
Assert.Equal(output, result.Result.ToStringValue());
}
[Fact]
public void Upcase()
{
var input = new StringValue("Hello World");
var arguments = new FilterArguments();
var context = new TemplateContext();
var result = StringFilters.Upcase(input, arguments, context);
Assert.Equal("HELLO WORLD", result.Result.ToStringValue());
}
}
}