Set up end-to-end browser testing using Pest Browser Plugin + Playwright. New v4 test suite uses SQLite :memory: database with pre-generated schema dump (database/schema/testing-schema.sql) instead of running migrations, enabling faster test startup. - Add pestphp/pest-plugin-browser dependency - Create GenerateTestingSchema command to export PostgreSQL schema to SQLite - Add .env.testing configuration for isolated test environment - Implement v4 test directory structure (Feature, Browser, Unit tests) - Update Pest skill documentation with browser testing patterns, API reference, debugging techniques, and common pitfalls - Configure phpunit.xml and tests/Pest.php for v4 suite - Update package.json and docker-compose.dev.yml for testing dependencies
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
use App\Models\InstanceSettings;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
beforeEach(function () {
|
|
InstanceSettings::create(['id' => 0]);
|
|
});
|
|
|
|
it('shows registration page when no users exist', function () {
|
|
$page = visit('/login');
|
|
|
|
$page->assertSee('Root User Setup')
|
|
->assertSee('Create Account');
|
|
});
|
|
|
|
it('can login with valid credentials', function () {
|
|
User::factory()->create([
|
|
'id' => 0,
|
|
'email' => 'test@example.com',
|
|
'password' => Hash::make('password'),
|
|
]);
|
|
|
|
$page = visit('/login');
|
|
|
|
$page->assertSee('Login');
|
|
});
|
|
|
|
it('fails login with invalid credentials', function () {
|
|
User::factory()->create([
|
|
'id' => 0,
|
|
'email' => 'test@example.com',
|
|
'password' => Hash::make('password'),
|
|
]);
|
|
|
|
$page = visit('/login');
|
|
|
|
$page->fill('email', 'random@email.com')
|
|
->fill('password', 'wrongpassword123')
|
|
->click('Login')
|
|
->assertSee('These credentials do not match our records');
|
|
});
|