test: Update tests

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2024-04-08 17:04:33 -07:00
parent c8037d6e54
commit 78ed7604ff
1 changed files with 16 additions and 0 deletions

View File

@ -108,6 +108,11 @@ class AvatarManagerTest extends \Test\TestCase {
->method('getUID')
->willReturn('valid-user');
$user
->expects($this->any())
->method('isEnabled')
->willReturn(true);
// requesting user
$this->userSession->expects($this->once())
->method('getUser')
@ -162,6 +167,11 @@ class AvatarManagerTest extends \Test\TestCase {
->method('getUID')
->willReturn('valid-user');
$user
->expects($this->any())
->method('isEnabled')
->willReturn(true);
$this->userSession->expects($this->once())
->method('getUser')
->willReturn($user);
@ -231,6 +241,12 @@ class AvatarManagerTest extends \Test\TestCase {
->expects($this->once())
->method('getUID')
->willReturn('valid-user');
$user
->expects($this->any())
->method('isEnabled')
->willReturn(true);
$this->userManager
->expects($this->once())
->method('get')