AccountFixture::class, 'oauthClients' => OauthClientFixture::class, ]; } public function testAuthenticateByValidCredentials() { $authForm = new AuthenticationForm(); $authForm->username = 'admin'; $authForm->password = 'password_0'; $authForm->clientToken = Uuid::uuid4()->toString(); $result = $authForm->authenticate()->getResponseData(); $this->assertMatchesRegularExpression('/^[\w=-]+\.[\w=-]+\.[\w=-]+$/', $result['accessToken']); $this->assertSame($authForm->clientToken, $result['clientToken']); $this->assertSame('df936908b2e1544d96f82977ec213022', $result['selectedProfile']['id']); $this->assertSame('Admin', $result['selectedProfile']['name']); $this->assertFalse($result['selectedProfile']['legacy']); $this->assertTrue(OauthSession::find()->andWhere([ 'account_id' => 1, 'client_id' => OauthClient::UNAUTHORIZED_MINECRAFT_GAME_LAUNCHER, ])->exists()); } /** * @dataProvider getInvalidCredentialsCases */ public function testAuthenticateByWrongNicknamePass(string $expectedExceptionMessage, string $login, string $password) { $this->expectException(ForbiddenOperationException::class); $this->expectExceptionMessage($expectedExceptionMessage); $authForm = new AuthenticationForm(); $authForm->username = $login; $authForm->password = $password; $authForm->clientToken = Uuid::uuid4()->toString(); $authForm->authenticate(); } public function getInvalidCredentialsCases() { yield ['Invalid credentials. Invalid nickname or password.', 'wrong-username', 'wrong-password']; yield ['Invalid credentials. Invalid email or password.', 'wrong-email@ely.by', 'wrong-password']; yield ['This account has been suspended.', 'Banned', 'password_0']; yield ['Account protected with two factor auth.', 'AccountWithEnabledOtp', 'password_0']; } }