ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StateTest.php
Go to the documentation of this file.
1 <?php
2 
21 
22 class StateTest extends TestCase
23 {
24  public function testGetNullValue(): State
25  {
26  $state = new State();
27  $this->assertNull($state->getValueFor('invalid_key'));
28  return $state;
29  }
30 
34  public function testValue(State $state): State
35  {
36  $key = 'key';
37  $value = 'value';
38  $state = $state->withValueFor($key, $value);
39  $this->assertEquals($value, $state->getValueFor($key));
40  return $state;
41  }
42 
46  public function testSerialize(State $state): void
47  {
48  $expected = json_encode(['key' => 'value'], JSON_THROW_ON_ERROR);
49  $this->assertEquals($expected, $state->serialize());
50  }
51 
55  public function testRemoveValue(State $state): void
56  {
57  $state = $state->withValueFor('keep', 'this');
58  $state = $state->withoutKey('key');
59  $expected = json_encode(['keep' => 'this'], JSON_THROW_ON_ERROR);
60  $this->assertEquals($expected, $state->serialize());
61  }
62 }
withValueFor(string $key, string $value)
Set a value for a key of the state.
Definition: State.php:36
getValueFor(string $key)
Get the value for the given key.
Definition: State.php:56
testValue(State $state)
testGetNullValue
Definition: StateTest.php:34
testGetNullValue()
Definition: StateTest.php:24
testSerialize(State $state)
testValue
Definition: StateTest.php:46
Keeps the state of a view in a simple stringly type key-value store.
Definition: State.php:26
serialize()
Get the key-value store as string.
Definition: State.php:67
testRemoveValue(State $state)
testValue
Definition: StateTest.php:55
withoutKey(string $key)
Remove the key-value-pair.
Definition: State.php:46