mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 08:25:56 -04:00
Merge pull request #21498 from lmamane/stable17-21285-oneliner
fix #21285 as oneliner
This commit is contained in:
commit
1af1d31bb3
2 changed files with 7 additions and 6 deletions
|
|
@ -109,7 +109,7 @@ class Store implements IStore {
|
|||
|
||||
if ($trySession && $this->session->exists('login_credentials')) {
|
||||
$creds = json_decode($this->session->get('login_credentials'));
|
||||
return new Credentials($creds->uid, $creds->uid, $creds->password);
|
||||
return new Credentials($creds->uid, $this->session->get('loginname'), $creds->password);
|
||||
}
|
||||
|
||||
// If we reach this line, an exception was thrown.
|
||||
|
|
|
|||
|
|
@ -142,7 +142,8 @@ class StoreTest extends TestCase {
|
|||
}
|
||||
|
||||
public function testGetLoginCredentialsInvalidTokenLoginCredentials() {
|
||||
$uid = 'user987';
|
||||
$uid = 'id987';
|
||||
$user = 'user987';
|
||||
$password = '7389374';
|
||||
|
||||
$this->session->expects($this->once())
|
||||
|
|
@ -156,11 +157,11 @@ class StoreTest extends TestCase {
|
|||
->method('exists')
|
||||
->with($this->equalTo('login_credentials'))
|
||||
->willReturn(true);
|
||||
$this->session->expects($this->once())
|
||||
$this->session->expects($this->exactly(2))
|
||||
->method('get')
|
||||
->with($this->equalTo('login_credentials'))
|
||||
->willReturn('{"run":true,"uid":"user987","password":"7389374"}');
|
||||
$expected = new Credentials('user987', 'user987', '7389374');
|
||||
->withConsecutive(['login_credentials'], ['loginname'])
|
||||
->willReturnOnConsecutiveCalls('{"run":true,"uid":"id987","password":"7389374"}', $user);
|
||||
$expected = new Credentials($uid, $user, $password);
|
||||
|
||||
$actual = $this->store->getLoginCredentials();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue