ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ForumNotificationCacheTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
30  {
31  $this->expectException(InvalidArgumentException::class);
32 
33  $cache = new ilForumNotificationCache();
34  $cache->fetch('item');
35  }
36 
37  public function testCacheItemResultsInCacheHit(): void
38  {
39  $cache = new ilForumNotificationCache();
40  $cache->store('item', 'ilias');
41 
42  $this->assertTrue($cache->exists('item'));
43  $this->assertSame('ilias', $cache->fetch('item'));
44  }
45 
46  public static function nonScalarValuesProvider(): array
47  {
48  return [
49  'Array Type' => [[4]],
50  'Object Type' => [new stdClass()],
51  'Ressource Type' => [fopen('php://temp', 'rb')]
52  ];
53  }
54 
59  public function testExceptionIsRaisedWhenKeyShouldBeBuiltWithNonScalarValues($nonScalarValue): void
60  {
61  $this->expectException(InvalidArgumentException::class);
62 
63  $cache = new ilForumNotificationCache();
64  $cache->createKeyByValues([$nonScalarValue, $nonScalarValue]);
65  }
66 
67  public static function scalarValuesAndNullProvider(): array
68  {
69  return [
70  'Float Type' => [4.0],
71  'String Type' => ['4'],
72  'Boolean Type' => [false],
73  'Integer Type' => [4],
74  'Null Type' => [null],
75  ];
76  }
77 
82  public function testCacheKeyCouldBeGeneratedByArray($scalarValue): void
83  {
84  $cache = new ilForumNotificationCache();
85  $key = $cache->createKeyByValues([$scalarValue, $scalarValue]);
86 
87  $this->assertNotEmpty($key);
88  $this->assertSame(32, strlen($key));
89  }
90 }
testExceptionIsRaisedWhenKeyShouldBeBuiltWithNonScalarValues($nonScalarValue)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilForumNotificationCache.
Class ForumNotificationCacheTest.