Edit file File name : DefaultRoundingTest.php Content :<?php /* * This file is part of the Kimai time-tracking app. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Tests\Timesheet\Rounding; use App\Entity\Timesheet; use App\Timesheet\Rounding\DefaultRounding; use PHPUnit\Framework\TestCase; /** * @covers \App\Timesheet\Rounding\DefaultRounding */ class DefaultRoundingTest extends TestCase { /** * @dataProvider getTestData */ public function testCalculate($roundBegin, $roundEnd, $roundDuration, \DateTime $start, \DateTime $end, \DateTime $expectedStart, \DateTime $expectedEnd, $expectedDuration) { $record = new Timesheet(); $record->setBegin($start); $record->setEnd($end); $this->assertEquals(0, $record->getDuration()); $record->setDuration($record->getEnd()->getTimestamp() - $record->getBegin()->getTimestamp()); $sut = new DefaultRounding(); self::assertEquals('default', $sut->getId()); $sut->roundBegin($record, $roundBegin); $sut->roundEnd($record, $roundEnd); $record->setDuration($record->getEnd()->getTimestamp() - $record->getBegin()->getTimestamp()); $sut->roundDuration($record, $roundDuration); $this->assertEquals($expectedStart->getTimestamp(), $record->getBegin()->getTimestamp()); $this->assertEquals($expectedEnd->getTimestamp(), $record->getEnd()->getTimestamp()); $this->assertEquals($expectedDuration, $record->getDuration()); } public function getTestData() { $start = new \DateTime(); $start->setTime(12, 0, 0); return [ [ 0, 0, 0, $start, (clone $start)->setTimestamp($start->getTimestamp() + 1837), $start, (clone $start)->setTimestamp($start->getTimestamp() + 1837), 1837 ], [ 15, 15, 0, (clone $start)->setTime(12, 17, 35), (clone $start)->setTime(13, 32, 52), (clone $start)->setTime(12, 15, 00), (clone $start)->setTime(13, 45, 00), 5400 ], [ 0, 0, 0, (clone $start)->setTime(12, 17, 35), (clone $start)->setTime(13, 32, 52), (clone $start)->setTime(12, 17, 35), (clone $start)->setTime(13, 32, 52), 4517 ], [ 1, 1, 0, (clone $start)->setTime(12, 17, 35), (clone $start)->setTime(13, 32, 52), (clone $start)->setTime(12, 17, 00), (clone $start)->setTime(13, 33, 00), 4560 ], [ 0, 0, 30, (clone $start)->setTime(12, 10, 51), (clone $start)->setTime(14, 40, 52), (clone $start)->setTime(12, 10, 51), (clone $start)->setTime(14, 40, 52), 10800 ], [ 0, 1, 30, (clone $start)->setTime(12, 27, 35), // 12:15 (clone $start)->setTime(14, 32, 52), // 14:33 => 2:18 => 2:30 (clone $start)->setTime(12, 27, 35), (clone $start)->setTime(14, 33, 00), 9000 ], [ 15, 0, 30, (clone $start)->setTime(12, 27, 35), // 12:15 (clone $start)->setTime(14, 32, 52), // 14:33 => 2:18 (second duration will not be rounded) (clone $start)->setTime(12, 15, 00), // 12:15 (clone $start)->setTime(14, 32, 52), // 14:33 => 2:18 (second duration will not be rounded) 9000 ], [ 0, 0, 1, (clone $start)->setTime(12, 27, 35), // no diff, to test ... (clone $start)->setTime(12, 27, 35), // ... that no rounding is applied (clone $start)->setTime(12, 27, 35), // no diff, to test ... (clone $start)->setTime(12, 27, 35), // ... that no rounding is applied 0 ], [ 1, 1, 1, (clone $start)->setTime(12, 27, 00), // no diff, to test ... (clone $start)->setTime(12, 27, 00), // ... that no rounding is applied (clone $start)->setTime(12, 27, 00), // no diff, to test ... (clone $start)->setTime(12, 27, 00), // ... that no rounding is applied 0 ], [ 0, 0, 0, (clone $start)->setTime(12, 27, 35), // no diff, to test ... (clone $start)->setTime(12, 27, 35), // ... that no rounding is applied (clone $start)->setTime(12, 27, 35), // no diff, to test ... (clone $start)->setTime(12, 27, 35), // ... that no rounding is applied 0 ], ]; } } Save