2023-09-22 02:21:41 +02:00
|
|
|
<?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\Feature\Template;
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
|
|
|
use App\Utils\Ninja;
|
2023-09-22 08:14:25 +02:00
|
|
|
use App\Models\Design;
|
|
|
|
use App\Models\Invoice;
|
2023-09-22 02:21:41 +02:00
|
|
|
use App\Utils\HtmlEngine;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use App\Services\PdfMaker\PdfMaker;
|
|
|
|
use Illuminate\Support\Facades\App;
|
2023-09-22 08:14:25 +02:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
|
|
|
use App\Services\PdfMaker\Design as DesignMaker;
|
2023-09-22 02:21:41 +02:00
|
|
|
use App\Services\PdfMaker\Design as PdfDesignModel;
|
|
|
|
use App\Services\PdfMaker\Design as PdfMakerDesign;
|
2023-09-22 08:14:25 +02:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2023-09-22 02:21:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers
|
|
|
|
*/
|
|
|
|
class TemplateTest extends TestCase
|
|
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
2023-09-22 08:14:25 +02:00
|
|
|
private string $body = '
|
|
|
|
|
|
|
|
<ninja>
|
|
|
|
$company.name
|
|
|
|
<table class="min-w-full text-left text-sm font-light">
|
|
|
|
<thead class="border-b font-medium dark:border-neutral-500">
|
|
|
|
<tr class="text-sm leading-normal">
|
|
|
|
<th scope="col" class="px-6 py-4">Item #</th>
|
|
|
|
<th scope="col" class="px-6 py-4">Description</th>
|
|
|
|
<th scope="col" class="px-6 py-4">Ordered</th>
|
|
|
|
<th scope="col" class="px-6 py-4">Delivered</th>
|
|
|
|
<th scope="col" class="px-6 py-4">Outstanding</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for item in entity.line_items|filter(item => item.type_id == "1") %}
|
|
|
|
<tr class="border-b dark:border-neutral-500">
|
|
|
|
<td class="whitespace-nowrap px-6 py-4 font-medium">{{ item.product_key }}</td>
|
|
|
|
<td class="whitespace-nowrap px-6 py-4 font-medium">{{ item.notes }}</td>
|
|
|
|
<td class="whitespace-nowrap px-6 py-4 font-medium">{{ item.quantity }}</td>
|
|
|
|
<td class="whitespace-nowrap px-6 py-4 font-medium">{{ item.quantity }}</td>
|
|
|
|
<td class="whitespace-nowrap px-6 py-4 font-medium">0</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</ninja>
|
|
|
|
|
|
|
|
';
|
|
|
|
|
2023-09-22 02:21:41 +02:00
|
|
|
protected function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-09-22 08:14:25 +02:00
|
|
|
public function testTimingOnCleanDesign()
|
|
|
|
{
|
|
|
|
$design_model = Design::find(2);
|
|
|
|
|
|
|
|
$replicated_design = $design_model->replicate();
|
|
|
|
$design = $replicated_design->design;
|
|
|
|
$design->body .= $this->body;
|
|
|
|
$replicated_design->design = $design;
|
|
|
|
$replicated_design->is_custom = true;
|
|
|
|
$replicated_design->save();
|
|
|
|
|
|
|
|
$entity_obj = \App\Models\Invoice::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
'client_id' => $this->client->id,
|
|
|
|
'status_id' => Invoice::STATUS_SENT,
|
|
|
|
'design_id' => $replicated_design->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$i = \App\Models\InvoiceInvitation::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
'invoice_id' => $entity_obj->id,
|
|
|
|
'client_contact_id' => $this->client->contacts->first()->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$start = microtime(true);
|
|
|
|
|
|
|
|
$pdf = (new CreateEntityPdf($i))->handle();
|
|
|
|
|
|
|
|
$end = microtime(true);
|
|
|
|
|
|
|
|
$this->assertNotNull($pdf);
|
|
|
|
|
|
|
|
nlog("Twig + PDF Gen Time: " . $end-$start);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testStaticPdfGeneration()
|
|
|
|
{
|
|
|
|
$start = microtime(true);
|
|
|
|
|
|
|
|
$pdf = (new CreateEntityPdf($this->invoice->invitations->first()))->handle();
|
|
|
|
|
|
|
|
$end = microtime(true);
|
|
|
|
|
|
|
|
$this->assertNotNull($pdf);
|
|
|
|
|
|
|
|
nlog("Plain PDF Gen Time: " . $end-$start);
|
|
|
|
}
|
|
|
|
|
2023-09-22 02:21:41 +02:00
|
|
|
public function testTemplateGeneration()
|
|
|
|
{
|
|
|
|
$entity_obj = $this->invoice;
|
|
|
|
|
|
|
|
$design = new Design();
|
|
|
|
$design->design = json_decode(json_encode($this->invoice->company->settings->pdf_variables), true);
|
|
|
|
$design->name = 'test';
|
|
|
|
$design->is_active = true;
|
|
|
|
$design->is_template = true;
|
|
|
|
$design->is_custom = true;
|
|
|
|
$design->user_id = $this->invoice->user_id;
|
|
|
|
$design->company_id = $this->invoice->company_id;
|
|
|
|
|
|
|
|
$design_object = new \stdClass;
|
|
|
|
$design_object->includes = '';
|
|
|
|
$design_object->header = '';
|
2023-09-22 08:14:25 +02:00
|
|
|
$design_object->body = $this->body;
|
2023-09-22 02:21:41 +02:00
|
|
|
$design_object->product = '';
|
|
|
|
$design_object->task = '';
|
|
|
|
$design_object->footer = '';
|
|
|
|
|
|
|
|
$design->design = $design_object;
|
|
|
|
|
|
|
|
$design->save();
|
|
|
|
|
2023-09-22 08:14:25 +02:00
|
|
|
$start = microtime(true);
|
|
|
|
|
2023-09-22 02:21:41 +02:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
App::setLocale($entity_obj->client->locale());
|
|
|
|
$t->replace(Ninja::transformTranslations($entity_obj->client->getMergedSettings()));
|
|
|
|
|
|
|
|
$html = new HtmlEngine($entity_obj->invitations()->first());
|
|
|
|
|
|
|
|
$options = [
|
|
|
|
'custom_partials' => json_decode(json_encode($design->design), true),
|
|
|
|
];
|
|
|
|
$template = new PdfMakerDesign(PdfDesignModel::CUSTOM, $options);
|
|
|
|
|
|
|
|
$variables = $html->generateLabelsAndValues();
|
|
|
|
|
|
|
|
$state = [
|
|
|
|
'template' => $template->elements([
|
|
|
|
'client' => $entity_obj->client,
|
|
|
|
'entity' => $entity_obj,
|
|
|
|
'pdf_variables' => (array) $entity_obj->company->settings->pdf_variables,
|
|
|
|
'$product' => $design->design->product,
|
|
|
|
'variables' => $variables,
|
|
|
|
]),
|
|
|
|
'variables' => $variables,
|
|
|
|
'options' => [
|
|
|
|
'all_pages_header' => $entity_obj->client->getSetting('all_pages_header'),
|
|
|
|
'all_pages_footer' => $entity_obj->client->getSetting('all_pages_footer'),
|
|
|
|
'client' => $entity_obj->client,
|
|
|
|
'entity' => $entity_obj,
|
|
|
|
'variables' => $variables,
|
|
|
|
],
|
|
|
|
'process_markdown' => $entity_obj->client->company->markdown_enabled,
|
|
|
|
];
|
|
|
|
|
|
|
|
$maker = new PdfMaker($state);
|
2023-09-22 08:14:25 +02:00
|
|
|
$maker
|
|
|
|
->design($template)
|
|
|
|
->build();
|
2023-09-22 02:21:41 +02:00
|
|
|
|
2023-09-22 08:14:25 +02:00
|
|
|
$html = $maker->getCompiledHTML(true);
|
2023-09-22 02:21:41 +02:00
|
|
|
|
2023-09-22 08:14:25 +02:00
|
|
|
$end = microtime(true);
|
|
|
|
|
|
|
|
$this->assertNotNull($html);
|
|
|
|
$this->assertStringContainsStringIgnoringCase($this->company->settings->name, $html);
|
|
|
|
|
|
|
|
nlog("Twig Solo Gen Time: ". $end - $start);
|
2023-09-22 02:21:41 +02:00
|
|
|
}
|
2023-09-22 08:14:25 +02:00
|
|
|
|
2023-09-22 02:21:41 +02:00
|
|
|
}
|