Passed
Push — master ( bad971...735eb7 )
by Aimeos
02:26
created

StandardTest::testGet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 20
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 13
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 20
rs 9.8333
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2021
6
 */
7
8
9
namespace Aimeos\Admin\JsonAdm\Rule\Config;
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 = \TestHelperJadm::getContext();
22
		$this->view = $this->context->getView();
23
24
		$this->object = new \Aimeos\Admin\JsonAdm\Rule\Config\Standard( $this->context, 'rule/config' );
25
		$this->object->setAimeos( \TestHelperJadm::getAimeos() );
26
		$this->object->setView( $this->view );
27
	}
28
29
30
	public function testGet()
31
	{
32
		$params = array(
33
			'id' => 'Percent,Category',
34
			'type' => 'catalog',
35
		);
36
		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params );
37
		$this->view->addHelper( 'param', $helper );
38
39
		$response = $this->object->get( $this->view->request(), $this->view->response() );
40
		$result = json_decode( (string) $response->getBody(), true );
41
42
		$this->assertEquals( 200, $response->getStatusCode() );
43
		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
44
45
		$this->assertEquals( 1, $result['meta']['total'] );
46
		$this->assertIsArray( $result['data'] );
47
		$this->assertEquals( 'category.code', $result['data'][0]['id'] );
48
49
		$this->assertArrayNotHasKey( 'errors', $result );
50
	}
51
}
52