19 declare(strict_types=1);
31 $this->expectException(InvalidArgumentException::class);
34 $cache->fetch(
'item');
40 $cache->store(
'item',
'ilias');
42 $this->assertTrue($cache->exists(
'item'));
43 $this->assertSame(
'ilias', $cache->fetch(
'item'));
49 'Array Type' => [[4]],
51 'Ressource Type' => [fopen(
'php://temp',
'rb')]
61 $this->expectException(InvalidArgumentException::class);
64 $cache->createKeyByValues([$nonScalarValue, $nonScalarValue]);
70 'Float Type' => [4.0],
71 'String Type' => [
'4'],
72 'Boolean Type' => [
false],
73 'Integer Type' => [4],
74 'Null Type' => [
null],
85 $key = $cache->createKeyByValues([$scalarValue, $scalarValue]);
87 $this->assertNotEmpty($key);
88 $this->assertSame(32, strlen($key));
testExceptionIsRaisedWhenKeyShouldBeBuiltWithNonScalarValues($nonScalarValue)
testCacheKeyCouldBeGeneratedByArray($scalarValue)
static nonScalarValuesProvider()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testCacheItemResultsInCacheHit()
Class ilForumNotificationCache.
static scalarValuesAndNullProvider()
testExceptionIsRaisedWhenTryingToRetrieveItemNotCachedYet()
Class ForumNotificationCacheTest.