mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
294 lines
10 KiB
PHP
294 lines
10 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Enums\Role;
|
|
use App\Enums\Weekday;
|
|
use App\Events\NewsletterRegistered;
|
|
use App\Models\Member;
|
|
use App\Models\User;
|
|
use App\Providers\RouteServiceProvider;
|
|
use App\Service\IpLookup\IpLookupResponseDto;
|
|
use App\Service\IpLookup\IpLookupServiceContract;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Laravel\Fortify\Features;
|
|
use Laravel\Jetstream\Jetstream;
|
|
use Tests\TestCase;
|
|
|
|
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.');
|
|
}
|
|
|
|
$response = $this->get('/register');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function test_new_users_can_register(): void
|
|
{
|
|
// Arrange
|
|
Event::fake([
|
|
NewsletterRegistered::class,
|
|
]);
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
]);
|
|
|
|
// Assert
|
|
$response->assertValid();
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('Test User', $user->name);
|
|
$this->assertSame('UTC', $user->timezone);
|
|
$organization = $user->organizations()->firstOrFail();
|
|
$this->assertSame(true, $organization->personal_team);
|
|
$member = Member::query()->whereBelongsTo($user, 'user')->whereBelongsTo($organization, 'organization')->firstOrFail();
|
|
$this->assertSame(Role::Owner->value, $member->role);
|
|
Event::assertNotDispatched(NewsletterRegistered::class);
|
|
}
|
|
|
|
public function test_new_users_can_consent_to_newsletter_during_registration(): void
|
|
{
|
|
// Arrange
|
|
Event::fake([
|
|
NewsletterRegistered::class,
|
|
]);
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'newsletter_consent' => true,
|
|
]);
|
|
|
|
// Assert
|
|
$response->assertValid();
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('Test User', $user->name);
|
|
$this->assertSame('UTC', $user->timezone);
|
|
Event::assertDispatched(NewsletterRegistered::class);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_frontend_can_send_timezone_for_user(): void
|
|
{
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => 'Europe/Berlin',
|
|
]);
|
|
|
|
// Assert
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('Europe/Berlin', $user->timezone);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_uses_ip_lookup_service_to_get_information_about_currency_and_start_of_week(): void
|
|
{
|
|
// Arrange
|
|
$this->mock(IpLookupServiceContract::class, function ($mock): void {
|
|
$mock->shouldReceive('lookup')->andReturn(new IpLookupResponseDto(
|
|
'America/New_York',
|
|
Weekday::Sunday,
|
|
'USD',
|
|
));
|
|
});
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => 'Europe/Berlin',
|
|
]);
|
|
|
|
// Assert
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
/** @var User $user */
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('Europe/Berlin', $user->timezone);
|
|
$this->assertSame(Weekday::Sunday, $user->week_start);
|
|
$this->assertSame('USD', $user->organizations->first()->currency);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_uses_ip_lookup_service_to_get_information_about_timezone_if_client_did_not_send_one(): void
|
|
{
|
|
// Arrange
|
|
$this->mock(IpLookupServiceContract::class, function ($mock): void {
|
|
$mock->shouldReceive('lookup')->andReturn(new IpLookupResponseDto(
|
|
'America/New_York',
|
|
Weekday::Sunday,
|
|
'USD',
|
|
));
|
|
});
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => null,
|
|
]);
|
|
|
|
// Assert
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
/** @var User $user */
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('America/New_York', $user->timezone);
|
|
$this->assertSame(Weekday::Sunday, $user->week_start);
|
|
$this->assertSame('USD', $user->organizations->first()->currency);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_uses_ip_lookup_service_to_get_information_about_timezone_if_client_sends_invalid_one(): void
|
|
{
|
|
// Arrange
|
|
$this->mock(IpLookupServiceContract::class, function ($mock): void {
|
|
$mock->shouldReceive('lookup')->andReturn(new IpLookupResponseDto(
|
|
'America/New_York',
|
|
Weekday::Sunday,
|
|
'USD',
|
|
));
|
|
});
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => 'Unknown timezone',
|
|
]);
|
|
|
|
// Assert
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
/** @var User $user */
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('America/New_York', $user->timezone);
|
|
$this->assertSame(Weekday::Sunday, $user->week_start);
|
|
$this->assertSame('USD', $user->organizations->first()->currency);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_legacy_timezone_from_client_is_mapped_to_new_timezone(): void
|
|
{
|
|
// Arrange
|
|
$this->mock(IpLookupServiceContract::class, function ($mock): void {
|
|
$mock->shouldReceive('lookup')->andReturn(new IpLookupResponseDto(
|
|
'America/New_York',
|
|
Weekday::Sunday,
|
|
'USD',
|
|
));
|
|
});
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => 'Asia/Calcutta',
|
|
]);
|
|
|
|
// Assert
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
/** @var User $user */
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('Asia/Kolkata', $user->timezone);
|
|
$this->assertSame(Weekday::Sunday, $user->week_start);
|
|
$this->assertSame('USD', $user->organizations->first()->currency);
|
|
}
|
|
|
|
public function test_new_users_can_register_and_ignores_invalid_timezones_from_frontend(): void
|
|
{
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
'timezone' => 'Unknown timezone',
|
|
]);
|
|
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
$user = User::where('email', 'test@example.com')->firstOrFail();
|
|
$this->assertSame('UTC', $user->timezone);
|
|
}
|
|
|
|
public function test_new_users_can_not_register_if_user_with_email_already_exists(): void
|
|
{
|
|
// Arrange
|
|
$user = User::factory()->create([
|
|
'email' => 'test@example.com',
|
|
]);
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
]);
|
|
|
|
$this->assertFalse($this->isAuthenticated(), 'The user is authenticated');
|
|
$response->assertInvalid(['email']);
|
|
}
|
|
|
|
public function test_new_users_can_register_if_placeholder_user_with_email_already_exists(): void
|
|
{
|
|
// Arrange
|
|
$user = User::factory()->create([
|
|
'email' => 'test@example.com',
|
|
'is_placeholder' => true,
|
|
]);
|
|
|
|
// Act
|
|
$response = $this->post('/register', [
|
|
'name' => 'Test User',
|
|
'email' => 'test@example.com',
|
|
'password' => 'password',
|
|
'password_confirmation' => 'password',
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature(),
|
|
]);
|
|
|
|
$this->assertAuthenticated();
|
|
$response->assertRedirect(RouteServiceProvider::HOME);
|
|
}
|
|
}
|