1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
-
- namespace Tests\Feature;
-
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Laravel\Fortify\Features;
- use Tests\TestCase;
- use Wallo\FilamentCompanies\FilamentCompanies;
-
- class RegistrationTest extends TestCase
- {
- use RefreshDatabase;
-
- public function test_registration_screen_can_be_rendered(): void
- {
- if (! Features::enabled(Features::registration())) {
- $this->markTestSkipped('Registration support is not enabled.');
-
- return;
- }
-
- $response = $this->get('/register');
-
- $response->assertStatus(200);
- }
-
- public function test_registration_screen_cannot_be_rendered_if_support_is_disabled(): void
- {
- if (Features::enabled(Features::registration())) {
- $this->markTestSkipped('Registration support is enabled.');
-
- return;
- }
-
- $response = $this->get('/register');
-
- $response->assertStatus(404);
- }
-
- public function test_new_users_can_register(): void
- {
- if (! Features::enabled(Features::registration())) {
- $this->markTestSkipped('Registration support is not enabled.');
-
- return;
- }
-
- $response = $this->post('/register', [
- 'name' => 'Test User',
- 'email' => 'test@example.com',
- 'password' => 'password',
- 'password_confirmation' => 'password',
- 'terms' => FilamentCompanies::hasTermsAndPrivacyPolicyFeature(),
- ]);
-
- $this->assertAuthenticated();
- $response->assertRedirect(config('filament.path'));
- }
- }
|