StandardTest::testGet()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 21
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 13
nc 1
nop 0
dl 0
loc 21
c 0
b 0
f 0
cc 1
rs 9.8333
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2021-2025
6
 */
7
8
9
namespace Aimeos\Admin\JsonAdm\Rule;
10
11
12
class StandardTest extends \PHPUnit\Framework\TestCase
13
{
14
	private $context;
15
	private $object;
16
	private $view;
17
18
19
	protected function setUp() : void
20
	{
21
		$this->context = \TestHelper::context();
22
		$this->view = $this->context->view();
23
24
		$this->object = new \Aimeos\Admin\JsonAdm\Rule\Standard( $this->context, 'rule' );
25
		$this->object->setAimeos( \TestHelper::getAimeos() );
26
		$this->object->setView( $this->view );
27
	}
28
29
30
	public function testGet()
31
	{
32
		$params = array(
33
			'filter' => array(
34
				'==' => array( 'rule.type' => 'catalog' )
35
			),
36
		);
37
		$helper = new \Aimeos\Base\View\Helper\Param\Standard( $this->view, $params );
38
		$this->view->addHelper( 'param', $helper );
39
40
		$response = $this->object->get( $this->view->request(), $this->view->response() );
41
		$result = json_decode( (string) $response->getBody(), true );
42
43
		$this->assertEquals( 200, $response->getStatusCode() );
44
		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
45
46
		$this->assertEquals( 1, $result['meta']['total'] );
47
		$this->assertEquals( 1, count( $result['data'] ) );
48
		$this->assertEquals( 'rule', $result['data'][0]['type'] );
49
50
		$this->assertArrayNotHasKey( 'errors', $result );
51
	}
52
}
53