Init: Hoan thanh kien truc V3 va Filament UI

This commit is contained in:
2026-04-18 02:07:30 +00:00
commit 761b34916b
141 changed files with 15917 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_the_application_returns_a_successful_response(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}

View File

@@ -0,0 +1,79 @@
<?php
use App\Filament\Resources\Products\ProductResource;
use App\Models\Product;
use App\Models\Project;
use App\Models\User;
use Filament\Actions\DeleteAction;
use Filament\Actions\EditAction;
use Filament\Actions\Testing\Livewire;
use Filament\Pages\Actions\DeleteAction as ActionsDeleteAction;
use function Pest\Livewire\livewire;
beforeEach(function () {
// Tạo user và đăng nhập để qua được middleware auth của Filament
$this->actingAs(User::factory()->create());
});
it('can render list products page', function () {
$this->get(ProductResource::getUrl('index'))->assertStatus(200);
});
it('can render create product page and has required fields', function () {
$this->get(ProductResource::getUrl('create'))->assertStatus(200);
livewire(ProductResource\Pages\CreateProduct::class)
->assertFormExists()
->assertFormFieldExists('code')
->assertFormFieldExists('area');
});
it('can create a new product via livewire form', function () {
$project = Project::factory()->create();
livewire(ProductResource\Pages\CreateProduct::class)
->fillForm([
'project_id' => $project->id,
'product_type' => 'LAND',
'code' => 'TEST-001',
'area' => 100,
'price_per_unit' => 50000000,
'total_price' => 5000000000,
'status' => 'Đang mở bán',
])
->call('create')
->assertHasNoFormErrors();
$this->assertDatabaseHas('products', [
'code' => 'TEST-001',
'area' => 100,
]);
});
it('can render edit page and update product data', function () {
$product = Product::factory()->create(['code' => 'OLD-CODE']);
$this->get(ProductResource::getUrl('edit', ['record' => $product]))->assertStatus(200);
livewire(ProductResource\Pages\EditProduct::class, [
'record' => $product->getRouteKey(),
])
->fillForm([
'code' => 'NEW-CODE',
])
->call('save')
->assertHasNoFormErrors();
expect($product->refresh()->code)->toBe('NEW-CODE');
});
it('can delete a product from edit page', function () {
$product = Product::factory()->create();
livewire(ProductResource\Pages\EditProduct::class, [
'record' => $product->getRouteKey(),
])
->callAction(DeleteAction::class);
$this->assertModelMissing($product);
});