1<?php 2 3/* 4 * This file is part of Twig. 5 * 6 * (c) Fabien Potencier 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12/** 13 * @author Robin van der Vleuten <robinvdvleuten@gmail.com> 14 */ 15class Twig_Tests_Extension_DateTest extends \PHPUnit\Framework\TestCase 16{ 17 /** 18 * @var TwigEnvironment 19 */ 20 private $env; 21 22 public function setUp() 23 { 24 $this->env = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock()); 25 } 26 27 /** 28 * @dataProvider getDiffTestData() 29 */ 30 public function testDiffWithStringsFromGivenNow($expected, $translated, $date, $now) 31 { 32 $extension = new Twig_Extensions_Extension_Date(); 33 $this->assertEquals($expected, $extension->diff($this->env, $date, $now)); 34 } 35 36 public function testDiffWithStringsFromNow() 37 { 38 $extension = new Twig_Extensions_Extension_Date(); 39 $this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, '24-07-2014')); 40 } 41 42 /** 43 * @dataProvider getDiffTestData() 44 */ 45 public function testDiffWithDateTimeFromGivenNow($expected, $translated, $date, $now) 46 { 47 $extension = new Twig_Extensions_Extension_Date(); 48 $this->assertEquals($expected, $extension->diff($this->env, new DateTime($date), new DateTime($now))); 49 } 50 51 public function testDiffWithDateTimeFromNow() 52 { 53 $extension = new Twig_Extensions_Extension_Date(); 54 $this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, new DateTime('24-07-2014'))); 55 } 56 57 /** 58 * @dataProvider getDiffTestData() 59 */ 60 public function testDiffCanReturnTranslatableString($expected, $translated, $date, $now) 61 { 62 $translator = $this->getMockBuilder('Symfony\Component\Translation\TranslatorInterface')->getMock(); 63 $translator 64 ->expects($this->once()) 65 ->method('transChoice') 66 ->with($translated); 67 68 $extension = new Twig_Extensions_Extension_Date($translator); 69 $extension->diff($this->env, $date, $now); 70 } 71 72 public function getDiffTestData() 73 { 74 return array_merge($this->getDiffAgoTestData(), $this->getDiffInTestData()); 75 } 76 77 public function getDiffAgoTestData() 78 { 79 return array( 80 array('1 second ago', 'diff.ago.second', '24-07-2014 17:28:01', '24-07-2014 17:28:02'), 81 array('5 seconds ago', 'diff.ago.second', '24-07-2014 17:28:01', '24-07-2014 17:28:06'), 82 array('1 minute ago', 'diff.ago.minute', '24-07-2014 17:28:01', '24-07-2014 17:29:01'), 83 array('5 minutes ago', 'diff.ago.minute', '24-07-2014 17:28:01', '24-07-2014 17:33:03'), 84 array('1 hour ago', 'diff.ago.hour', '24-07-2014 17:28:01', '24-07-2014 18:29:01'), 85 array('9 hours ago', 'diff.ago.hour', '24-07-2014 17:28:01', '25-07-2014 02:33:03'), 86 array('1 day ago', 'diff.ago.day', '23-07-2014', '24-07-2014'), 87 array('5 days ago', 'diff.ago.day', '19-07-2014', '24-07-2014'), 88 array('1 month ago', 'diff.ago.month', '23-07-2014', '24-08-2014'), 89 array('6 months ago', 'diff.ago.month', '19-07-2014', '24-01-2015'), 90 array('1 year ago', 'diff.ago.year', '19-07-2014', '20-08-2015'), 91 array('3 years ago', 'diff.ago.year', '19-07-2014', '20-08-2017'), 92 ); 93 } 94 95 public function getDiffInTestData() 96 { 97 return array( 98 array('in 1 second', 'diff.in.second', '24-07-2014 17:28:02', '24-07-2014 17:28:01'), 99 array('in 5 seconds', 'diff.in.second', '24-07-2014 17:28:06', '24-07-2014 17:28:01'), 100 array('in 1 minute', 'diff.in.minute', '24-07-2014 17:29:01', '24-07-2014 17:28:01'), 101 array('in 5 minutes', 'diff.in.minute', '24-07-2014 17:33:03', '24-07-2014 17:28:01'), 102 array('in 1 hour', 'diff.in.hour', '24-07-2014 18:29:01', '24-07-2014 17:28:01'), 103 array('in 9 hours', 'diff.in.hour', '25-07-2014 02:33:03', '24-07-2014 17:28:01'), 104 array('in 1 day', 'diff.in.day', '24-07-2014', '23-07-2014'), 105 array('in 5 days', 'diff.in.day', '24-07-2014', '19-07-2014'), 106 array('in 1 month', 'diff.in.month', '24-08-2014', '23-07-2014'), 107 array('in 6 months', 'diff.in.month', '24-01-2015', '19-07-2014'), 108 array('in 1 year', 'diff.in.year', '20-08-2015', '19-07-2014'), 109 array('in 3 years', 'diff.in.year', '20-08-2017', '19-07-2014'), 110 ); 111 } 112} 113