1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/tests/Feature/PdfCreatorTest.php

61 lines
1.4 KiB
PHP
Raw Normal View History

2020-10-26 10:13:00 +01: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)
2020-10-26 10:13:00 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-10-26 10:13:00 +01:00
*/
2020-10-26 10:13:00 +01:00
namespace Tests\Feature;
use App\Jobs\Entity\CreateEntityPdf;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Routing\Middleware\ThrottleRequests;
use Illuminate\Support\Facades\Storage;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
*/
class PdfCreatorTest extends TestCase
{
use DatabaseTransactions;
use MockAccountData;
protected function setUp() :void
2020-10-26 10:13:00 +01:00
{
parent::setUp();
$this->makeTestData();
$this->withoutMiddleware(
ThrottleRequests::class
);
}
2023-01-03 10:05:20 +01:00
// public function testCreditPdfCreated()
// {
// $credit_path = (new CreateEntityPdf($this->credit->invitations->first()))->handle();
2023-01-03 10:05:20 +01:00
// $this->assertTrue(Storage::exists($credit_path));
// }
2020-10-26 10:13:00 +01:00
public function testInvoicePdfCreated()
{
$invoice_path = (new CreateEntityPdf($this->invoice->invitations->first()))->handle();
2021-05-15 04:19:36 +02:00
2022-11-03 06:45:56 +01:00
$this->assertTrue(Storage::exists($invoice_path));
}
2020-10-26 10:13:00 +01:00
public function testQuotePdfCreated()
{
$quote_path = (new CreateEntityPdf($this->quote->invitations->first()))->handle();
2022-11-03 06:45:56 +01:00
$this->assertTrue(Storage::exists($quote_path));
2020-11-25 15:19:52 +01:00
}
2020-10-26 10:13:00 +01:00
}