2019-06-03 02:28:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Integration;
|
|
|
|
|
|
|
|
use App\Events\Invoice\InvoiceWasCreated;
|
|
|
|
use App\Events\Invoice\InvoiceWasUpdated;
|
|
|
|
use App\Events\Payment\PaymentWasCreated;
|
|
|
|
use App\Jobs\Invoice\MarkInvoicePaid;
|
|
|
|
use App\Jobs\Util\UploadFile;
|
|
|
|
use App\Models\Account;
|
|
|
|
use App\Models\Activity;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CompanyLedger;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Illuminate\Http\UploadedFile;
|
2020-02-01 21:45:23 +01:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2019-06-03 02:28:12 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2020-02-12 01:41:17 +01:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2019-06-03 02:28:12 +02:00
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Jobs\Util\UploadFile
|
|
|
|
*/
|
|
|
|
class UploadFileTest extends TestCase
|
|
|
|
{
|
|
|
|
use MockAccountData;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
2020-02-01 21:45:23 +01:00
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
2019-06-03 02:28:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testFileUploadWorks()
|
|
|
|
{
|
2020-01-29 01:12:52 +01:00
|
|
|
$image = UploadedFile::fake()->image('avatar.jpg');
|
2019-06-03 02:28:12 +02:00
|
|
|
|
2020-01-29 01:12:52 +01:00
|
|
|
$document = UploadFile::dispatchNow(
|
2020-03-21 06:37:30 +01:00
|
|
|
$image,
|
|
|
|
UploadFile::IMAGE,
|
|
|
|
$this->invoice->user,
|
|
|
|
$this->invoice->company,
|
|
|
|
$this->invoice
|
2020-01-29 01:12:52 +01:00
|
|
|
);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-06-03 02:28:12 +02:00
|
|
|
$this->assertNotNull($document);
|
|
|
|
}
|
2020-01-29 01:12:52 +01:00
|
|
|
}
|