test refactoring

This commit is contained in:
Čarodej
2022-01-24 09:25:32 +01:00
parent 3677e51c8f
commit 87dbcbceb8
7 changed files with 147 additions and 130 deletions

View File

@@ -1,4 +1,5 @@
<?php
namespace Tests\Domain\Folders;
use Storage;
@@ -36,7 +37,7 @@ class FolderTest extends TestCase
$this
->actingAs($user)
->postJson('/api/create-folder', [
'name' => 'New Folder',
'name' => 'New Folder',
])
->assertStatus(201)
->assertJsonFragment([
@@ -413,58 +414,4 @@ class FolderTest extends TestCase
]);
});
}
/**
* @test
*/
public function it_upload_folders_structure_with_files()
{
$file_1 = UploadedFile::fake()
->create('fake-file_1.pdf', 12000000, 'application/pdf');
$file_2 = UploadedFile::fake()
->create('fake-file_2.pdf', 12000000, 'application/pdf');
$user = User::factory(User::class)
->create();
$uploaded_file_1 = $this
->actingAs($user)
->postJson('/api/upload', [
'filename' => $file_2->name,
'file' => $file_2,
'path' => '/Folder_1/' . $file_2->name,
'folder_id' => null,
'is_last' => 'true',
])->assertStatus(201);
$uploaded_file_2 = $this
->actingAs($user)
->postJson('/api/upload', [
'filename' => $file_1->name,
'file' => $file_1,
'path' => '/Folder_1/Folder_2/' . $file_1->name,
'folder_id' => null,
'is_last' => 'true',
])->assertStatus(201);
$file_1_parent = Folder::whereName('Folder_1')->first();
$file_2_parent = Folder::whereName('Folder_2')->first();
$this->assertDatabaseHas('folders', [
'id' => $uploaded_file_1['folder_id'],
'parent_id' => null,
'id' => $uploaded_file_2['folder_id'],
'parent_id' => $file_1_parent->id,
]);
$this->assertDatabaseHas('files', [
'id' => $uploaded_file_1['id'],
'folder_id' => $file_1_parent->id,
'id' => $uploaded_file_2['id'],
'folder_id' => $file_2_parent->id,
]);
}
}

View File

@@ -0,0 +1,100 @@
<?php
namespace Tests\Domain\Folders;
use App\Users\Models\User;
use Domain\Files\Models\File;
use Domain\Folders\Models\Folder;
use Illuminate\Http\UploadedFile;
use Tests\TestCase;
class FolderUploadTest extends TestCase
{
/**
* @test
*/
public function check_folder_tree_structure_creation_after_folder_upload()
{
$user = User::factory()
->hasSettings()
->create();
$file = UploadedFile::fake()
->create('fake-file_1.pdf', 120000, 'application/pdf');
$this
->actingAs($user)
->postJson('/api/upload', [
'filename' => $file->name,
'file' => $file,
'path' => "/level_1/level_2/level_3/$file->name",
'parent_id' => null,
'is_last' => 'true',
])->assertStatus(201);
$file = File::first();
$level_1 = Folder::where('name', 'level_1')->first();
$level_2 = Folder::where('name', 'level_2')->first();
$level_3 = Folder::where('name', 'level_3')->first();
$this->assertEquals(null, $level_1->parent_id);
$this->assertEquals($level_2->parent_id, $level_1->id);
$this->assertEquals($level_3->parent_id, $level_2->id);
$this->assertEquals($level_3->id, $file->parent_id);
}
/**
* @test
*/
public function check_children_tree_structure_creation_after_folder_upload()
{
$user = User::factory()
->hasSettings()
->create();
$brother = UploadedFile::fake()
->create('brother.pdf', 120000, 'application/pdf');
$sister = UploadedFile::fake()
->create('sister.pdf', 120000, 'application/pdf');
$this
->actingAs($user)
->postJson('/api/upload', [
'filename' => $brother->name,
'file' => $brother,
'path' => "/Folder/Brother/$brother->name",
'parent_id' => null,
'is_last' => 'true',
])->assertStatus(201);
$this
->actingAs($user)
->postJson('/api/upload', [
'filename' => $sister->name,
'file' => $sister,
'path' => "/Folder/Sister/$sister->name",
'parent_id' => null,
'is_last' => 'true',
])->assertStatus(201);
$brotherFile = File::where('name', 'brother.pdf')->first();
$sisterFile = File::where('name', 'sister.pdf')->first();
$brotherFolder = Folder::where('name', 'Brother')->first();
$sisterFolder = Folder::where('name', 'Sister')->first();
// Check correctness of siblings file appended to the folder
$this->assertEquals($brotherFolder->id, $brotherFile->parent_id);
$this->assertEquals($sisterFolder->id, $sisterFile->parent_id);
$home = Folder::where('name', 'Folder')->first();
// Check correctness of siblings folders appended to the home folder
$this->assertEquals($home->id, $brotherFolder->parent_id);
$this->assertEquals($home->id, $sisterFolder->parent_id);
}
}