You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
300 lines
7.0 KiB
300 lines
7.0 KiB
<?php |
|
|
|
namespace yiiunit\framework\helpers; |
|
|
|
use yii\base\Object; |
|
use yii\helpers\ArrayHelper; |
|
use yii\test\TestCase; |
|
use yii\data\Sort; |
|
|
|
class Post1 |
|
{ |
|
public $id = 23; |
|
public $title = 'tt'; |
|
} |
|
|
|
class Post2 extends Object |
|
{ |
|
public $id = 123; |
|
public $content = 'test'; |
|
private $secret = 's'; |
|
public function getSecret() |
|
{ |
|
return $this->secret; |
|
} |
|
} |
|
|
|
class Post3 extends Object |
|
{ |
|
public $id = 33; |
|
public $subObject; |
|
|
|
public function init() |
|
{ |
|
$this->subObject = new Post2(); |
|
} |
|
} |
|
|
|
/** |
|
* @group helpers |
|
*/ |
|
class ArrayHelperTest extends TestCase |
|
{ |
|
public function testToArray() |
|
{ |
|
$object = new Post1; |
|
$this->assertEquals(get_object_vars($object), ArrayHelper::toArray($object)); |
|
$object = new Post2; |
|
$this->assertEquals(get_object_vars($object), ArrayHelper::toArray($object)); |
|
|
|
$object1 = new Post1; |
|
$object2 = new Post2; |
|
$this->assertEquals([ |
|
get_object_vars($object1), |
|
get_object_vars($object2), |
|
], ArrayHelper::toArray([ |
|
$object1, |
|
$object2, |
|
])); |
|
|
|
$object = new Post2; |
|
$this->assertEquals([ |
|
'id' => 123, |
|
'secret' => 's', |
|
'_content' => 'test', |
|
'length' => 4, |
|
], ArrayHelper::toArray($object, [ |
|
$object->className() => [ |
|
'id', 'secret', |
|
'_content' => 'content', |
|
'length' => function ($post) { |
|
return strlen($post->content); |
|
} |
|
] |
|
])); |
|
|
|
$object = new Post3(); |
|
$this->assertEquals(get_object_vars($object), ArrayHelper::toArray($object, [], false)); |
|
$this->assertEquals([ |
|
'id' => 33, |
|
'subObject' => [ |
|
'id' => 123, |
|
'content' => 'test', |
|
], |
|
], ArrayHelper::toArray($object)); |
|
} |
|
|
|
public function testRemove() |
|
{ |
|
$array = ['name' => 'b', 'age' => 3]; |
|
$name = ArrayHelper::remove($array, 'name'); |
|
|
|
$this->assertEquals($name, 'b'); |
|
$this->assertEquals($array, ['age' => 3]); |
|
|
|
$default = ArrayHelper::remove($array, 'nonExisting', 'defaultValue'); |
|
$this->assertEquals('defaultValue', $default); |
|
} |
|
|
|
|
|
public function testMultisort() |
|
{ |
|
// single key |
|
$array = [ |
|
['name' => 'b', 'age' => 3], |
|
['name' => 'a', 'age' => 1], |
|
['name' => 'c', 'age' => 2], |
|
]; |
|
ArrayHelper::multisort($array, 'name'); |
|
$this->assertEquals(['name' => 'a', 'age' => 1], $array[0]); |
|
$this->assertEquals(['name' => 'b', 'age' => 3], $array[1]); |
|
$this->assertEquals(['name' => 'c', 'age' => 2], $array[2]); |
|
|
|
// multiple keys |
|
$array = [ |
|
['name' => 'b', 'age' => 3], |
|
['name' => 'a', 'age' => 2], |
|
['name' => 'a', 'age' => 1], |
|
]; |
|
ArrayHelper::multisort($array, ['name', 'age']); |
|
$this->assertEquals(['name' => 'a', 'age' => 1], $array[0]); |
|
$this->assertEquals(['name' => 'a', 'age' => 2], $array[1]); |
|
$this->assertEquals(['name' => 'b', 'age' => 3], $array[2]); |
|
|
|
// case-insensitive |
|
$array = [ |
|
['name' => 'a', 'age' => 3], |
|
['name' => 'b', 'age' => 2], |
|
['name' => 'B', 'age' => 4], |
|
['name' => 'A', 'age' => 1], |
|
]; |
|
|
|
ArrayHelper::multisort($array, ['name', 'age'], false, [SORT_STRING, SORT_REGULAR]); |
|
$this->assertEquals(['name' => 'A', 'age' => 1], $array[0]); |
|
$this->assertEquals(['name' => 'B', 'age' => 4], $array[1]); |
|
$this->assertEquals(['name' => 'a', 'age' => 3], $array[2]); |
|
$this->assertEquals(['name' => 'b', 'age' => 2], $array[3]); |
|
|
|
ArrayHelper::multisort($array, ['name', 'age'], false, [SORT_STRING, SORT_REGULAR], false); |
|
$this->assertEquals(['name' => 'A', 'age' => 1], $array[0]); |
|
$this->assertEquals(['name' => 'a', 'age' => 3], $array[1]); |
|
$this->assertEquals(['name' => 'b', 'age' => 2], $array[2]); |
|
$this->assertEquals(['name' => 'B', 'age' => 4], $array[3]); |
|
} |
|
|
|
public function testMultisortUseSort() |
|
{ |
|
// single key |
|
$sort = new Sort([ |
|
'attributes' => ['name', 'age'], |
|
'defaultOrder' => ['name' => Sort::ASC], |
|
]); |
|
$orders = $sort->getOrders(); |
|
|
|
$array = [ |
|
['name' => 'b', 'age' => 3], |
|
['name' => 'a', 'age' => 1], |
|
['name' => 'c', 'age' => 2], |
|
]; |
|
ArrayHelper::multisort($array, array_keys($orders), array_values($orders)); |
|
$this->assertEquals(['name' => 'a', 'age' => 1], $array[0]); |
|
$this->assertEquals(['name' => 'b', 'age' => 3], $array[1]); |
|
$this->assertEquals(['name' => 'c', 'age' => 2], $array[2]); |
|
|
|
// multiple keys |
|
$sort = new Sort([ |
|
'attributes' => ['name', 'age'], |
|
'defaultOrder' => ['name' => Sort::ASC, 'age' => Sort::DESC], |
|
]); |
|
$orders = $sort->getOrders(); |
|
|
|
$array = [ |
|
['name' => 'b', 'age' => 3], |
|
['name' => 'a', 'age' => 2], |
|
['name' => 'a', 'age' => 1], |
|
]; |
|
ArrayHelper::multisort($array, array_keys($orders), array_values($orders)); |
|
$this->assertEquals(['name' => 'a', 'age' => 2], $array[0]); |
|
$this->assertEquals(['name' => 'a', 'age' => 1], $array[1]); |
|
$this->assertEquals(['name' => 'b', 'age' => 3], $array[2]); |
|
} |
|
|
|
public function testMerge() |
|
{ |
|
$a = [ |
|
'name' => 'Yii', |
|
'version' => '1.0', |
|
'options' => [ |
|
'namespace' => false, |
|
'unittest' => false, |
|
], |
|
'features' => [ |
|
'mvc', |
|
], |
|
]; |
|
$b = [ |
|
'version' => '1.1', |
|
'options' => [ |
|
'unittest' => true, |
|
], |
|
'features' => [ |
|
'gii', |
|
], |
|
]; |
|
$c = [ |
|
'version' => '2.0', |
|
'options' => [ |
|
'namespace' => true, |
|
], |
|
'features' => [ |
|
'debug', |
|
], |
|
]; |
|
|
|
$result = ArrayHelper::merge($a, $b, $c); |
|
$expected = [ |
|
'name' => 'Yii', |
|
'version' => '2.0', |
|
'options' => [ |
|
'namespace' => true, |
|
'unittest' => true, |
|
], |
|
'features' => [ |
|
'mvc', |
|
'gii', |
|
'debug', |
|
], |
|
]; |
|
|
|
$this->assertEquals($expected, $result); |
|
} |
|
|
|
public function testIndex() |
|
{ |
|
$array = [ |
|
['id' => '123', 'data' => 'abc'], |
|
['id' => '345', 'data' => 'def'], |
|
]; |
|
$result = ArrayHelper::index($array, 'id'); |
|
$this->assertEquals([ |
|
'123' => ['id' => '123', 'data' => 'abc'], |
|
'345' => ['id' => '345', 'data' => 'def'], |
|
], $result); |
|
|
|
$result = ArrayHelper::index($array, function ($element) { |
|
return $element['data']; |
|
}); |
|
$this->assertEquals([ |
|
'abc' => ['id' => '123', 'data' => 'abc'], |
|
'def' => ['id' => '345', 'data' => 'def'], |
|
], $result); |
|
} |
|
|
|
public function testGetColumn() |
|
{ |
|
$array = [ |
|
'a' => ['id' => '123', 'data' => 'abc'], |
|
'b' => ['id' => '345', 'data' => 'def'], |
|
]; |
|
$result = ArrayHelper::getColumn($array, 'id'); |
|
$this->assertEquals(['a' => '123', 'b' => '345'], $result); |
|
$result = ArrayHelper::getColumn($array, 'id', false); |
|
$this->assertEquals(['123', '345'], $result); |
|
|
|
$result = ArrayHelper::getColumn($array, function ($element) { |
|
return $element['data']; |
|
}); |
|
$this->assertEquals(['a' => 'abc', 'b' => 'def'], $result); |
|
$result = ArrayHelper::getColumn($array, function ($element) { |
|
return $element['data']; |
|
}, false); |
|
$this->assertEquals(['abc', 'def'], $result); |
|
} |
|
|
|
public function testMap() |
|
{ |
|
$array = [ |
|
['id' => '123', 'name' => 'aaa', 'class' => 'x'], |
|
['id' => '124', 'name' => 'bbb', 'class' => 'x'], |
|
['id' => '345', 'name' => 'ccc', 'class' => 'y'], |
|
]; |
|
|
|
$result = ArrayHelper::map($array, 'id', 'name'); |
|
$this->assertEquals([ |
|
'123' => 'aaa', |
|
'124' => 'bbb', |
|
'345' => 'ccc', |
|
], $result); |
|
|
|
$result = ArrayHelper::map($array, 'id', 'name', 'class'); |
|
$this->assertEquals([ |
|
'x' => [ |
|
'123' => 'aaa', |
|
'124' => 'bbb', |
|
], |
|
'y' => [ |
|
'345' => 'ccc', |
|
], |
|
], $result); |
|
} |
|
}
|
|
|