mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
v5.0.0 update
This commit is contained in:
66
tests/Feature/Admin/FileDiskTest.php
Normal file
66
tests/Feature/Admin/FileDiskTest.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
use Crater\Models\FileDisk;
|
||||
use Crater\Models\User;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
use function Pest\Laravel\getJson;
|
||||
use function Pest\Laravel\postJson;
|
||||
use function Pest\Laravel\putJson;
|
||||
|
||||
beforeEach(function () {
|
||||
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
|
||||
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
|
||||
|
||||
$user = User::find(1);
|
||||
$this->withHeaders([
|
||||
'company' => $user->companies()->first()->id,
|
||||
]);
|
||||
Sanctum::actingAs(
|
||||
$user,
|
||||
['*']
|
||||
);
|
||||
});
|
||||
|
||||
test('get file disks', function () {
|
||||
$response = getJson('/api/v1/disks');
|
||||
|
||||
$response->assertOk();
|
||||
});
|
||||
|
||||
test('create file disk', function () {
|
||||
$disk = FileDisk::factory()->raw();
|
||||
|
||||
$response = postJson('/api/v1/disks', $disk);
|
||||
|
||||
$disk['credentials'] = json_encode($disk['credentials']);
|
||||
$this->assertDatabaseHas('file_disks', $disk);
|
||||
});
|
||||
|
||||
|
||||
test('update file disk', function () {
|
||||
$disk = FileDisk::factory()->create();
|
||||
|
||||
$disk2 = FileDisk::factory()->raw();
|
||||
|
||||
$response = putJson("/api/v1/disks/{$disk->id}", $disk2)->assertStatus(200);
|
||||
|
||||
$disk2['credentials'] = json_encode($disk2['credentials']);
|
||||
|
||||
$this->assertDatabaseHas('file_disks', $disk2);
|
||||
});
|
||||
|
||||
|
||||
test('get disk', function () {
|
||||
$disk = FileDisk::factory()->create();
|
||||
|
||||
$response = getJson("/api/v1/disks/{$disk->driver}");
|
||||
|
||||
$response->assertStatus(200);
|
||||
});
|
||||
|
||||
test('get drivers', function () {
|
||||
$response = getJson("/api/v1/disk/drivers");
|
||||
|
||||
$response->assertStatus(200);
|
||||
});
|
||||
Reference in New Issue
Block a user