ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserCertificateAPITest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
28  public function testUserDataCall(): void
29  {
30  $repository = $this->getMockBuilder(UserDataRepository::class)
31  ->disableOriginalConstructor()
32  ->getMock();
33  $logger = new \ILIAS\components\Logging\NullLogger();
34  $database = $this->createMock(ilDBInterface::class);
35 
36  $userData = new \ILIAS\Certificate\API\Data\UserCertificateDto(
37  5,
38  'Some Title',
39  100,
40  1_234_567_890,
41  20,
42  'Ilyas',
43  'Homer',
44  'breakdanceMcFunkyPants',
45  'iliyas@ilias.de',
46  'breakdance@funky.de',
47  [3000]
48  );
49 
50  $repository->method('getUserData')
51  ->willReturn([5 => $userData]);
52 
53  $api = new \ILIAS\Certificate\API\UserCertificateAPI(
54  $repository,
55  $this->createMock(ilCertificateTemplateRepository::class),
57  $database,
58  $logger
59  ),
61  $logger,
62  $this->getMockBuilder(ilObjectDataCache::class)->disableOriginalConstructor()->getMock()
63  );
64 
65  $result = $api->getUserCertificateData(new \ILIAS\Certificate\API\Filter\UserDataFilter(), []);
66 
67  $this->assertSame(['5' => $userData], $result);
68  }
69 }
Interface Observer Contains several chained tasks and infos about them.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilCertificateBaseTestCase.