mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
112 lines
3.1 KiB
PHP
112 lines
3.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace Tests\Pdf;
|
|
|
|
use App\DataMapper\CompanySettings;
|
|
use Tests\TestCase;
|
|
use App\Models\Design;
|
|
use App\Models\Company;
|
|
use App\Models\Country;
|
|
use App\Models\Invoice;
|
|
use App\Models\Currency;
|
|
use Tests\MockAccountData;
|
|
use App\Services\Pdf\PdfMock;
|
|
use Beganovich\Snappdf\Snappdf;
|
|
use App\Services\Pdf\PdfBuilder;
|
|
use App\Services\Pdf\PdfService;
|
|
use App\Services\Pdf\PdfConfiguration;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\Services\Pdf\PdfService
|
|
*/
|
|
class PdfmockTest extends TestCase
|
|
{
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
public function testPdfInstance ()
|
|
{
|
|
$data = [
|
|
'settings' => CompanySettings::defaults(),
|
|
'settings_type' => 'company',
|
|
'entity_type' => 'invoice',
|
|
];
|
|
|
|
$entity = (new \App\Services\Pdf\PdfMock($data, Company::factory()->make()))->build()->initEntity();
|
|
|
|
$this->assertInstanceOf(Invoice::class, $entity);
|
|
$this->assertNotNull($entity->client);
|
|
|
|
$pdf_service = new PdfService($entity->invitation);
|
|
|
|
$this->assertNotNull($pdf_service);
|
|
|
|
$pdf_config = (new PdfConfiguration($pdf_service));
|
|
|
|
$this->assertNotNull($pdf_config);
|
|
|
|
|
|
}
|
|
|
|
public function testHtmlGeneration()
|
|
{
|
|
$data = [
|
|
'settings' => CompanySettings::defaults(),
|
|
'settings_type' => 'company',
|
|
'entity_type' => 'invoice',
|
|
];
|
|
|
|
$pdf_mock = (new PdfMock($data, Company::factory()->make()))->build();
|
|
$mock = $pdf_mock->initEntity();
|
|
|
|
$pdf_service = new PdfService($mock->invitation);
|
|
|
|
$pdf_config = (new PdfConfiguration($pdf_service));
|
|
$pdf_config->entity = $mock;
|
|
$pdf_config->setTaxMap($mock->tax_map);
|
|
$pdf_config->setTotalTaxMap($mock->total_tax_map);
|
|
$pdf_config->setCurrency(Currency::find(1));
|
|
$pdf_config->setCountry(Country::find(840));
|
|
$pdf_config->client = $mock->client;
|
|
$pdf_config->entity_design_id = 'invoice_design_id';
|
|
$pdf_config->settings_object = $mock->client;
|
|
$pdf_config->entity_string = 'invoice';
|
|
$pdf_config->settings = $pdf_mock->getMergedSettings();
|
|
$pdf_mock->settings = $pdf_config->settings;
|
|
$pdf_config->setPdfVariables();
|
|
$pdf_config->design = Design::find(2);
|
|
$pdf_config->currency_entity = $mock->client;
|
|
|
|
$pdf_service->config = $pdf_config;
|
|
|
|
$pdf_designer = (new \App\Services\Pdf\PdfDesigner($pdf_service))->build();
|
|
$pdf_service->designer = $pdf_designer;
|
|
|
|
$pdf_service->html_variables = $pdf_mock->getStubVariables();
|
|
|
|
$pdf_builder = (new PdfBuilder($pdf_service))->build();
|
|
$pdf_service->builder = $pdf_builder;
|
|
$this->assertNotNull($pdf_config);
|
|
|
|
$html = $pdf_service->getHtml();
|
|
|
|
$this->assertNotNull($html);
|
|
}
|
|
|
|
}
|