1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
<?php
/**
* Test: Nette\Utils\ArrayHash basic usage.
*/
declare(strict_types=1);
use Nette\Utils\ArrayHash;
use Tester\Assert;
require __DIR__ . '/../bootstrap.php';
class Person
{
private $name;
public function __construct($name)
{
$this->name = $name;
}
public function sayHi()
{
return "My name is $this->name";
}
}
test('store and retrieve values via array and property notation', function () {
$list = new ArrayHash;
$jack = new Person('Jack');
$mary = new Person('Mary');
$list['m'] = $mary;
$list['j'] = $jack;
Assert::same($mary, $list['m']);
Assert::same($jack, $list['j']);
Assert::same($mary, $list->m);
Assert::same($jack, $list->j);
Assert::same([
'm' => $mary,
'j' => $jack,
], iterator_to_array($list));
Assert::same([
'm' => $mary,
'j' => $jack,
], (array) $list);
foreach ($list as $key => $person) {
$tmp[] = $key . ' => ' . $person->sayHi();
}
Assert::same([
'm => My name is Mary',
'j => My name is Jack',
], $tmp);
Assert::same(2, $list->count());
Assert::same(2, count($list));
unset($list['j']);
Assert::same([
'm' => $mary,
], iterator_to_array($list));
});
test('creation with nonārecursive conversion leaves nested arrays unchanged', function () {
$mary = new Person('Mary');
$list = ArrayHash::from([
'm' => $mary,
'j' => 'Jack',
'children' => [
'c' => 'John',
],
], recursive: false);
Assert::type(Nette\Utils\ArrayHash::class, $list);
Assert::type('array', $list['children']);
});
test('recursive conversion transforms nested arrays into ArrayHash', function () {
$mary = new Person('Mary');
$list = ArrayHash::from([
'm' => $mary,
'j' => 'Jack',
'children' => [
'c' => 'John',
],
]);
Assert::type(Nette\Utils\ArrayHash::class, $list);
Assert::same($mary, $list['m']);
Assert::same('Jack', $list['j']);
Assert::type(Nette\Utils\ArrayHash::class, $list['children']);
Assert::same('John', $list['children']['c']);
$list['children']['c'] = 'Jim';
Assert::same('Jim', $list['children']['c']);
Assert::same([
'm' => $mary,
'j' => 'Jack',
'children' => $list['children'],
'c' => 'Jim',
], iterator_to_array(new RecursiveIteratorIterator(new RecursiveArrayIterator($list), RecursiveIteratorIterator::SELF_FIRST)));
});
test('numeric key handling supports both integer and string offsets', function () {
$row = ArrayHash::from([1, 2]);
foreach ($row as $key => $value) {
$keys[] = $key;
}
if (PHP_VERSION_ID < 70200) {
Assert::same(['0', '1'], $keys);
} else {
Assert::same([0, 1], $keys);
}
Assert::same(1, $row->{0});
Assert::same(1, $row->{'0'});
Assert::same(1, $row[0]);
Assert::same(1, $row['0']);
Assert::true(isset($row->{0}));
Assert::true(isset($row->{'0'}));
Assert::true(isset($row[0]));
Assert::true(isset($row['0']));
Assert::same(2, $row->{1});
Assert::same(2, $row->{'1'});
Assert::same(2, $row[1]);
Assert::same(2, $row['1']);
Assert::true(isset($row->{1}));
Assert::true(isset($row->{'1'}));
Assert::true(isset($row[1]));
Assert::true(isset($row['1']));
Assert::false(isset($row->{2}));
Assert::false(isset($row->{'2'}));
Assert::false(isset($row[2]));
Assert::false(isset($row['2']));
$row[3] = 'new';
Assert::same('new', $row->{3});
Assert::same('new', $row->{'3'});
Assert::same('new', $row[3]);
Assert::same('new', $row['3']);
unset($row[3]);
Assert::false(isset($row->{3}));
Assert::false(isset($row->{'3'}));
Assert::false(isset($row[3]));
Assert::false(isset($row['3']));
});
test('null values are stored but not regarded as set', function () {
$row = ArrayHash::from(['null' => null]);
Assert::null($row->null);
Assert::null($row['null']);
Assert::false(isset($row->null));
Assert::false(isset($row['null']));
});
test('accessing undefined keys triggers a notice or warning', function () {
$row = new ArrayHash;
Assert::error(
fn() => $row->undef,
PHP_VERSION_ID < 80000 ? E_NOTICE : E_WARNING,
'Undefined property: Nette\Utils\ArrayHash::$undef',
);
Assert::error(
fn() => $row['undef'],
PHP_VERSION_ID < 80000 ? E_NOTICE : E_WARNING,
'Undefined property: Nette\Utils\ArrayHash::$undef',
);
});
test('unsetting entries during iteration removes them', function () {
$hash = ArrayHash::from([1, 2, 3]);
foreach ($hash as $key => $value) {
unset($hash->$key);
}
Assert::count(0, $hash);
});
test('reference iteration allows modification of all elements', function () {
$hash = ArrayHash::from([1, 2, 3]);
foreach ($hash as $key => &$value) {
$value = 'new';
}
Assert::same(['new', 'new', 'new'], (array) $hash);
});
|