2020-02-12 01:41:17 +01:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-02-12 01:41:17 +01:00
|
|
|
namespace Tests\Integration;
|
|
|
|
|
2020-10-27 05:53:59 +01:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-02-12 01:41:17 +01:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Services\Invoice\GetInvoicePdf
|
|
|
|
*/
|
|
|
|
class InvoiceUploadTest extends TestCase
|
|
|
|
{
|
|
|
|
use MockAccountData;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2020-02-12 01:41:17 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvoiceUploadWorks()
|
|
|
|
{
|
2022-06-24 13:15:14 +02:00
|
|
|
CreateEntityPdf::dispatchSync($this->invoice->invitations->first());
|
2020-02-12 01:41:17 +01:00
|
|
|
|
2020-02-12 10:18:56 +01:00
|
|
|
$this->assertNotNull($this->invoice->service()->getInvoicePdf($this->invoice->client->primary_contact()->first()));
|
2020-02-12 01:41:17 +01:00
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|