Release 2.12 (#4609)

This commit is contained in:
Kevin Papst
2024-02-07 23:47:25 +01:00
committed by GitHub
parent 7abe787778
commit 85a16a9363
394 changed files with 1189 additions and 6735 deletions

View File

@@ -41,7 +41,7 @@ class SessionAuthenticatorTest extends TestCase
return new SessionAuthenticator($token);
}
public function testSupports()
public function testSupports(): void
{
$sut = $this->getSut();
@@ -65,7 +65,7 @@ class SessionAuthenticatorTest extends TestCase
self::assertFalse($sut->supports($request));
}
public function testAuthenticateWithMissingAuthHeader()
public function testAuthenticateWithMissingAuthHeader(): void
{
$this->expectException(CustomUserMessageAuthenticationException::class);
$this->expectExceptionMessage('Authentication required, missing user header: X-AUTH-USER');
@@ -76,7 +76,7 @@ class SessionAuthenticatorTest extends TestCase
$sut->authenticate($request);
}
public function testAuthenticateWithMissingToken()
public function testAuthenticateWithMissingToken(): void
{
$this->expectException(CustomUserMessageAuthenticationException::class);
$this->expectExceptionMessage('Authentication required, missing token header: X-AUTH-TOKEN');
@@ -87,7 +87,7 @@ class SessionAuthenticatorTest extends TestCase
$sut->authenticate($request);
}
public function testAuthenticateWithEmptyToken()
public function testAuthenticateWithEmptyToken(): void
{
$this->expectException(CustomUserMessageAuthenticationException::class);
$this->expectExceptionMessage('Authentication required, missing token header: X-AUTH-TOKEN');
@@ -98,7 +98,7 @@ class SessionAuthenticatorTest extends TestCase
$sut->authenticate($request);
}
public function testAuthenticateWithMissingUser()
public function testAuthenticateWithMissingUser(): void
{
$this->expectException(CustomUserMessageAuthenticationException::class);
$this->expectExceptionMessage('Authentication required, missing user header: X-AUTH-USER');
@@ -109,7 +109,7 @@ class SessionAuthenticatorTest extends TestCase
$sut->authenticate($request);
}
public function testAuthenticateWithEmptyUser()
public function testAuthenticateWithEmptyUser(): void
{
$this->expectException(CustomUserMessageAuthenticationException::class);
$this->expectExceptionMessage('Authentication required, missing user header: X-AUTH-USER');
@@ -120,7 +120,7 @@ class SessionAuthenticatorTest extends TestCase
$sut->authenticate($request);
}
public function testAuthenticate()
public function testAuthenticate(): void
{
$sut = $this->getSut();
@@ -141,7 +141,7 @@ class SessionAuthenticatorTest extends TestCase
self::assertTrue($badge->isResolved());
}
public function testAuthenticateFailsOnMissingApiTokenForUser()
public function testAuthenticateFailsOnMissingApiTokenForUser(): void
{
$this->expectException(BadCredentialsException::class);
$this->expectExceptionMessage('The user has no activated API account.');
@@ -158,7 +158,7 @@ class SessionAuthenticatorTest extends TestCase
$badge->executeCustomChecker($user);
}
public function testAuthenticateFailsOnWrongPassword()
public function testAuthenticateFailsOnWrongPassword(): void
{
$this->expectException(BadCredentialsException::class);
$this->expectExceptionMessage('The presented password is invalid.');