2020-10-11 23:34:02 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 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-10-11 23:34:02 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-11 23:34:02 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-11 23:34:02 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2023-08-20 06:05:26 +02:00
|
|
|
use App\Models\Document;
|
2020-10-11 23:34:02 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2023-08-20 06:05:26 +02:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2023-11-26 08:41:42 +01:00
|
|
|
use Illuminate\Support\Facades\Session;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Http\Controllers\DocumentController
|
|
|
|
*/
|
|
|
|
class DocumentsApiTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
2023-08-20 06:05:26 +02:00
|
|
|
protected $faker;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2020-10-11 23:34:02 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
}
|
|
|
|
|
2023-08-20 06:05:26 +02:00
|
|
|
public function testIsPublicTypesForDocumentRequest()
|
|
|
|
{
|
|
|
|
$d = Document::factory()->create([
|
|
|
|
'company_id' => $this->company->id,
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get("/api/v1/documents/{$d->hashed_id}");
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => false,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertFalse($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => true,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertTrue($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => 'true',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertTrue($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => '1',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertTrue($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => 1,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertTrue($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => 'false',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertFalse($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => '0',
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertFalse($arr['data']['is_public']);
|
|
|
|
|
|
|
|
$update = [
|
|
|
|
'is_public' => 0,
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->putJson("/api/v1/documents/{$d->hashed_id}", $update);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertFalse($arr['data']['is_public']);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-11 23:34:02 +02:00
|
|
|
public function testClientDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/clients');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvoiceDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/invoices');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testProjectsDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/projects');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testExpenseDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/expenses');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testVendorDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/vendors');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testProductDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/products');
|
2020-10-11 23:34:02 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
|
|
|
|
2020-10-12 22:42:02 +02:00
|
|
|
public function testTaskDocuments()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/tasks');
|
2020-10-11 23:36:59 +02:00
|
|
|
|
2020-10-12 22:42:02 +02:00
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertArrayHasKey('documents', $arr['data'][0]);
|
|
|
|
}
|
2020-10-11 23:34:02 +02:00
|
|
|
}
|