Files
vuefilemanager/tests/Domain/Sharing/UserShareTest.php
2022-05-31 16:25:09 +02:00

258 lines
6.6 KiB
PHP

<?php
namespace Tests\Domain\Sharing;
use Tests\TestCase;
use App\Users\Models\User;
use Laravel\Sanctum\Sanctum;
use Domain\Files\Models\File;
use Domain\Folders\Models\Folder;
use Illuminate\Support\Facades\Notification;
use Domain\Sharing\Notifications\SharedSendViaEmail;
class UserShareTest extends TestCase
{
/**
* @test
*/
public function it_generate_qr_code()
{
$user = User::factory()
->hasSettings()
->create();
$this
->actingAs($user)
->get('/api/share/123456789/qr')
->assertOk();
}
/**
* @test
*/
public function it_share_single_file_without_password()
{
$user = User::factory()
->hasSettings()
->create();
$file = File::factory()
->create(['user_id' => $user->id]);
$this
->actingAs($user)
->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'file',
'id' => $file->id,
])->assertStatus(201)
->assertJsonFragment([
'item_id' => $file->id,
'type' => 'file',
]);
$this->assertDatabaseHas('shares', [
'user_id' => $user->id,
'item_id' => $file->id,
'type' => 'file',
'is_protected' => false,
'password' => null,
'expire_in' => null,
]);
}
/**
* @test
*/
public function it_share_folder_without_password()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
$this
->actingAs($user)
->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
])->assertStatus(201)
->assertJsonFragment([
'item_id' => $folder->id,
'type' => 'folder',
]);
$this->assertDatabaseHas('shares', [
'user_id' => $user->id,
'item_id' => $folder->id,
'type' => 'folder',
'is_protected' => false,
'password' => null,
'expire_in' => null,
]);
}
/**
* @test
*/
public function it_share_folder_with_password()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
$this
->actingAs($user)
->postJson("/api/share", [
'isPassword' => true,
'password' => 'secret',
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
])
->assertStatus(201)
->assertJsonFragment([
'item_id' => $folder->id,
'type' => 'folder',
]);
$this->assertDatabaseHas('shares', [
'user_id' => $user->id,
'item_id' => $folder->id,
'type' => 'folder',
'is_protected' => true,
]);
$this->assertDatabaseMissing('shares', [
'item_id' => $folder->id,
'password' => null,
]);
}
/**
* @test
*/
public function it_share_folder_with_expiration_time()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
$this
->actingAs($user)
->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
'expiration' => 12,
])
->assertStatus(201)
->assertJsonFragment([
'item_id' => $folder->id,
'expire_in' => 12,
]);
}
/**
* @test
*/
public function it_share_folder_and_send_link_for_multiple_email()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
$this
->actingAs($user)
->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
'emails' => [
'john@doe.com',
'jane@doe.com',
],
])->assertStatus(201);
Notification::assertTimesSent(2, SharedSendViaEmail::class);
}
/**
* @test
*/
public function it_send_existing_shared_folder_for_multiple_email_once_again()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
Sanctum::actingAs($user);
$this->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
])->assertStatus(201);
$this->postJson("/api/share/$folder->id/email", [
'emails' => [
'john@doe.com',
'jane@doe.com',
],
])->assertStatus(200);
Notification::assertTimesSent(2, SharedSendViaEmail::class);
}
/**
* @test
*/
public function it_revoke_single_share_record()
{
$user = User::factory()
->hasSettings()
->create();
$folder = Folder::factory()
->create(['user_id' => $user->id]);
Sanctum::actingAs($user);
$this->postJson("/api/share", [
'isPassword' => false,
'permission' => 'editor',
'type' => 'folder',
'id' => $folder->id,
])->assertStatus(201);
$this->deleteJson('/api/share/revoke', [
'tokens' => [
$folder->shared->token,
],
])->assertStatus(200);
$this->assertDatabaseMissing('shares', [
'item_id' => $folder->id,
]);
}
}