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
|
<?php
namespace Illuminate\Tests\Support;
use Illuminate\Support\Str;
use PHPUnit\Framework\TestCase;
class SupportPluralizerTest extends TestCase
{
public function testBasicSingular()
{
$this->assertSame('child', Str::singular('children'));
}
public function testBasicPlural()
{
$this->assertSame('children', Str::plural('child'));
$this->assertSame('cod', Str::plural('cod'));
}
public function testCaseSensitiveSingularUsage()
{
$this->assertSame('Child', Str::singular('Children'));
$this->assertSame('CHILD', Str::singular('CHILDREN'));
$this->assertSame('Test', Str::singular('Tests'));
}
public function testCaseSensitiveSingularPlural()
{
$this->assertSame('Children', Str::plural('Child'));
$this->assertSame('CHILDREN', Str::plural('CHILD'));
$this->assertSame('Tests', Str::plural('Test'));
$this->assertSame('children', Str::plural('cHiLd'));
}
public function testIfEndOfWordPlural()
{
$this->assertSame('VortexFields', Str::plural('VortexField'));
$this->assertSame('MatrixFields', Str::plural('MatrixField'));
$this->assertSame('IndexFields', Str::plural('IndexField'));
$this->assertSame('VertexFields', Str::plural('VertexField'));
// This is expected behavior, use "Str::pluralStudly" instead.
$this->assertSame('RealHumen', Str::plural('RealHuman'));
}
public function testPluralWithNegativeCount()
{
$this->assertSame('test', Str::plural('test', 1));
$this->assertSame('tests', Str::plural('test', 2));
$this->assertSame('test', Str::plural('test', -1));
$this->assertSame('tests', Str::plural('test', -2));
}
public function testPluralStudly()
{
$this->assertPluralStudly('RealHumans', 'RealHuman');
$this->assertPluralStudly('Models', 'Model');
$this->assertPluralStudly('VortexFields', 'VortexField');
$this->assertPluralStudly('MultipleWordsInOneStrings', 'MultipleWordsInOneString');
}
public function testPluralStudlyWithCount()
{
$this->assertPluralStudly('RealHuman', 'RealHuman', 1);
$this->assertPluralStudly('RealHumans', 'RealHuman', 2);
$this->assertPluralStudly('RealHuman', 'RealHuman', -1);
$this->assertPluralStudly('RealHumans', 'RealHuman', -2);
}
private function assertPluralStudly($expected, $value, $count = 2)
{
$this->assertSame($expected, Str::pluralStudly($value, $count));
}
}
|