@@ -7,15 +7,15 @@ |
||
| 7 | 7 | |
| 8 | 8 | |
| 9 | 9 | error_reporting( -1 ); |
| 10 | -ini_set( 'display_errors', '1' ); |
|
| 10 | +ini_set('display_errors', '1'); |
|
| 11 | 11 | |
| 12 | -date_default_timezone_set( 'UTC' ); |
|
| 12 | +date_default_timezone_set('UTC'); |
|
| 13 | 13 | |
| 14 | 14 | // Set locale settings to reasonable defaults |
| 15 | -setlocale( LC_ALL, 'en_US.UTF-8' ); |
|
| 16 | -setlocale( LC_NUMERIC, 'POSIX' ); |
|
| 17 | -setlocale( LC_CTYPE, 'en_US.UTF-8' ); |
|
| 18 | -setlocale( LC_TIME, 'POSIX' ); |
|
| 15 | +setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 16 | +setlocale(LC_NUMERIC, 'POSIX'); |
|
| 17 | +setlocale(LC_CTYPE, 'en_US.UTF-8'); |
|
| 18 | +setlocale(LC_TIME, 'POSIX'); |
|
| 19 | 19 | |
| 20 | 20 | require_once 'TestHelperJadm.php'; |
| 21 | 21 | \TestHelperJadm::bootstrap(); |
@@ -107,17 +107,17 @@ |
||
| 107 | 107 | * @param array $include List of resource types that should be fetched |
| 108 | 108 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
| 109 | 109 | */ |
| 110 | - protected function getListItems( array $items, array $include ) |
|
| 110 | + protected function getListItems(array $items, array $include) |
|
| 111 | 111 | { |
| 112 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'text/lists' ); |
|
| 112 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'text/lists'); |
|
| 113 | 113 | |
| 114 | 114 | $search = $manager->createSearch(); |
| 115 | 115 | $expr = array( |
| 116 | - $search->compare( '==', 'text.lists.parentid', array_keys( $items ) ), |
|
| 117 | - $search->compare( '==', 'text.lists.domain', $include ), |
|
| 116 | + $search->compare('==', 'text.lists.parentid', array_keys($items)), |
|
| 117 | + $search->compare('==', 'text.lists.domain', $include), |
|
| 118 | 118 | ); |
| 119 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 119 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 120 | 120 | |
| 121 | - return $manager->searchItems( $search ); |
|
| 121 | + return $manager->searchItems($search); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -107,17 +107,17 @@ |
||
| 107 | 107 | * @param array $include List of resource types that should be fetched |
| 108 | 108 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
| 109 | 109 | */ |
| 110 | - protected function getListItems( array $items, array $include ) |
|
| 110 | + protected function getListItems(array $items, array $include) |
|
| 111 | 111 | { |
| 112 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'price/lists' ); |
|
| 112 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'price/lists'); |
|
| 113 | 113 | |
| 114 | 114 | $search = $manager->createSearch(); |
| 115 | 115 | $expr = array( |
| 116 | - $search->compare( '==', 'price.lists.parentid', array_keys( $items ) ), |
|
| 117 | - $search->compare( '==', 'price.lists.domain', $include ), |
|
| 116 | + $search->compare('==', 'price.lists.parentid', array_keys($items)), |
|
| 117 | + $search->compare('==', 'price.lists.domain', $include), |
|
| 118 | 118 | ); |
| 119 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 119 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 120 | 120 | |
| 121 | - return $manager->searchItems( $search ); |
|
| 121 | + return $manager->searchItems($search); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -107,17 +107,17 @@ |
||
| 107 | 107 | * @param array $include List of resource types that should be fetched |
| 108 | 108 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
| 109 | 109 | */ |
| 110 | - protected function getListItems( array $items, array $include ) |
|
| 110 | + protected function getListItems(array $items, array $include) |
|
| 111 | 111 | { |
| 112 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'attribute/lists' ); |
|
| 112 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'attribute/lists'); |
|
| 113 | 113 | |
| 114 | 114 | $search = $manager->createSearch(); |
| 115 | 115 | $expr = array( |
| 116 | - $search->compare( '==', 'attribute.lists.parentid', array_keys( $items ) ), |
|
| 117 | - $search->compare( '==', 'attribute.lists.domain', $include ), |
|
| 116 | + $search->compare('==', 'attribute.lists.parentid', array_keys($items)), |
|
| 117 | + $search->compare('==', 'attribute.lists.domain', $include), |
|
| 118 | 118 | ); |
| 119 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 119 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 120 | 120 | |
| 121 | - return $manager->searchItems( $search ); |
|
| 121 | + return $manager->searchItems($search); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -107,17 +107,17 @@ |
||
| 107 | 107 | * @param array $include List of resource types that should be fetched |
| 108 | 108 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
| 109 | 109 | */ |
| 110 | - protected function getListItems( array $items, array $include ) |
|
| 110 | + protected function getListItems(array $items, array $include) |
|
| 111 | 111 | { |
| 112 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service/lists' ); |
|
| 112 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service/lists'); |
|
| 113 | 113 | |
| 114 | 114 | $search = $manager->createSearch(); |
| 115 | 115 | $expr = array( |
| 116 | - $search->compare( '==', 'service.lists.parentid', array_keys( $items ) ), |
|
| 117 | - $search->compare( '==', 'service.lists.domain', $include ), |
|
| 116 | + $search->compare('==', 'service.lists.parentid', array_keys($items)), |
|
| 117 | + $search->compare('==', 'service.lists.domain', $include), |
|
| 118 | 118 | ); |
| 119 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 119 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 120 | 120 | |
| 121 | - return $manager->searchItems( $search ); |
|
| 121 | + return $manager->searchItems($search); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -107,17 +107,17 @@ |
||
| 107 | 107 | * @param array $include List of resource types that should be fetched |
| 108 | 108 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
| 109 | 109 | */ |
| 110 | - protected function getListItems( array $items, array $include ) |
|
| 110 | + protected function getListItems(array $items, array $include) |
|
| 111 | 111 | { |
| 112 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'media/lists' ); |
|
| 112 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'media/lists'); |
|
| 113 | 113 | |
| 114 | 114 | $search = $manager->createSearch(); |
| 115 | 115 | $expr = array( |
| 116 | - $search->compare( '==', 'media.lists.parentid', array_keys( $items ) ), |
|
| 117 | - $search->compare( '==', 'media.lists.domain', $include ), |
|
| 116 | + $search->compare('==', 'media.lists.parentid', array_keys($items)), |
|
| 117 | + $search->compare('==', 'media.lists.domain', $include), |
|
| 118 | 118 | ); |
| 119 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 119 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 120 | 120 | |
| 121 | - return $manager->searchItems( $search ); |
|
| 121 | + return $manager->searchItems($search); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $this->context = \TestHelperJadm::getContext(); |
| 23 | 23 | $this->view = $this->context->getView(); |
| 24 | 24 | |
| 25 | - $this->object = new \Aimeos\Admin\JsonAdm\Catalog\Standard( $this->context, $this->view, $templatePaths, 'catalog' ); |
|
| 25 | + $this->object = new \Aimeos\Admin\JsonAdm\Catalog\Standard($this->context, $this->view, $templatePaths, 'catalog'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | |
@@ -30,145 +30,145 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $params = array( |
| 32 | 32 | 'filter' => array( |
| 33 | - '==' => array( 'catalog.code' => 'cafe' ) |
|
| 33 | + '==' => array('catalog.code' => 'cafe') |
|
| 34 | 34 | ), |
| 35 | 35 | 'include' => 'text' |
| 36 | 36 | ); |
| 37 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 38 | - $this->view->addHelper( 'param', $helper ); |
|
| 37 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 38 | + $this->view->addHelper('param', $helper); |
|
| 39 | 39 | |
| 40 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 41 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 40 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 41 | + $result = json_decode((string) $response->getBody(), true); |
|
| 42 | 42 | |
| 43 | 43 | |
| 44 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 45 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 44 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 45 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 46 | 46 | |
| 47 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 48 | - $this->assertEquals( 1, count( $result['data'] ) ); |
|
| 49 | - $this->assertEquals( 'catalog', $result['data'][0]['type'] ); |
|
| 50 | - $this->assertEquals( 6, count( $result['data'][0]['relationships']['text'] ) ); |
|
| 51 | - $this->assertEquals( 6, count( $result['included'] ) ); |
|
| 47 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 48 | + $this->assertEquals(1, count($result['data'])); |
|
| 49 | + $this->assertEquals('catalog', $result['data'][0]['type']); |
|
| 50 | + $this->assertEquals(6, count($result['data'][0]['relationships']['text'])); |
|
| 51 | + $this->assertEquals(6, count($result['included'])); |
|
| 52 | 52 | |
| 53 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 53 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | |
| 57 | 57 | public function testGetTree() |
| 58 | 58 | { |
| 59 | 59 | $params = array( |
| 60 | - 'id' => $this->getCatalogItem( 'group' )->getId(), |
|
| 60 | + 'id' => $this->getCatalogItem('group')->getId(), |
|
| 61 | 61 | 'filter' => array( |
| 62 | - '==' => array( 'catalog.status' => 1 ) |
|
| 62 | + '==' => array('catalog.status' => 1) |
|
| 63 | 63 | ), |
| 64 | 64 | 'include' => 'catalog,text' |
| 65 | 65 | ); |
| 66 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 67 | - $this->view->addHelper( 'param', $helper ); |
|
| 66 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 67 | + $this->view->addHelper('param', $helper); |
|
| 68 | 68 | |
| 69 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 70 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 69 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 70 | + $result = json_decode((string) $response->getBody(), true); |
|
| 71 | 71 | |
| 72 | 72 | |
| 73 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 74 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 73 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 74 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 75 | 75 | |
| 76 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 77 | - $this->assertEquals( 'catalog', $result['data']['type'] ); |
|
| 78 | - $this->assertEquals( 2, count( $result['data']['relationships']['catalog'] ) ); |
|
| 79 | - $this->assertEquals( 2, count( $result['included'] ) ); |
|
| 76 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 77 | + $this->assertEquals('catalog', $result['data']['type']); |
|
| 78 | + $this->assertEquals(2, count($result['data']['relationships']['catalog'])); |
|
| 79 | + $this->assertEquals(2, count($result['included'])); |
|
| 80 | 80 | |
| 81 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 81 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | |
| 85 | 85 | public function testPatch() |
| 86 | 86 | { |
| 87 | - $stub = $this->getCatalogMock( array( 'getItem', 'moveItem', 'saveItem' ) ); |
|
| 87 | + $stub = $this->getCatalogMock(array('getItem', 'moveItem', 'saveItem')); |
|
| 88 | 88 | |
| 89 | - $stub->expects( $this->once() )->method( 'moveItem' ); |
|
| 90 | - $stub->expects( $this->once() )->method( 'saveItem' ); |
|
| 91 | - $stub->expects( $this->exactly( 2 ) )->method( 'getItem' ) // 2x due to decorator |
|
| 92 | - ->will( $this->returnValue( $stub->createItem() ) ); |
|
| 89 | + $stub->expects($this->once())->method('moveItem'); |
|
| 90 | + $stub->expects($this->once())->method('saveItem'); |
|
| 91 | + $stub->expects($this->exactly(2))->method('getItem') // 2x due to decorator |
|
| 92 | + ->will($this->returnValue($stub->createItem())); |
|
| 93 | 93 | |
| 94 | 94 | |
| 95 | - $params = array( 'id' => '-1' ); |
|
| 96 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 97 | - $this->view->addHelper( 'param', $helper ); |
|
| 95 | + $params = array('id' => '-1'); |
|
| 96 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 97 | + $this->view->addHelper('param', $helper); |
|
| 98 | 98 | |
| 99 | 99 | $body = '{"data": {"parentid": "1", "targetid": 2, "type": "catalog", "attributes": {"catalog.label": "test"}}}'; |
| 100 | - $request = $this->view->request()->withBody( $this->view->response()->createStreamFromString( $body ) ); |
|
| 100 | + $request = $this->view->request()->withBody($this->view->response()->createStreamFromString($body)); |
|
| 101 | 101 | |
| 102 | - $response = $this->object->patch( $request, $this->view->response() ); |
|
| 103 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 102 | + $response = $this->object->patch($request, $this->view->response()); |
|
| 103 | + $result = json_decode((string) $response->getBody(), true); |
|
| 104 | 104 | |
| 105 | 105 | |
| 106 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 107 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 106 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 107 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 108 | 108 | |
| 109 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 110 | - $this->assertArrayHasKey( 'data', $result ); |
|
| 111 | - $this->assertEquals( 'catalog', $result['data']['type'] ); |
|
| 109 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 110 | + $this->assertArrayHasKey('data', $result); |
|
| 111 | + $this->assertEquals('catalog', $result['data']['type']); |
|
| 112 | 112 | |
| 113 | - $this->assertArrayNotHasKey( 'included', $result ); |
|
| 114 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 113 | + $this->assertArrayNotHasKey('included', $result); |
|
| 114 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | |
| 118 | 118 | public function testPost() |
| 119 | 119 | { |
| 120 | - $stub = $this->getCatalogMock( array( 'getItem', 'insertItem' ) ); |
|
| 120 | + $stub = $this->getCatalogMock(array('getItem', 'insertItem')); |
|
| 121 | 121 | |
| 122 | - $stub->expects( $this->any() )->method( 'getItem' ) |
|
| 123 | - ->will( $this->returnValue( $stub->createItem() ) ); |
|
| 124 | - $stub->expects( $this->once() )->method( 'insertItem' ); |
|
| 122 | + $stub->expects($this->any())->method('getItem') |
|
| 123 | + ->will($this->returnValue($stub->createItem())); |
|
| 124 | + $stub->expects($this->once())->method('insertItem'); |
|
| 125 | 125 | |
| 126 | 126 | |
| 127 | 127 | $body = '{"data": {"type": "catalog", "attributes": {"catalog.code": "test", "catalog.label": "Test catalog"}}}'; |
| 128 | - $request = $this->view->request()->withBody( $this->view->response()->createStreamFromString( $body ) ); |
|
| 128 | + $request = $this->view->request()->withBody($this->view->response()->createStreamFromString($body)); |
|
| 129 | 129 | |
| 130 | - $response = $this->object->post( $request, $this->view->response() ); |
|
| 131 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 130 | + $response = $this->object->post($request, $this->view->response()); |
|
| 131 | + $result = json_decode((string) $response->getBody(), true); |
|
| 132 | 132 | |
| 133 | 133 | |
| 134 | - $this->assertEquals( 201, $response->getStatusCode() ); |
|
| 135 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 134 | + $this->assertEquals(201, $response->getStatusCode()); |
|
| 135 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 136 | 136 | |
| 137 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 138 | - $this->assertArrayHasKey( 'data', $result ); |
|
| 139 | - $this->assertEquals( 'catalog', $result['data']['type'] ); |
|
| 137 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 138 | + $this->assertArrayHasKey('data', $result); |
|
| 139 | + $this->assertEquals('catalog', $result['data']['type']); |
|
| 140 | 140 | |
| 141 | - $this->assertArrayNotHasKey( 'included', $result ); |
|
| 142 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 141 | + $this->assertArrayNotHasKey('included', $result); |
|
| 142 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | |
| 146 | - protected function getCatalogItem( $code ) |
|
| 146 | + protected function getCatalogItem($code) |
|
| 147 | 147 | { |
| 148 | - $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( $this->context ); |
|
| 148 | + $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager($this->context); |
|
| 149 | 149 | $search = $manager->createSearch(); |
| 150 | - $search->setConditions( $search->compare( '==', 'catalog.code', $code ) ); |
|
| 151 | - $items = $manager->searchItems( $search ); |
|
| 150 | + $search->setConditions($search->compare('==', 'catalog.code', $code)); |
|
| 151 | + $items = $manager->searchItems($search); |
|
| 152 | 152 | |
| 153 | - if( ( $item = reset( $items ) ) === false ) { |
|
| 154 | - throw new \RuntimeException( sprintf( 'No catalog item with code "%1$s" found', $code ) ); |
|
| 153 | + if (($item = reset($items)) === false) { |
|
| 154 | + throw new \RuntimeException(sprintf('No catalog item with code "%1$s" found', $code)); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | return $item; |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | |
| 161 | - protected function getCatalogMock( array $methods ) |
|
| 161 | + protected function getCatalogMock(array $methods) |
|
| 162 | 162 | { |
| 163 | 163 | $name = 'ClientJsonAdmStandard'; |
| 164 | - $this->context->getConfig()->set( 'mshop/catalog/manager/name', $name ); |
|
| 164 | + $this->context->getConfig()->set('mshop/catalog/manager/name', $name); |
|
| 165 | 165 | |
| 166 | - $stub = $this->getMockBuilder( '\\Aimeos\\MShop\\Catalog\\Manager\\Standard' ) |
|
| 167 | - ->setConstructorArgs( array( $this->context ) ) |
|
| 168 | - ->setMethods( $methods ) |
|
| 166 | + $stub = $this->getMockBuilder('\\Aimeos\\MShop\\Catalog\\Manager\\Standard') |
|
| 167 | + ->setConstructorArgs(array($this->context)) |
|
| 168 | + ->setMethods($methods) |
|
| 169 | 169 | ->getMock(); |
| 170 | 170 | |
| 171 | - \Aimeos\MShop\Product\Manager\Factory::injectManager( '\\Aimeos\\MShop\\Catalog\\Manager\\' . $name, $stub ); |
|
| 171 | + \Aimeos\MShop\Product\Manager\Factory::injectManager('\\Aimeos\\MShop\\Catalog\\Manager\\' . $name, $stub); |
|
| 172 | 172 | |
| 173 | 173 | return $stub; |
| 174 | 174 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $templatePaths = \TestHelperJadm::getJsonadmPaths(); |
| 23 | 23 | $this->view = $this->context->getView(); |
| 24 | 24 | |
| 25 | - $this->object = new \Aimeos\Admin\JsonAdm\Supplier\Standard( $this->context, $this->view, $templatePaths, 'supplier' ); |
|
| 25 | + $this->object = new \Aimeos\Admin\JsonAdm\Supplier\Standard($this->context, $this->view, $templatePaths, 'supplier'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | |
@@ -30,28 +30,28 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $params = array( |
| 32 | 32 | 'filter' => array( |
| 33 | - '==' => array( 'supplier.code' => 'unitCode001' ) |
|
| 33 | + '==' => array('supplier.code' => 'unitCode001') |
|
| 34 | 34 | ), |
| 35 | 35 | 'include' => 'text,supplier/address' |
| 36 | 36 | ); |
| 37 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 38 | - $this->view->addHelper( 'param', $helper ); |
|
| 37 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 38 | + $this->view->addHelper('param', $helper); |
|
| 39 | 39 | |
| 40 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 41 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 40 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 41 | + $result = json_decode((string) $response->getBody(), true); |
|
| 42 | 42 | |
| 43 | 43 | |
| 44 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 45 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 44 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 45 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 46 | 46 | |
| 47 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 48 | - $this->assertEquals( 1, count( $result['data'] ) ); |
|
| 49 | - $this->assertEquals( 'supplier', $result['data'][0]['type'] ); |
|
| 50 | - $this->assertEquals( 3, count( $result['data'][0]['relationships']['text'] ) ); |
|
| 51 | - $this->assertEquals( 1, count( $result['data'][0]['relationships']['supplier/address'] ) ); |
|
| 52 | - $this->assertEquals( 4, count( $result['included'] ) ); |
|
| 47 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 48 | + $this->assertEquals(1, count($result['data'])); |
|
| 49 | + $this->assertEquals('supplier', $result['data'][0]['type']); |
|
| 50 | + $this->assertEquals(3, count($result['data'][0]['relationships']['text'])); |
|
| 51 | + $this->assertEquals(1, count($result['data'][0]['relationships']['supplier/address'])); |
|
| 52 | + $this->assertEquals(4, count($result['included'])); |
|
| 53 | 53 | |
| 54 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 54 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | |
@@ -64,23 +64,23 @@ discard block |
||
| 64 | 64 | 'sort' => 'supplier.id', |
| 65 | 65 | 'include' => 'supplier/address' |
| 66 | 66 | ); |
| 67 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 68 | - $this->view->addHelper( 'param', $helper ); |
|
| 67 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 68 | + $this->view->addHelper('param', $helper); |
|
| 69 | 69 | |
| 70 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 71 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 70 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 71 | + $result = json_decode((string) $response->getBody(), true); |
|
| 72 | 72 | |
| 73 | 73 | |
| 74 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 75 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 74 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 75 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 76 | 76 | |
| 77 | - $this->assertEquals( 3, $result['meta']['total'] ); |
|
| 78 | - $this->assertEquals( 3, count( $result['data'] ) ); |
|
| 79 | - $this->assertEquals( 'supplier', $result['data'][0]['type'] ); |
|
| 80 | - $this->assertEquals( 2, count( $result['data'][0]['attributes'] ) ); |
|
| 81 | - $this->assertEquals( 1, count( $result['data'][0]['relationships']['supplier/address'] ) ); |
|
| 82 | - $this->assertEquals( 3, count( $result['included'] ) ); |
|
| 77 | + $this->assertEquals(3, $result['meta']['total']); |
|
| 78 | + $this->assertEquals(3, count($result['data'])); |
|
| 79 | + $this->assertEquals('supplier', $result['data'][0]['type']); |
|
| 80 | + $this->assertEquals(2, count($result['data'][0]['attributes'])); |
|
| 81 | + $this->assertEquals(1, count($result['data'][0]['relationships']['supplier/address'])); |
|
| 82 | + $this->assertEquals(3, count($result['included'])); |
|
| 83 | 83 | |
| 84 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 84 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | \ No newline at end of file |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $templatePaths = \TestHelperJadm::getJsonadmPaths(); |
| 23 | 23 | $this->view = $this->context->getView(); |
| 24 | 24 | |
| 25 | - $this->object = new \Aimeos\Admin\JsonAdm\Order\Standard( $this->context, $this->view, $templatePaths, 'order' ); |
|
| 25 | + $this->object = new \Aimeos\Admin\JsonAdm\Order\Standard($this->context, $this->view, $templatePaths, 'order'); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | |
@@ -30,26 +30,26 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $params = array( |
| 32 | 32 | 'filter' => array( |
| 33 | - '==' => array( 'order.editor' => 'core:unittest' ) |
|
| 33 | + '==' => array('order.editor' => 'core:unittest') |
|
| 34 | 34 | ), |
| 35 | 35 | 'aggregate' => 'order.cdate', |
| 36 | 36 | ); |
| 37 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 38 | - $this->view->addHelper( 'param', $helper ); |
|
| 37 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 38 | + $this->view->addHelper('param', $helper); |
|
| 39 | 39 | |
| 40 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 41 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 40 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 41 | + $result = json_decode((string) $response->getBody(), true); |
|
| 42 | 42 | |
| 43 | 43 | |
| 44 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 45 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 44 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 45 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 46 | 46 | |
| 47 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 48 | - $this->assertEquals( 1, count( $result['data'] ) ); |
|
| 49 | - $this->assertEquals( 'aggregate', $result['data'][0]['type'] ); |
|
| 50 | - $this->assertGreaterThan( 0, count( $result['data'][0]['attributes'] ) ); |
|
| 47 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 48 | + $this->assertEquals(1, count($result['data'])); |
|
| 49 | + $this->assertEquals('aggregate', $result['data'][0]['type']); |
|
| 50 | + $this->assertGreaterThan(0, count($result['data'][0]['attributes'])); |
|
| 51 | 51 | |
| 52 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 52 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | |
@@ -57,28 +57,28 @@ discard block |
||
| 57 | 57 | { |
| 58 | 58 | $params = array( |
| 59 | 59 | 'filter' => array( |
| 60 | - '==' => array( 'order.datepayment' => '2008-02-15 12:34:56' ) |
|
| 60 | + '==' => array('order.datepayment' => '2008-02-15 12:34:56') |
|
| 61 | 61 | ), |
| 62 | 62 | 'include' => 'order/base,order/status' |
| 63 | 63 | ); |
| 64 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 65 | - $this->view->addHelper( 'param', $helper ); |
|
| 64 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 65 | + $this->view->addHelper('param', $helper); |
|
| 66 | 66 | |
| 67 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 68 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 67 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 68 | + $result = json_decode((string) $response->getBody(), true); |
|
| 69 | 69 | |
| 70 | 70 | |
| 71 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 72 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 71 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 72 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 73 | 73 | |
| 74 | - $this->assertEquals( 1, $result['meta']['total'] ); |
|
| 75 | - $this->assertEquals( 1, count( $result['data'] ) ); |
|
| 76 | - $this->assertEquals( 'order', $result['data'][0]['type'] ); |
|
| 77 | - $this->assertEquals( 3, count( $result['data'][0]['relationships']['order/status'] ) ); |
|
| 78 | - $this->assertEquals( 1, count( $result['data'][0]['relationships']['order/base'] ) ); |
|
| 79 | - $this->assertEquals( 4, count( $result['included'] ) ); |
|
| 74 | + $this->assertEquals(1, $result['meta']['total']); |
|
| 75 | + $this->assertEquals(1, count($result['data'])); |
|
| 76 | + $this->assertEquals('order', $result['data'][0]['type']); |
|
| 77 | + $this->assertEquals(3, count($result['data'][0]['relationships']['order/status'])); |
|
| 78 | + $this->assertEquals(1, count($result['data'][0]['relationships']['order/base'])); |
|
| 79 | + $this->assertEquals(4, count($result['included'])); |
|
| 80 | 80 | |
| 81 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 81 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | |
@@ -91,23 +91,23 @@ discard block |
||
| 91 | 91 | 'sort' => 'order.id', |
| 92 | 92 | 'include' => 'order/status' |
| 93 | 93 | ); |
| 94 | - $helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params ); |
|
| 95 | - $this->view->addHelper( 'param', $helper ); |
|
| 94 | + $helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params); |
|
| 95 | + $this->view->addHelper('param', $helper); |
|
| 96 | 96 | |
| 97 | - $response = $this->object->get( $this->view->request(), $this->view->response() ); |
|
| 98 | - $result = json_decode( (string) $response->getBody(), true ); |
|
| 97 | + $response = $this->object->get($this->view->request(), $this->view->response()); |
|
| 98 | + $result = json_decode((string) $response->getBody(), true); |
|
| 99 | 99 | |
| 100 | 100 | |
| 101 | - $this->assertEquals( 200, $response->getStatusCode() ); |
|
| 102 | - $this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) ); |
|
| 101 | + $this->assertEquals(200, $response->getStatusCode()); |
|
| 102 | + $this->assertEquals(1, count($response->getHeader('Content-Type'))); |
|
| 103 | 103 | |
| 104 | - $this->assertGreaterThanOrEqual( 4, $result['meta']['total'] ); |
|
| 105 | - $this->assertGreaterThanOrEqual( 4, count( $result['data'] ) ); |
|
| 106 | - $this->assertEquals( 'order', $result['data'][0]['type'] ); |
|
| 107 | - $this->assertEquals( 2, count( $result['data'][0]['attributes'] ) ); |
|
| 108 | - $this->assertGreaterThanOrEqual( 3, count( $result['data'][0]['relationships']['order/status'] ) ); |
|
| 109 | - $this->assertGreaterThanOrEqual( 11, count( $result['included'] ) ); |
|
| 104 | + $this->assertGreaterThanOrEqual(4, $result['meta']['total']); |
|
| 105 | + $this->assertGreaterThanOrEqual(4, count($result['data'])); |
|
| 106 | + $this->assertEquals('order', $result['data'][0]['type']); |
|
| 107 | + $this->assertEquals(2, count($result['data'][0]['attributes'])); |
|
| 108 | + $this->assertGreaterThanOrEqual(3, count($result['data'][0]['relationships']['order/status'])); |
|
| 109 | + $this->assertGreaterThanOrEqual(11, count($result['included'])); |
|
| 110 | 110 | |
| 111 | - $this->assertArrayNotHasKey( 'errors', $result ); |
|
| 111 | + $this->assertArrayNotHasKey('errors', $result); |
|
| 112 | 112 | } |
| 113 | 113 | } |