ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilUserCertificateTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
28  public function testCreateUserCertificate(): void
29  {
30  $userCertificate = new ilUserCertificate(
31  1,
32  20,
33  'crs',
34  400,
35  'Niels Theen',
36  123_456_789,
37  '<xml>Some Content</xml>',
38  '[]',
39  null,
40  1,
41  'v5.4.0',
42  true,
43  new CertificateId('11111111-2222-3333-4444-555555555555'),
44  '/some/where/background.jpg',
45  '/some/where/tile_image.svg',
46  '',
47  '',
48  140,
49  );
50 
51  $this->assertSame(1, $userCertificate->getPatternCertificateId());
52  $this->assertSame(20, $userCertificate->getObjId());
53  $this->assertSame('crs', $userCertificate->getObjType());
54  $this->assertSame(400, $userCertificate->getUserId());
55  $this->assertSame('Niels Theen', $userCertificate->getUserName());
56  $this->assertSame(123_456_789, $userCertificate->getAcquiredTimestamp());
57  $this->assertSame('<xml>Some Content</xml>', $userCertificate->getCertificateContent());
58  $this->assertSame('[]', $userCertificate->getTemplateValues());
59  $this->assertEquals(0, $userCertificate->getValidUntil());
60  $this->assertSame(1, $userCertificate->getVersion());
61  $this->assertSame('v5.4.0', $userCertificate->getIliasVersion());
62  $this->assertTrue($userCertificate->isCurrentlyActive());
63  $this->assertSame('/some/where/background.jpg', $userCertificate->getCurrentBackgroundImageUsed());
64  $this->assertSame(140, $userCertificate->getId());
65  $this->assertSame('11111111-2222-3333-4444-555555555555', $userCertificate->getCertificateId()->asString());
66  }
67 }
Class ilCertificateBaseTestCase.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null