* deactivate deprecated auto-mapping * use native month-picker with fallback on old browser * bump dependencies to new major versions * replace deprecated ARRAY column type with JSON * named arguments * nullable arguments * native lazy ghosts * update routes to use php config * disable PHP < 8.4 * use static RTL configuration * new qr code package * clear out env file * recipe updates * fix deprecations * preset new env variable if not existing * bump maria db version examples * remove deprecated api-token support * fix validator deprecations * remove timesheet category column * fix broken validator autoconfiguration * stabilize tests * fix migration syntax compatibility * fix doctrine deprecation * fix datetime format * remove constructor dependency * only include visible preferences in invoice templates * fix test container dependency * removed ProjectConstraint multi-constraint logic * allow to disable plugins in certain environments * refactor TimesheetConstraint to non-service * activate new interface methods * prevent update issues with .env * improved customer fixture * removed $user->isExportDecimal()
124 lines
4.4 KiB
PHP
124 lines
4.4 KiB
PHP
<?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\Invoice\Calculator;
|
|
|
|
use App\Entity\Activity;
|
|
use App\Entity\Customer;
|
|
use App\Entity\InvoiceTemplate;
|
|
use App\Entity\Project;
|
|
use App\Entity\Timesheet;
|
|
use App\Entity\User;
|
|
use App\Invoice\CalculatorInterface;
|
|
use App\Invoice\InvoiceModel;
|
|
use App\Invoice\TaxRow;
|
|
use App\Repository\Query\InvoiceQuery;
|
|
use App\Tests\Invoice\DebugFormatter;
|
|
use App\Tests\Mocks\InvoiceModelFactoryFactory;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class AbstractCalculatorTestCase extends TestCase
|
|
{
|
|
abstract protected function getCalculator(): CalculatorInterface;
|
|
|
|
public function testCalculatorInterface(): void
|
|
{
|
|
$sut = $this->getCalculator();
|
|
|
|
self::assertLessThanOrEqual(20, \strlen($sut->getId()));
|
|
|
|
$this->assertEmptyModel($sut);
|
|
}
|
|
|
|
private function assertEmptyModel(CalculatorInterface $sut): void
|
|
{
|
|
$model = $this->getEmptyModel();
|
|
self::assertEquals('EUR', $model->getCurrency());
|
|
|
|
$sut->setModel($model);
|
|
|
|
self::assertEquals(0, $sut->getTotal());
|
|
self::assertEquals(0, $sut->getSubtotal());
|
|
self::assertEquals(0, $sut->getTimeWorked());
|
|
self::assertEquals(0, \count($sut->getEntries()));
|
|
self::assertEquals(0, $sut->getTax());
|
|
self::assertTax($sut, 0);
|
|
}
|
|
|
|
protected function assertTax(CalculatorInterface $sut, int $rate): void
|
|
{
|
|
$rows = $sut->getTaxRows();
|
|
self::assertCount(1, $rows);
|
|
|
|
self::assertInstanceOf(TaxRow::class, $rows[0]);
|
|
self::assertEquals($rate, $rows[0]->getTax()->getRate());
|
|
}
|
|
|
|
private function getEmptyModel(): InvoiceModel
|
|
{
|
|
$customer = new Customer('foo');
|
|
$template = new InvoiceTemplate();
|
|
$query = new InvoiceQuery();
|
|
|
|
return (new InvoiceModelFactoryFactory($this))->create()->createModel(new DebugFormatter(), $customer, $template, $query);
|
|
}
|
|
|
|
protected function assertDescription(CalculatorInterface $sut, $addProject = false, $addActivity = false): void
|
|
{
|
|
$customer = new Customer('foo');
|
|
$template = new InvoiceTemplate();
|
|
$template->setTaxRate(19.0);
|
|
|
|
$user = $this->getMockBuilder(User::class)->onlyMethods(['getId'])->disableOriginalConstructor()->getMock();
|
|
$user->method('getId')->willReturn(1);
|
|
|
|
$project = $this->getMockBuilder(Project::class)->onlyMethods(['getId', 'getCustomer', 'getName'])->disableOriginalConstructor()->getMock();
|
|
$project->method('getId')->willReturn(1);
|
|
$project->method('getCustomer')->willReturn($customer);
|
|
$project->method('getName')->willReturn('project description');
|
|
|
|
$activity = $this->getMockBuilder(Activity::class)->onlyMethods(['getId', 'getProject', 'getName'])->disableOriginalConstructor()->getMock();
|
|
$activity->method('getId')->willReturn(1);
|
|
$activity->method('getProject')->willReturn($project);
|
|
$activity->method('getName')->willReturn('activity description');
|
|
|
|
$query = new InvoiceQuery();
|
|
if ($addProject === true) {
|
|
$query->setProjects([$project]);
|
|
} elseif ($addActivity === true) {
|
|
$query->setActivities([$activity]);
|
|
}
|
|
|
|
$timesheet = new Timesheet();
|
|
$timesheet->setDescription('timesheet description');
|
|
$timesheet->setBegin(new \DateTime());
|
|
$timesheet->setDuration(3600);
|
|
$timesheet->setRate(293.27);
|
|
$timesheet->setUser($user);
|
|
$timesheet->setActivity($activity);
|
|
$timesheet->setProject($project);
|
|
|
|
$model = (new InvoiceModelFactoryFactory($this))->create()->createModel(new DebugFormatter(), $customer, $template, $query);
|
|
$model->addEntries([$timesheet]);
|
|
|
|
$sut->setModel($model);
|
|
self::assertEquals(1, \count($sut->getEntries()));
|
|
|
|
/** @var Timesheet $result */
|
|
$result = $sut->getEntries()[0];
|
|
if ($addProject === true) {
|
|
self::assertEquals('project description', $result->getDescription());
|
|
} elseif ($addActivity === true) {
|
|
self::assertEquals('activity description', $result->getDescription());
|
|
} else {
|
|
self::assertEquals('timesheet description', $result->getDescription());
|
|
}
|
|
}
|
|
}
|