*/ private array $originalEnvironment = []; public function createApplication() { $this->databasePath = sys_get_temp_dir().'/nntmux-remember-me-auth-test.sqlite'; $this->originalEnvironment = [ 'APP_ENV' => getenv('APP_ENV'), 'DB_CONNECTION' => getenv('DB_CONNECTION'), 'DB_DATABASE' => getenv('DB_DATABASE'), ]; if (file_exists($this->databasePath)) { unlink($this->databasePath); } $pdo = new PDO('sqlite:'.$this->databasePath); $pdo->exec('CREATE TABLE settings (name VARCHAR PRIMARY KEY, value TEXT NULL)'); $pdo->exec("INSERT INTO settings (name, value) VALUES ('categorizeforeign', '0'), ('catwebdl', '0'), ('innerfileblacklist', ''), ('title', 'NNTmux Test'), ('home_link', '/')"); $this->setEnvironmentValue('APP_ENV', 'testing'); $this->setEnvironmentValue('DB_CONNECTION', 'sqlite'); $this->setEnvironmentValue('DB_DATABASE', $this->databasePath); $app = require __DIR__.'/../../../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); return $app; } protected function setUp(): void { parent::setUp(); config([ 'database.default' => 'sqlite', 'database.connections.sqlite.database' => $this->databasePath, 'app.key' => 'base64:'.base64_encode(random_bytes(32)), 'session.driver' => 'array', 'google2fa.session_var' => 'google2fa', ]); DB::purge(); DB::reconnect(); $this->createSchema(); $this->seedSettings(); app(PermissionRegistrar::class)->forgetCachedPermissions(); $this->app->instance(PasswordBreachService::class, new class extends PasswordBreachService { public function isPasswordBreached(string $password): bool { return false; } }); Route::middleware(['web', 'auth'])->get('__remember_me_probe', fn () => response('ok', 200)); } protected function tearDown(): void { if ($this->databasePath !== '' && file_exists($this->databasePath)) { unlink($this->databasePath); } parent::tearDown(); foreach ($this->originalEnvironment as $key => $value) { $this->setEnvironmentValue($key, $value === false ? null : $value); } } public function test_password_login_with_remember_me_queues_recaller_cookie(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('remember-password@example.test'); $response = $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', 'rememberme' => 'on', ]); $response->assertRedirect('/'); $response->assertCookie($this->recallerCookieName()); $this->assertAuthenticatedAs($user); } public function test_password_login_with_boolean_remember_me_value_queues_recaller_cookie(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('remember-password-boolean@example.test'); $response = $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', 'rememberme' => '1', ]); $response->assertRedirect('/'); $response->assertCookie($this->recallerCookieName()); $this->assertAuthenticatedAs($user); } public function test_password_login_with_remember_me_restores_authentication_after_session_expires(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('remember-restore@example.test'); $response = $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', 'rememberme' => 'on', ]); $recallerCookie = $response->getCookie($this->recallerCookieName(), decrypt: false); $this->assertNotNull($recallerCookie); $decryptedRecallerCookie = $response->getCookie($this->recallerCookieName()); $this->assertNotNull($decryptedRecallerCookie); [, $rememberToken] = explode('|', (string) $decryptedRecallerCookie->getValue(), 3); $this->assertSame($user->fresh()?->remember_token, $rememberToken); $this->flushSession(); Auth::forgetGuards(); $this ->withUnencryptedCookie($this->recallerCookieName(), $recallerCookie->getValue()) ->get('/__remember_me_probe') ->assertOk(); $this->assertAuthenticatedAs($user); } public function test_password_login_without_remember_me_does_not_queue_recaller_cookie(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('session-password@example.test'); $response = $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', ]); $response->assertRedirect('/'); $response->assertCookieMissing($this->recallerCookieName()); $this->assertAuthenticatedAs($user); } public function test_two_factor_login_preserves_remember_me_until_otp_success(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('remember-2fa@example.test'); $secret = Google2FA::generateSecretKey(); PasswordSecurity::query()->create([ 'user_id' => $user->id, 'google2fa_enable' => 1, 'google2fa_secret' => $secret, ]); $loginResponse = $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', 'rememberme' => 'on', ]); $loginResponse->assertRedirect(route('2fa.verify')); $loginResponse->assertCookieMissing($this->recallerCookieName()); $this->assertGuest(); $this->assertTrue((bool) session('2fa:remember')); $this->assertSame($user->id, session('2fa:user:id')); $this->assertFalse((bool) session(config('google2fa.session_var'))); $verifyResponse = $this->post(route('2fa.post'), [ 'one_time_password' => Google2FA::getCurrentOtp($secret), ]); $verifyResponse->assertRedirect('/'); $verifyResponse->assertCookie($this->recallerCookieName()); $this->assertAuthenticatedAs($user); $this->assertTrue((bool) session(config('google2fa.session_var'))); $this->assertNull(session('2fa:remember')); $this->assertNull(session('2fa:user:id')); $this->assertNull(session('2fa:password_breached')); } public function test_two_factor_login_without_remember_me_does_not_queue_recaller_cookie_after_otp_success(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('session-2fa@example.test'); $secret = Google2FA::generateSecretKey(); PasswordSecurity::query()->create([ 'user_id' => $user->id, 'google2fa_enable' => 1, 'google2fa_secret' => $secret, ]); $this->post(route('login'), [ 'username' => $user->email, 'password' => 'password', ])->assertRedirect(route('2fa.verify')); $verifyResponse = $this->post(route('2fa.post'), [ 'one_time_password' => Google2FA::getCurrentOtp($secret), ]); $verifyResponse->assertRedirect('/'); $verifyResponse->assertCookieMissing($this->recallerCookieName()); $this->assertAuthenticatedAs($user); } public function test_two_factor_login_with_valid_trusted_device_logs_in_without_otp(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('trusted-2fa@example.test'); PasswordSecurity::query()->create([ 'user_id' => $user->id, 'google2fa_enable' => 1, 'google2fa_secret' => Google2FA::generateSecretKey(), ]); $trustedDevice = TrustedDevice::issueForUser($user, '127.0.0.1', 'Feature Test'); $cookieValue = json_encode([ 'user_id' => $user->id, 'token' => $trustedDevice['plain'], 'expires_at' => $trustedDevice['device']->expires_at->getTimestamp(), ], JSON_THROW_ON_ERROR); $response = $this ->withCookie('2fa_trusted_device', $cookieValue) ->post(route('login'), [ 'username' => $user->email, 'password' => 'password', ]); $response->assertRedirect('/'); $this->assertAuthenticatedAs($user); $this->assertTrue((bool) session(config('google2fa.session_var'))); $this->assertNull(session('2fa:user:id')); } public function test_two_factor_login_with_forged_trusted_device_cookie_still_requires_otp(): void { Event::fake([UserLoggedIn::class]); $user = $this->createUser('forged-2fa@example.test'); PasswordSecurity::query()->create([ 'user_id' => $user->id, 'google2fa_enable' => 1, 'google2fa_secret' => Google2FA::generateSecretKey(), ]); $cookieValue = json_encode([ 'user_id' => $user->id, 'token' => 'forged-client-token', 'expires_at' => time() + 3600, ], JSON_THROW_ON_ERROR); $response = $this ->withCookie('2fa_trusted_device', $cookieValue) ->post(route('login'), [ 'username' => $user->email, 'password' => 'password', ]); $response->assertRedirect(route('2fa.verify')); $this->assertGuest(); $this->assertSame($user->id, session('2fa:user:id')); $this->assertFalse((bool) session(config('google2fa.session_var'))); } private function recallerCookieName(): string { return Auth::guard()->getRecallerName(); } protected function createSchema(): void { foreach ([ 'user_activities', 'trusted_devices', 'role_has_permissions', 'model_has_permissions', 'model_has_roles', 'password_securities', 'users', 'permissions', 'roles', 'settings', ] as $table) { Schema::dropIfExists($table); } Schema::create('settings', function (Blueprint $table): void { $table->string('name')->primary(); $table->text('value')->nullable(); }); Schema::create('roles', function (Blueprint $table): void { $table->increments('id'); $table->string('name'); $table->string('guard_name'); $table->integer('rate_limit')->default(60); $table->boolean('isdefault')->default(false); $table->unsignedInteger('defaultinvites')->default(0); $table->timestamps(); }); Schema::create('permissions', function (Blueprint $table): void { $table->increments('id'); $table->string('name'); $table->string('guard_name'); $table->timestamps(); }); Schema::create('users', function (Blueprint $table): void { $table->increments('id'); $table->string('username'); $table->string('email')->unique(); $table->string('password'); $table->unsignedInteger('roles_id')->default(1); $table->integer('rate_limit')->default(60); $table->string('api_token')->nullable(); $table->boolean('verified')->default(true); $table->boolean('can_post')->default(true); $table->timestamp('email_verified_at')->nullable(); $table->timestamp('lastlogin')->nullable(); $table->string('host')->nullable(); $table->rememberToken(); $table->string('session_token', 60)->nullable(); $table->timestamps(); $table->softDeletes(); }); Schema::create('password_securities', function (Blueprint $table): void { $table->id(); $table->unsignedInteger('user_id'); $table->boolean('google2fa_enable')->default(false); $table->string('google2fa_secret')->nullable(); $table->timestamps(); }); Schema::create('trusted_devices', function (Blueprint $table): void { $table->id(); $table->unsignedInteger('user_id'); $table->string('token_hash', 64)->unique(); $table->timestamp('expires_at')->index(); $table->timestamp('last_used_at')->nullable(); $table->string('ip_address', 45)->nullable(); $table->string('user_agent', 500)->nullable(); $table->timestamps(); $table->index(['user_id', 'expires_at']); }); Schema::create('model_has_roles', function (Blueprint $table): void { $table->unsignedInteger('role_id'); $table->string('model_type'); $table->unsignedInteger('model_id'); $table->primary(['role_id', 'model_id', 'model_type']); }); Schema::create('model_has_permissions', function (Blueprint $table): void { $table->unsignedInteger('permission_id'); $table->string('model_type'); $table->unsignedInteger('model_id'); $table->primary(['permission_id', 'model_id', 'model_type']); }); Schema::create('role_has_permissions', function (Blueprint $table): void { $table->unsignedInteger('permission_id'); $table->unsignedInteger('role_id'); $table->primary(['permission_id', 'role_id']); }); Schema::create('user_activities', function (Blueprint $table): void { $table->increments('id'); $table->unsignedInteger('user_id')->nullable(); $table->string('username'); $table->string('activity_type', 50); $table->text('description'); $table->json('metadata')->nullable(); $table->timestamp('created_at')->nullable(); }); } protected function seedSettings(): void { DB::table('settings')->insert([ ['name' => 'title', 'value' => 'NNTmux Test'], ['name' => 'home_link', 'value' => '/'], ['name' => 'categorizeforeign', 'value' => '0'], ['name' => 'catwebdl', 'value' => '0'], ['name' => 'innerfileblacklist', 'value' => ''], ]); } protected function createUser(string $email): User { $role = Role::query()->firstOrCreate( ['name' => 'User', 'guard_name' => 'web'], ['rate_limit' => 60, 'isdefault' => true, 'defaultinvites' => 1] ); $user = User::query()->create([ 'username' => 'user_'.md5($email), 'email' => $email, 'password' => bcrypt('password'), 'roles_id' => $role->id, 'rate_limit' => 60, 'api_token' => md5($email), 'verified' => true, 'email_verified_at' => now(), 'lastlogin' => now(), ]); $user->assignRole($role); return $user->fresh(); } private function setEnvironmentValue(string $key, ?string $value): void { if ($value === null) { putenv($key); unset($_ENV[$key], $_SERVER[$key]); return; } putenv($key.'='.$value); $_ENV[$key] = $value; $_SERVER[$key] = $value; } }