Update testUpdateNoRefresh

Mocked getAppValue to deliver a value of 1800 when updateAttributesInterval  is requested by needsRefresh.

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
pull/6678/head
sidey79 7 years ago committed by Arthur Schiwon
parent 45dfc11137
commit ea0ad82e56
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
  1. 9
      apps/user_ldap/tests/User/UserTest.php

@ -871,7 +871,14 @@ class UserTest extends \Test\TestCase {
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
$this->equalTo(User::USER_PREFKEY_LASTREFRESH),
$this->equalTo(0))
->will($this->returnValue(time()));
->will($this->returnValue(time() - 10));
$config->expects($this->once())
->method('getAppValue')
->with($this->equalTo('user_ldap'),
$this->equalTo('updateAttributesInterval'),
$this->anything())
->will($this->returnValue(1800);
$config->expects($this->exactly(2))
->method('getUserValue');
$config->expects($this->never())

Loading…
Cancel
Save