adapt testGetLoginCredentialsInvalidTokenLoginCredentials() unit test to uid != loginname
Signed-off-by: Lionel Elie Mamane <lionel@mamane.lu>
This commit is contained in:
parent
2f75ba1adb
commit
ae036b4dfa
|
@ -142,7 +142,8 @@ class StoreTest extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetLoginCredentialsInvalidTokenLoginCredentials() {
|
public function testGetLoginCredentialsInvalidTokenLoginCredentials() {
|
||||||
$uid = 'user987';
|
$uid = 'id987';
|
||||||
|
$user = 'user987';
|
||||||
$password = '7389374';
|
$password = '7389374';
|
||||||
|
|
||||||
$this->session->expects($this->once())
|
$this->session->expects($this->once())
|
||||||
|
@ -156,11 +157,11 @@ class StoreTest extends TestCase {
|
||||||
->method('exists')
|
->method('exists')
|
||||||
->with($this->equalTo('login_credentials'))
|
->with($this->equalTo('login_credentials'))
|
||||||
->willReturn(true);
|
->willReturn(true);
|
||||||
$this->session->expects($this->once())
|
$this->session->expects($this->exactly(2))
|
||||||
->method('get')
|
->method('get')
|
||||||
->with($this->equalTo('login_credentials'))
|
->withConsecutive(['login_credentials'], ['loginname'])
|
||||||
->willReturn('{"run":true,"uid":"user987","password":"7389374"}');
|
->willReturnOnConsecutiveCalls('{"run":true,"uid":"id987","password":"7389374"}', $user);
|
||||||
$expected = new Credentials('user987', 'user987', '7389374');
|
$expected = new Credentials($uid, $user, $password);
|
||||||
|
|
||||||
$actual = $this->store->getLoginCredentials();
|
$actual = $this->store->getLoginCredentials();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue