SortTest.php 4.35 KB
Newer Older
Qiang Xue committed
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
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yiiunit\framework\data;
use yii\web\UrlManager;
use yiiunit\TestCase;
use yii\data\Sort;


/**
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class SortTest extends TestCase
{
	public function testGetOrders()
	{
		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
		));

		$orders = $sort->getOrders();
		$this->assertEquals(3, count($orders));
		$this->assertEquals(Sort::ASC, $orders['age']);
		$this->assertEquals(Sort::DESC, $orders['first_name']);
		$this->assertEquals(Sort::DESC, $orders['last_name']);

		$sort->enableMultiSort = false;
		$orders = $sort->getOrders(true);
		$this->assertEquals(1, count($orders));
		$this->assertEquals(Sort::ASC, $orders['age']);
	}

	public function testGetAttributeOrders()
	{
		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
		));

		$orders = $sort->getAttributeOrders();
		$this->assertEquals(2, count($orders));
		$this->assertEquals(Sort::ASC, $orders['age']);
		$this->assertEquals(Sort::DESC, $orders['name']);

		$sort->enableMultiSort = false;
		$orders = $sort->getAttributeOrders(true);
		$this->assertEquals(1, count($orders));
		$this->assertEquals(Sort::ASC, $orders['age']);
	}

	public function testGetAttributeOrder()
	{
		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
		));

		$this->assertEquals(Sort::ASC, $sort->getAttributeOrder('age'));
		$this->assertEquals(Sort::DESC, $sort->getAttributeOrder('name'));
		$this->assertNull($sort->getAttributeOrder('xyz'));
	}

Qiang Xue committed
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
	public function testCreateSortVar()
	{
		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
			'route' => 'site/index',
		));

		$this->assertEquals('age-desc.name-desc', $sort->createSortVar('age'));
		$this->assertEquals('name.age', $sort->createSortVar('name'));
	}

Qiang Xue committed
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
	public function testCreateUrl()
	{
		$manager = new UrlManager(array(
			'baseUrl' => '/index.php',
			'cache' => null,
		));

		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
			'urlManager' => $manager,
			'route' => 'site/index',
		));

		$this->assertEquals('/index.php?r=site/index&sort=age-desc.name-desc', $sort->createUrl('age'));
		$this->assertEquals('/index.php?r=site/index&sort=name.age', $sort->createUrl('name'));
	}

	public function testLink()
	{
		$this->mockApplication();
		$manager = new UrlManager(array(
			'baseUrl' => '/index.php',
			'cache' => null,
		));

		$sort = new Sort(array(
			'attributes' => array(
				'age',
				'name' => array(
					'asc' => array('first_name' => Sort::ASC, 'last_name' => Sort::ASC),
					'desc' => array('first_name' => Sort::DESC, 'last_name' => Sort::DESC),
				),
			),
			'params' => array(
				'sort' => 'age.name-desc'
			),
			'enableMultiSort' => true,
			'urlManager' => $manager,
			'route' => 'site/index',
		));

Qiang Xue committed
168
		$this->assertEquals('<a class="asc" href="/index.php?r=site/index&amp;sort=age-desc.name-desc" data-sort="age-desc.name-desc">Age</a>', $sort->link('age'));
Qiang Xue committed
169 170
	}
}