2020-02-12 11:41:17 +11:00
|
|
|
<?php
|
2020-09-14 21:11:46 +10:00
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2021-01-04 08:54:54 +11:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 21:11:46 +10:00
|
|
|
*
|
2022-06-21 09:57:17 +00:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 21:11:46 +10:00
|
|
|
*/
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-02-12 11:41:17 +11:00
|
|
|
namespace Tests\Integration;
|
|
|
|
|
|
2020-10-27 15:53:59 +11:00
|
|
|
use App\Jobs\Entity\CreateEntityPdf;
|
2020-02-12 11:41:17 +11: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 10:00:57 +00:00
|
|
|
protected function setUp() :void
|
2020-02-12 11:41:17 +11: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 11:41:17 +11:00
|
|
|
|
2020-02-12 20:18:56 +11:00
|
|
|
$this->assertNotNull($this->invoice->service()->getInvoicePdf($this->invoice->client->primary_contact()->first()));
|
2020-02-12 11:41:17 +11:00
|
|
|
}
|
2020-03-21 16:37:30 +11:00
|
|
|
}
|