-
Notifications
You must be signed in to change notification settings - Fork 11.3k
/
Copy pathSupportStrTest.php
executable file
·459 lines (404 loc) · 19.6 KB
/
SupportStrTest.php
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<?php
namespace Illuminate\Tests\Support;
use Illuminate\Support\Str;
use PHPUnit\Framework\TestCase;
use Ramsey\Uuid\UuidInterface;
class SupportStrTest extends TestCase
{
public function testStringCanBeLimitedByWords()
{
$this->assertSame('Taylor...', Str::words('Taylor Otwell', 1));
$this->assertSame('Taylor___', Str::words('Taylor Otwell', 1, '___'));
$this->assertSame('Taylor Otwell', Str::words('Taylor Otwell', 3));
}
public function testStringTrimmedOnlyWhereNecessary()
{
$this->assertSame(' Taylor Otwell ', Str::words(' Taylor Otwell ', 3));
$this->assertSame(' Taylor...', Str::words(' Taylor Otwell ', 1));
}
public function testStringTitle()
{
$this->assertSame('Jefferson Costella', Str::title('jefferson costella'));
$this->assertSame('Jefferson Costella', Str::title('jefFErson coSTella'));
}
public function testStringWithoutWordsDoesntProduceError()
{
$nbsp = chr(0xC2).chr(0xA0);
$this->assertSame(' ', Str::words(' '));
$this->assertEquals($nbsp, Str::words($nbsp));
}
public function testStringAscii()
{
$this->assertSame('@', Str::ascii('@'));
$this->assertSame('u', Str::ascii('ü'));
}
public function testStringAsciiWithSpecificLocale()
{
$this->assertSame('h H sht SHT a A y Y', Str::ascii('х Х щ Щ ъ Ъ ь Ь', 'bg'));
$this->assertSame('ae oe ue AE OE UE', Str::ascii('ä ö ü Ä Ö Ü', 'de'));
}
public function testStartsWith()
{
$this->assertTrue(Str::startsWith('jason', 'jas'));
$this->assertTrue(Str::startsWith('jason', 'jason'));
$this->assertTrue(Str::startsWith('jason', ['jas']));
$this->assertTrue(Str::startsWith('jason', ['day', 'jas']));
$this->assertFalse(Str::startsWith('jason', 'day'));
$this->assertFalse(Str::startsWith('jason', ['day']));
$this->assertFalse(Str::startsWith('jason', ''));
$this->assertFalse(Str::startsWith('7', ' 7'));
$this->assertTrue(Str::startsWith('7a', '7'));
$this->assertTrue(Str::startsWith('7a', 7));
$this->assertTrue(Str::startsWith('7.12a', 7.12));
$this->assertFalse(Str::startsWith('7.12a', 7.13));
$this->assertTrue(Str::startsWith(7.123, '7'));
$this->assertTrue(Str::startsWith(7.123, '7.12'));
$this->assertFalse(Str::startsWith(7.123, '7.13'));
// Test for multibyte string support
$this->assertTrue(Str::startsWith('Jönköping', 'Jö'));
$this->assertTrue(Str::startsWith('Malmö', 'Malmö'));
$this->assertFalse(Str::startsWith('Jönköping', 'Jonko'));
$this->assertFalse(Str::startsWith('Malmö', 'Malmo'));
}
public function testEndsWith()
{
$this->assertTrue(Str::endsWith('jason', 'on'));
$this->assertTrue(Str::endsWith('jason', 'jason'));
$this->assertTrue(Str::endsWith('jason', ['on']));
$this->assertTrue(Str::endsWith('jason', ['no', 'on']));
$this->assertFalse(Str::endsWith('jason', 'no'));
$this->assertFalse(Str::endsWith('jason', ['no']));
$this->assertFalse(Str::endsWith('jason', ''));
$this->assertFalse(Str::endsWith('7', ' 7'));
$this->assertTrue(Str::endsWith('a7', '7'));
$this->assertTrue(Str::endsWith('a7', 7));
$this->assertTrue(Str::endsWith('a7.12', 7.12));
$this->assertFalse(Str::endsWith('a7.12', 7.13));
$this->assertTrue(Str::endsWith(0.27, '7'));
$this->assertTrue(Str::endsWith(0.27, '0.27'));
$this->assertFalse(Str::endsWith(0.27, '8'));
// Test for multibyte string support
$this->assertTrue(Str::endsWith('Jönköping', 'öping'));
$this->assertTrue(Str::endsWith('Malmö', 'mö'));
$this->assertFalse(Str::endsWith('Jönköping', 'oping'));
$this->assertFalse(Str::endsWith('Malmö', 'mo'));
}
public function testStrBefore()
{
$this->assertSame('han', Str::before('hannah', 'nah'));
$this->assertSame('ha', Str::before('hannah', 'n'));
$this->assertSame('ééé ', Str::before('ééé hannah', 'han'));
$this->assertSame('hannah', Str::before('hannah', 'xxxx'));
$this->assertSame('hannah', Str::before('hannah', ''));
$this->assertSame('han', Str::before('han0nah', '0'));
$this->assertSame('han', Str::before('han0nah', 0));
$this->assertSame('han', Str::before('han2nah', 2));
}
public function testStrBeforeLast()
{
$this->assertSame('yve', Str::beforeLast('yvette', 'tte'));
$this->assertSame('yvet', Str::beforeLast('yvette', 't'));
$this->assertSame('ééé ', Str::beforeLast('ééé yvette', 'yve'));
$this->assertSame('', Str::beforeLast('yvette', 'yve'));
$this->assertSame('yvette', Str::beforeLast('yvette', 'xxxx'));
$this->assertSame('yvette', Str::beforeLast('yvette', ''));
$this->assertSame('yv0et', Str::beforeLast('yv0et0te', '0'));
$this->assertSame('yv0et', Str::beforeLast('yv0et0te', 0));
$this->assertSame('yv2et', Str::beforeLast('yv2et2te', 2));
}
public function testStrAfter()
{
$this->assertSame('nah', Str::after('hannah', 'han'));
$this->assertSame('nah', Str::after('hannah', 'n'));
$this->assertSame('nah', Str::after('ééé hannah', 'han'));
$this->assertSame('hannah', Str::after('hannah', 'xxxx'));
$this->assertSame('hannah', Str::after('hannah', ''));
$this->assertSame('nah', Str::after('han0nah', '0'));
$this->assertSame('nah', Str::after('han0nah', 0));
$this->assertSame('nah', Str::after('han2nah', 2));
}
public function testStrAfterLast()
{
$this->assertSame('tte', Str::afterLast('yvette', 'yve'));
$this->assertSame('e', Str::afterLast('yvette', 't'));
$this->assertSame('e', Str::afterLast('ééé yvette', 't'));
$this->assertSame('', Str::afterLast('yvette', 'tte'));
$this->assertSame('yvette', Str::afterLast('yvette', 'xxxx'));
$this->assertSame('yvette', Str::afterLast('yvette', ''));
$this->assertSame('te', Str::afterLast('yv0et0te', '0'));
$this->assertSame('te', Str::afterLast('yv0et0te', 0));
$this->assertSame('te', Str::afterLast('yv2et2te', 2));
$this->assertSame('foo', Str::afterLast('----foo', '---'));
}
public function testStrContains()
{
$this->assertTrue(Str::contains('taylor', 'ylo'));
$this->assertTrue(Str::contains('taylor', 'taylor'));
$this->assertTrue(Str::contains('taylor', ['ylo']));
$this->assertTrue(Str::contains('taylor', ['xxx', 'ylo']));
$this->assertTrue(Str::contains(new StringableObjectStub('123'), '1'));
$this->assertFalse(Str::contains('taylor', 'xxx'));
$this->assertFalse(Str::contains('taylor', ['xxx']));
$this->assertFalse(Str::contains('taylor', ''));
}
public function testStrContainsAll()
{
$this->assertTrue(Str::containsAll('taylor otwell', ['taylor', 'otwell']));
$this->assertTrue(Str::containsAll('taylor otwell', ['taylor']));
$this->assertFalse(Str::containsAll('taylor otwell', ['taylor', 'xxx']));
}
public function testParseCallback()
{
$this->assertEquals(['Class', 'method'], Str::parseCallback('Class@method', 'foo'));
$this->assertEquals(['Class', 'foo'], Str::parseCallback('Class', 'foo'));
$this->assertEquals(['Class', null], Str::parseCallback('Class'));
}
public function testSlug()
{
$this->assertSame('hello-world', Str::slug('hello world'));
$this->assertSame('hello-world', Str::slug('hello-world'));
$this->assertSame('hello-world', Str::slug('hello_world'));
$this->assertSame('hello_world', Str::slug('hello_world', '_'));
$this->assertSame('user-at-host', Str::slug('user@host'));
$this->assertSame('سلام-دنیا', Str::slug('سلام دنیا', '-', null));
$this->assertSame('sometext', Str::slug('some text', ''));
$this->assertSame('', Str::slug('', ''));
$this->assertSame('', Str::slug(''));
}
public function testStrStart()
{
$this->assertSame('/test/string', Str::start('test/string', '/'));
$this->assertSame('/test/string', Str::start('/test/string', '/'));
$this->assertSame('/test/string', Str::start('//test/string', '/'));
}
public function testFinish()
{
$this->assertSame('abbc', Str::finish('ab', 'bc'));
$this->assertSame('abbc', Str::finish('abbcbc', 'bc'));
$this->assertSame('abcbbc', Str::finish('abcbbcbc', 'bc'));
}
public function testIs()
{
$this->assertTrue(Str::is('/', '/'));
$this->assertFalse(Str::is('/', ' /'));
$this->assertFalse(Str::is('/', '/a'));
$this->assertTrue(Str::is('foo/*', 'foo/bar/baz'));
$this->assertTrue(Str::is('*@*', 'App\Class@method'));
$this->assertTrue(Str::is('*@*', 'app\Class@'));
$this->assertTrue(Str::is('*@*', '@method'));
// is case sensitive
$this->assertFalse(Str::is('*BAZ*', 'foo/bar/baz'));
$this->assertFalse(Str::is('*FOO*', 'foo/bar/baz'));
$this->assertFalse(Str::is('A', 'a'));
// Accepts array of patterns
$this->assertTrue(Str::is(['a*', 'b*'], 'a/'));
$this->assertTrue(Str::is(['a*', 'b*'], 'b/'));
$this->assertFalse(Str::is(['a*', 'b*'], 'f/'));
// numeric values and patterns
$this->assertFalse(Str::is(['a*', 'b*'], 123));
$this->assertTrue(Str::is(['*2*', 'b*'], 11211));
$this->assertTrue(Str::is('*/foo', 'blah/baz/foo'));
$valueObject = new StringableObjectStub('foo/bar/baz');
$patternObject = new StringableObjectStub('foo/*');
$this->assertTrue(Str::is('foo/bar/baz', $valueObject));
$this->assertTrue(Str::is($patternObject, $valueObject));
//empty patterns
$this->assertFalse(Str::is([], 'test'));
}
/**
* @dataProvider validUuidList
*/
public function testIsUuidWithValidUuid($uuid)
{
$this->assertTrue(Str::isUuid($uuid));
}
/**
* @dataProvider invalidUuidList
*/
public function testIsUuidWithInvalidUuid($uuid)
{
$this->assertFalse(Str::isUuid($uuid));
}
public function testKebab()
{
$this->assertSame('laravel-php-framework', Str::kebab('LaravelPhpFramework'));
}
public function testLower()
{
$this->assertSame('foo bar baz', Str::lower('FOO BAR BAZ'));
$this->assertSame('foo bar baz', Str::lower('fOo Bar bAz'));
}
public function testUpper()
{
$this->assertSame('FOO BAR BAZ', Str::upper('foo bar baz'));
$this->assertSame('FOO BAR BAZ', Str::upper('foO bAr BaZ'));
}
public function testLimit()
{
$this->assertSame('Laravel is...', Str::limit('Laravel is a free, open source PHP web application framework.', 10));
$this->assertSame('这是一...', Str::limit('这是一段中文', 6));
$string = 'The PHP framework for web artisans.';
$this->assertSame('The PHP...', Str::limit($string, 7));
$this->assertSame('The PHP', Str::limit($string, 7, ''));
$this->assertSame('The PHP framework for web artisans.', Str::limit($string, 100));
$nonAsciiString = '这是一段中文';
$this->assertSame('这是一...', Str::limit($nonAsciiString, 6));
$this->assertSame('这是一', Str::limit($nonAsciiString, 6, ''));
}
public function testLength()
{
$this->assertEquals(11, Str::length('foo bar baz'));
$this->assertEquals(11, Str::length('foo bar baz', 'UTF-8'));
}
public function testRandom()
{
$this->assertEquals(16, strlen(Str::random()));
$randomInteger = random_int(1, 100);
$this->assertEquals($randomInteger, strlen(Str::random($randomInteger)));
$this->assertIsString(Str::random());
}
public function testReplaceArray()
{
$this->assertSame('foo/bar/baz', Str::replaceArray('?', ['foo', 'bar', 'baz'], '?/?/?'));
$this->assertSame('foo/bar/baz/?', Str::replaceArray('?', ['foo', 'bar', 'baz'], '?/?/?/?'));
$this->assertSame('foo/bar', Str::replaceArray('?', ['foo', 'bar', 'baz'], '?/?'));
$this->assertSame('?/?/?', Str::replaceArray('x', ['foo', 'bar', 'baz'], '?/?/?'));
// Ensure recursive replacements are avoided
$this->assertSame('foo?/bar/baz', Str::replaceArray('?', ['foo?', 'bar', 'baz'], '?/?/?'));
// Test for associative array support
$this->assertSame('foo/bar', Str::replaceArray('?', [1 => 'foo', 2 => 'bar'], '?/?'));
$this->assertSame('foo/bar', Str::replaceArray('?', ['x' => 'foo', 'y' => 'bar'], '?/?'));
}
public function testReplaceFirst()
{
$this->assertSame('fooqux foobar', Str::replaceFirst('bar', 'qux', 'foobar foobar'));
$this->assertSame('foo/qux? foo/bar?', Str::replaceFirst('bar?', 'qux?', 'foo/bar? foo/bar?'));
$this->assertSame('foo foobar', Str::replaceFirst('bar', '', 'foobar foobar'));
$this->assertSame('foobar foobar', Str::replaceFirst('xxx', 'yyy', 'foobar foobar'));
$this->assertSame('foobar foobar', Str::replaceFirst('', 'yyy', 'foobar foobar'));
// Test for multibyte string support
$this->assertSame('Jxxxnköping Malmö', Str::replaceFirst('ö', 'xxx', 'Jönköping Malmö'));
$this->assertSame('Jönköping Malmö', Str::replaceFirst('', 'yyy', 'Jönköping Malmö'));
}
public function testReplaceLast()
{
$this->assertSame('foobar fooqux', Str::replaceLast('bar', 'qux', 'foobar foobar'));
$this->assertSame('foo/bar? foo/qux?', Str::replaceLast('bar?', 'qux?', 'foo/bar? foo/bar?'));
$this->assertSame('foobar foo', Str::replaceLast('bar', '', 'foobar foobar'));
$this->assertSame('foobar foobar', Str::replaceLast('xxx', 'yyy', 'foobar foobar'));
$this->assertSame('foobar foobar', Str::replaceLast('', 'yyy', 'foobar foobar'));
// Test for multibyte string support
$this->assertSame('Malmö Jönkxxxping', Str::replaceLast('ö', 'xxx', 'Malmö Jönköping'));
$this->assertSame('Malmö Jönköping', Str::replaceLast('', 'yyy', 'Malmö Jönköping'));
}
public function testSnake()
{
$this->assertSame('laravel_p_h_p_framework', Str::snake('LaravelPHPFramework'));
$this->assertSame('laravel_php_framework', Str::snake('LaravelPhpFramework'));
$this->assertSame('laravel php framework', Str::snake('LaravelPhpFramework', ' '));
$this->assertSame('laravel_php_framework', Str::snake('Laravel Php Framework'));
$this->assertSame('laravel_php_framework', Str::snake('Laravel Php Framework '));
// ensure cache keys don't overlap
$this->assertSame('laravel__php__framework', Str::snake('LaravelPhpFramework', '__'));
$this->assertSame('laravel_php_framework_', Str::snake('LaravelPhpFramework_', '_'));
$this->assertSame('laravel_php_framework', Str::snake('laravel php Framework'));
$this->assertSame('laravel_php_frame_work', Str::snake('laravel php FrameWork'));
// prevent breaking changes
$this->assertSame('foo-bar', Str::snake('foo-bar'));
$this->assertSame('foo-_bar', Str::snake('Foo-Bar'));
$this->assertSame('foo__bar', Str::snake('Foo_Bar'));
$this->assertSame('żółtałódka', Str::snake('ŻółtaŁódka'));
}
public function testStudly()
{
$this->assertSame('LaravelPHPFramework', Str::studly('laravel_p_h_p_framework'));
$this->assertSame('LaravelPhpFramework', Str::studly('laravel_php_framework'));
$this->assertSame('LaravelPhPFramework', Str::studly('laravel-phP-framework'));
$this->assertSame('LaravelPhpFramework', Str::studly('laravel -_- php -_- framework '));
$this->assertSame('FooBar', Str::studly('fooBar'));
$this->assertSame('FooBar', Str::studly('foo_bar'));
$this->assertSame('FooBar', Str::studly('foo_bar')); // test cache
$this->assertSame('FooBarBaz', Str::studly('foo-barBaz'));
$this->assertSame('FooBarBaz', Str::studly('foo-bar_baz'));
}
public function testCamel()
{
$this->assertSame('laravelPHPFramework', Str::camel('Laravel_p_h_p_framework'));
$this->assertSame('laravelPhpFramework', Str::camel('Laravel_php_framework'));
$this->assertSame('laravelPhPFramework', Str::camel('Laravel-phP-framework'));
$this->assertSame('laravelPhpFramework', Str::camel('Laravel -_- php -_- framework '));
$this->assertSame('fooBar', Str::camel('FooBar'));
$this->assertSame('fooBar', Str::camel('foo_bar'));
$this->assertSame('fooBar', Str::camel('foo_bar')); // test cache
$this->assertSame('fooBarBaz', Str::camel('Foo-barBaz'));
$this->assertSame('fooBarBaz', Str::camel('foo-bar_baz'));
}
public function testSubstr()
{
$this->assertSame('Ё', Str::substr('БГДЖИЛЁ', -1));
$this->assertSame('ЛЁ', Str::substr('БГДЖИЛЁ', -2));
$this->assertSame('И', Str::substr('БГДЖИЛЁ', -3, 1));
$this->assertSame('ДЖИЛ', Str::substr('БГДЖИЛЁ', 2, -1));
$this->assertEmpty(Str::substr('БГДЖИЛЁ', 4, -4));
$this->assertSame('ИЛ', Str::substr('БГДЖИЛЁ', -3, -1));
$this->assertSame('ГДЖИЛЁ', Str::substr('БГДЖИЛЁ', 1));
$this->assertSame('ГДЖ', Str::substr('БГДЖИЛЁ', 1, 3));
$this->assertSame('БГДЖ', Str::substr('БГДЖИЛЁ', 0, 4));
$this->assertSame('Ё', Str::substr('БГДЖИЛЁ', -1, 1));
$this->assertEmpty(Str::substr('Б', 2));
}
public function testUcfirst()
{
$this->assertSame('Laravel', Str::ucfirst('laravel'));
$this->assertSame('Laravel framework', Str::ucfirst('laravel framework'));
$this->assertSame('Мама', Str::ucfirst('мама'));
$this->assertSame('Мама мыла раму', Str::ucfirst('мама мыла раму'));
}
public function testUuid()
{
$this->assertInstanceOf(UuidInterface::class, Str::uuid());
$this->assertInstanceOf(UuidInterface::class, Str::orderedUuid());
}
public function validUuidList()
{
return [
['a0a2a2d2-0b87-4a18-83f2-2529882be2de'],
['145a1e72-d11d-11e8-a8d5-f2801f1b9fd1'],
['00000000-0000-0000-0000-000000000000'],
['e60d3f48-95d7-4d8d-aad0-856f29a27da2'],
['ff6f8cb0-c57d-11e1-9b21-0800200c9a66'],
['ff6f8cb0-c57d-21e1-9b21-0800200c9a66'],
['ff6f8cb0-c57d-31e1-9b21-0800200c9a66'],
['ff6f8cb0-c57d-41e1-9b21-0800200c9a66'],
['ff6f8cb0-c57d-51e1-9b21-0800200c9a66'],
['FF6F8CB0-C57D-11E1-9B21-0800200C9A66'],
];
}
public function invalidUuidList()
{
return [
['not a valid uuid so we can test this'],
['zf6f8cb0-c57d-11e1-9b21-0800200c9a66'],
['145a1e72-d11d-11e8-a8d5-f2801f1b9fd1'.PHP_EOL],
['145a1e72-d11d-11e8-a8d5-f2801f1b9fd1 '],
[' 145a1e72-d11d-11e8-a8d5-f2801f1b9fd1'],
['145a1e72-d11d-11e8-a8d5-f2z01f1b9fd1'],
['3f6f8cb0-c57d-11e1-9b21-0800200c9a6'],
['af6f8cb-c57d-11e1-9b21-0800200c9a66'],
['af6f8cb0c57d11e19b210800200c9a66'],
['ff6f8cb0-c57da-51e1-9b21-0800200c9a66'],
];
}
}
class StringableObjectStub
{
private $value;
public function __construct($value)
{
$this->value = $value;
}
public function __toString()
{
return $this->value;
}
}