1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/tests/Integration/UploadLogoTest.php

115 lines
2.7 KiB
PHP
Raw Normal View History

2019-10-03 02:17:29 +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 App\Utils\Traits\MakesHash;
2019-10-05 02:11:04 +02:00
use Illuminate\Database\Eloquent\Model;
2019-10-03 02:17:29 +02:00
use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
*/
class UploadLogoTest extends TestCase
{
use MockAccountData;
use DatabaseTransactions;
use MakesHash;
public function setUp() :void
{
parent::setUp();
$this->makeTestData();
2019-10-05 02:11:04 +02:00
Company::reguard();
2019-10-03 02:17:29 +02:00
}
public function testLogoUploadWorks()
{
Storage::fake('avatars');
$data = [
2019-10-09 06:28:58 +02:00
'company_logo' => UploadedFile::fake()->image('avatar.jpg'),
2019-10-03 02:17:29 +02:00
'name' => 'TestCompany'
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $data);
$response->assertStatus(200);
2019-10-03 02:17:29 +02:00
$acc = $response->json();
2019-10-08 00:07:43 +02:00
$logo = $acc['data']['settings']['company_logo'];
2019-10-03 02:17:29 +02:00
$logo_file = Storage::url($logo);
$this->assertNotNull($logo_file);
}
2019-10-03 06:27:17 +02:00
public function testLogoUploadfailure()
{
Storage::fake('avatars');
$data = [
2019-10-07 23:43:25 +02:00
'company_logo' => "",
2019-10-03 06:27:17 +02:00
'name' => 'TestCompany'
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $data);
2019-10-05 02:11:04 +02:00
//$acc = $response->json();
2019-10-03 06:27:17 +02:00
$response->assertStatus(302);
2019-10-03 07:17:57 +02:00
2019-10-03 06:27:17 +02:00
}
public function testLogoUploadNoAttribute()
{
Storage::fake('avatars');
$data = [
'name' => 'TestCompany'
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $data);
$response->assertStatus(200);
}
2019-10-03 02:17:29 +02:00
}