mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(oauth2): fix tests
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
parent
034917b790
commit
120e7e838c
3 changed files with 9 additions and 9 deletions
|
|
@ -23,7 +23,7 @@ class Version011901Date20240829164356 extends SimpleMigrationStep {
|
|||
) {
|
||||
}
|
||||
|
||||
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) {
|
||||
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
|
||||
$qbUpdate = $this->connection->getQueryBuilder();
|
||||
$qbUpdate->update('oauth2_clients')
|
||||
->set('secret', $qbUpdate->createParameter('updateSecret'))
|
||||
|
|
|
|||
|
|
@ -262,7 +262,7 @@ class OauthApiControllerTest extends TestCase {
|
|||
|
||||
$client = new Client();
|
||||
$client->setClientIdentifier('clientId');
|
||||
$client->setSecret('hashedClientSecret');
|
||||
$client->setSecret(bin2hex('hashedClientSecret'));
|
||||
$this->clientMapper->method('getByUid')
|
||||
->with(42)
|
||||
->willReturn($client);
|
||||
|
|
@ -287,7 +287,7 @@ class OauthApiControllerTest extends TestCase {
|
|||
|
||||
$client = new Client();
|
||||
$client->setClientIdentifier('clientId');
|
||||
$client->setSecret('hashedClientSecret');
|
||||
$client->setSecret(bin2hex('hashedClientSecret'));
|
||||
$this->clientMapper->method('getByUid')
|
||||
->with(42)
|
||||
->willReturn($client);
|
||||
|
|
@ -325,7 +325,7 @@ class OauthApiControllerTest extends TestCase {
|
|||
|
||||
$client = new Client();
|
||||
$client->setClientIdentifier('clientId');
|
||||
$client->setSecret('hashedClientSecret');
|
||||
$client->setSecret(bin2hex('hashedClientSecret'));
|
||||
$this->clientMapper->method('getByUid')
|
||||
->with(42)
|
||||
->willReturn($client);
|
||||
|
|
@ -421,7 +421,7 @@ class OauthApiControllerTest extends TestCase {
|
|||
|
||||
$client = new Client();
|
||||
$client->setClientIdentifier('clientId');
|
||||
$client->setSecret('hashedClientSecret');
|
||||
$client->setSecret(bin2hex('hashedClientSecret'));
|
||||
$this->clientMapper->method('getByUid')
|
||||
->with(42)
|
||||
->willReturn($client);
|
||||
|
|
@ -520,7 +520,7 @@ class OauthApiControllerTest extends TestCase {
|
|||
|
||||
$client = new Client();
|
||||
$client->setClientIdentifier('clientId');
|
||||
$client->setSecret('hashedClientSecret');
|
||||
$client->setSecret(bin2hex('hashedClientSecret'));
|
||||
$this->clientMapper->method('getByUid')
|
||||
->with(42)
|
||||
->willReturn($client);
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ class SettingsControllerTest extends TestCase {
|
|||
$client = new Client();
|
||||
$client->setName('My Client Name');
|
||||
$client->setRedirectUri('https://example.com/');
|
||||
$client->setSecret('MyHashedSecret');
|
||||
$client->setSecret(bin2hex('MyHashedSecret'));
|
||||
$client->setClientIdentifier('MyClientIdentifier');
|
||||
|
||||
$this->clientMapper
|
||||
|
|
@ -96,7 +96,7 @@ class SettingsControllerTest extends TestCase {
|
|||
->with($this->callback(function (Client $c) {
|
||||
return $c->getName() === 'My Client Name' &&
|
||||
$c->getRedirectUri() === 'https://example.com/' &&
|
||||
$c->getSecret() === 'MyHashedSecret' &&
|
||||
$c->getSecret() === bin2hex('MyHashedSecret') &&
|
||||
$c->getClientIdentifier() === 'MyClientIdentifier';
|
||||
}))->willReturnCallback(function (Client $c) {
|
||||
$c->setId(42);
|
||||
|
|
@ -142,7 +142,7 @@ class SettingsControllerTest extends TestCase {
|
|||
$client->setId(123);
|
||||
$client->setName('My Client Name');
|
||||
$client->setRedirectUri('https://example.com/');
|
||||
$client->setSecret('MyHashedSecret');
|
||||
$client->setSecret(bin2hex('MyHashedSecret'));
|
||||
$client->setClientIdentifier('MyClientIdentifier');
|
||||
|
||||
$this->clientMapper
|
||||
|
|
|
|||
Loading…
Reference in a new issue