This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__.'/../../../../lib/Twig/Extensions/Extension/Array.php';
class Twig_Tests_Extension_ArrayTest extends \PHPUnit\Framework\TestCase
{
/**
* @dataProvider getShuffleFilterTestData
*/
public function testShuffleFilter($data, $expectedElements)
{
foreach ($expectedElements as $element) {
$this->assertTrue(in_array($element, twig_shuffle_filter($data), true)); // assertContains() would not consider the type
}
}
public function testShuffleFilterOnEmptyArray()
{
$this->assertEquals(array(), twig_shuffle_filter(array()));
}
public function getShuffleFilterTestData()
{
return array(
array(
array(1, 2, 3),
array(1, 2, 3),
),
array(
array('a' => 'apple', 'b' => 'orange', 'c' => 'citrus'),
array('apple', 'orange', 'citrus'),
),
array(
new ArrayObject(array('apple', 'orange', 'citrus')),
array('apple', 'orange', 'citrus'),
),
);
}
}

View File

@@ -0,0 +1,112 @@
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* @author Robin van der Vleuten <robinvdvleuten@gmail.com>
*/
class Twig_Tests_Extension_DateTest extends \PHPUnit\Framework\TestCase
{
/**
* @var TwigEnvironment
*/
private $env;
public function setUp()
{
$this->env = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock());
}
/**
* @dataProvider getDiffTestData()
*/
public function testDiffWithStringsFromGivenNow($expected, $translated, $date, $now)
{
$extension = new Twig_Extensions_Extension_Date();
$this->assertEquals($expected, $extension->diff($this->env, $date, $now));
}
public function testDiffWithStringsFromNow()
{
$extension = new Twig_Extensions_Extension_Date();
$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, '24-07-2014'));
}
/**
* @dataProvider getDiffTestData()
*/
public function testDiffWithDateTimeFromGivenNow($expected, $translated, $date, $now)
{
$extension = new Twig_Extensions_Extension_Date();
$this->assertEquals($expected, $extension->diff($this->env, new DateTime($date), new DateTime($now)));
}
public function testDiffWithDateTimeFromNow()
{
$extension = new Twig_Extensions_Extension_Date();
$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, new DateTime('24-07-2014')));
}
/**
* @dataProvider getDiffTestData()
*/
public function testDiffCanReturnTranslatableString($expected, $translated, $date, $now)
{
$translator = $this->getMockBuilder('Symfony\Component\Translation\TranslatorInterface')->getMock();
$translator
->expects($this->once())
->method('transChoice')
->with($translated);
$extension = new Twig_Extensions_Extension_Date($translator);
$extension->diff($this->env, $date, $now);
}
public function getDiffTestData()
{
return array_merge($this->getDiffAgoTestData(), $this->getDiffInTestData());
}
public function getDiffAgoTestData()
{
return array(
array('1 second ago', 'diff.ago.second', '24-07-2014 17:28:01', '24-07-2014 17:28:02'),
array('5 seconds ago', 'diff.ago.second', '24-07-2014 17:28:01', '24-07-2014 17:28:06'),
array('1 minute ago', 'diff.ago.minute', '24-07-2014 17:28:01', '24-07-2014 17:29:01'),
array('5 minutes ago', 'diff.ago.minute', '24-07-2014 17:28:01', '24-07-2014 17:33:03'),
array('1 hour ago', 'diff.ago.hour', '24-07-2014 17:28:01', '24-07-2014 18:29:01'),
array('9 hours ago', 'diff.ago.hour', '24-07-2014 17:28:01', '25-07-2014 02:33:03'),
array('1 day ago', 'diff.ago.day', '23-07-2014', '24-07-2014'),
array('5 days ago', 'diff.ago.day', '19-07-2014', '24-07-2014'),
array('1 month ago', 'diff.ago.month', '23-07-2014', '24-08-2014'),
array('6 months ago', 'diff.ago.month', '19-07-2014', '24-01-2015'),
array('1 year ago', 'diff.ago.year', '19-07-2014', '20-08-2015'),
array('3 years ago', 'diff.ago.year', '19-07-2014', '20-08-2017'),
);
}
public function getDiffInTestData()
{
return array(
array('in 1 second', 'diff.in.second', '24-07-2014 17:28:02', '24-07-2014 17:28:01'),
array('in 5 seconds', 'diff.in.second', '24-07-2014 17:28:06', '24-07-2014 17:28:01'),
array('in 1 minute', 'diff.in.minute', '24-07-2014 17:29:01', '24-07-2014 17:28:01'),
array('in 5 minutes', 'diff.in.minute', '24-07-2014 17:33:03', '24-07-2014 17:28:01'),
array('in 1 hour', 'diff.in.hour', '24-07-2014 18:29:01', '24-07-2014 17:28:01'),
array('in 9 hours', 'diff.in.hour', '25-07-2014 02:33:03', '24-07-2014 17:28:01'),
array('in 1 day', 'diff.in.day', '24-07-2014', '23-07-2014'),
array('in 5 days', 'diff.in.day', '24-07-2014', '19-07-2014'),
array('in 1 month', 'diff.in.month', '24-08-2014', '23-07-2014'),
array('in 6 months', 'diff.in.month', '24-01-2015', '19-07-2014'),
array('in 1 year', 'diff.in.year', '20-08-2015', '19-07-2014'),
array('in 3 years', 'diff.in.year', '20-08-2017', '19-07-2014'),
);
}
}

View File

@@ -0,0 +1,37 @@
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class Twig_Tests_Extension_IntlTest extends \PHPUnit\Framework\TestCase
{
/**
* @requires extension intl
* @requires PHP 5.5
*/
public function testLocalizedDateFilterWithDateTimeZone()
{
class_exists('Twig_Extensions_Extension_Intl');
$env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
$date = twig_localized_date_filter($env, new DateTime('2015-01-01T00:00:00', new DateTimeZone('UTC')), 'short', 'long', 'en', '+01:00');
$this->assertEquals('1/1/15 1:00:00 AM GMT+01:00', $date);
}
/**
* @requires extension intl
* @requires PHP 5.5
*/
public function testLocalizedDateFilterWithDateTimeZoneZ()
{
class_exists('Twig_Extensions_Extension_Intl');
$env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
$date = twig_localized_date_filter($env, new DateTime('2017-11-19T00:00:00Z'), 'short', 'long', 'fr', 'Z');
$this->assertEquals('19/11/2017 00:00:00 UTC', $date);
}
}

View File

@@ -0,0 +1,49 @@
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once __DIR__.'/../../../../lib/Twig/Extensions/Extension/Text.php';
class Twig_Tests_Extension_TextTest extends \PHPUnit\Framework\TestCase
{
/** @var TwigEnvironment */
private $env;
public function setUp()
{
$this->env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
$this->env
->expects($this->any())
->method('getCharset')
->will($this->returnValue('utf-8'))
;
}
/**
* @dataProvider getTruncateTestData
*/
public function testTruncate($input, $length, $preserve, $separator, $expectedOutput)
{
$output = twig_truncate_filter($this->env, $input, $length, $preserve, $separator);
$this->assertEquals($expectedOutput, $output);
}
public function getTruncateTestData()
{
return array(
array('This is a very long sentence.', 2, false, '...', 'Th...'),
array('This is a very long sentence.', 6, false, '...', 'This i...'),
array('This is a very long sentence.', 2, true, '...', 'This...'),
array('This is a very long sentence.', 2, true, '[...]', 'This[...]'),
array('This is a very long sentence.', 23, false, '...', 'This is a very long sen...'),
array('This is a very long sentence.', 23, true, '...', 'This is a very long sentence.'),
);
}
}