Completed
Push — master ( b46c0d...fe698d )
by Aimeos
06:27
created
controller/frontend/tests/Controller/Frontend/FactoryTest.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -17,92 +17,92 @@
 block discarded – undo
17 17
 {
18 18
 	public function testCreateController()
19 19
 	{
20
-		$controller = \Aimeos\Controller\Frontend\Factory::createController( \TestHelperFrontend::getContext(), 'basket' );
21
-		$this->assertInstanceOf( '\\Aimeos\\Controller\\Frontend\\Iface', $controller );
20
+		$controller = \Aimeos\Controller\Frontend\Factory::createController(\TestHelperFrontend::getContext(), 'basket');
21
+		$this->assertInstanceOf('\\Aimeos\\Controller\\Frontend\\Iface', $controller);
22 22
 	}
23 23
 
24 24
 
25 25
 	public function testCreateControllerEmpty()
26 26
 	{
27
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
28
-		\Aimeos\Controller\Frontend\Factory::createController( \TestHelperFrontend::getContext(), "\t\n" );
27
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
28
+		\Aimeos\Controller\Frontend\Factory::createController(\TestHelperFrontend::getContext(), "\t\n");
29 29
 	}
30 30
 
31 31
 
32 32
 	public function testCreateControllerInvalidName()
33 33
 	{
34
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
35
-		\Aimeos\Controller\Frontend\Factory::createController( \TestHelperFrontend::getContext(), '%^' );
34
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
35
+		\Aimeos\Controller\Frontend\Factory::createController(\TestHelperFrontend::getContext(), '%^');
36 36
 	}
37 37
 
38 38
 
39 39
 	public function testCreateControllerNotExisting()
40 40
 	{
41
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
42
-		\Aimeos\Controller\Frontend\Factory::createController( \TestHelperFrontend::getContext(), 'notexist' );
41
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
42
+		\Aimeos\Controller\Frontend\Factory::createController(\TestHelperFrontend::getContext(), 'notexist');
43 43
 	}
44 44
 
45 45
 
46 46
 	public function testCreateSubControllerNotExisting()
47 47
 	{
48
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
49
-		\Aimeos\Controller\Frontend\Factory::createController( \TestHelperFrontend::getContext(), 'basket/notexist' );
48
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
49
+		\Aimeos\Controller\Frontend\Factory::createController(\TestHelperFrontend::getContext(), 'basket/notexist');
50 50
 	}
51 51
 
52 52
 
53 53
 	public function testClear()
54 54
 	{
55
-		$cache = \Aimeos\Controller\Frontend\Factory::setCache( true );
55
+		$cache = \Aimeos\Controller\Frontend\Factory::setCache(true);
56 56
 
57 57
 		$context = \TestHelperFrontend::getContext();
58 58
 
59
-		$controller1 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
59
+		$controller1 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
60 60
 		\Aimeos\Controller\Frontend\Factory::clear();
61
-		$controller2 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
61
+		$controller2 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
62 62
 
63
-		\Aimeos\Controller\Frontend\Factory::setCache( $cache );
63
+		\Aimeos\Controller\Frontend\Factory::setCache($cache);
64 64
 
65
-		$this->assertNotSame( $controller1, $controller2 );
65
+		$this->assertNotSame($controller1, $controller2);
66 66
 	}
67 67
 
68 68
 
69 69
 	public function testClearSite()
70 70
 	{
71
-		$cache = \Aimeos\Controller\Frontend\Factory::setCache( true );
71
+		$cache = \Aimeos\Controller\Frontend\Factory::setCache(true);
72 72
 
73 73
 		$context = \TestHelperFrontend::getContext();
74 74
 
75
-		$basket1 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
76
-		$catalog1 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' );
77
-		\Aimeos\Controller\Frontend\Factory::clear( (string) $context );
75
+		$basket1 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
76
+		$catalog1 = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog');
77
+		\Aimeos\Controller\Frontend\Factory::clear((string) $context);
78 78
 
79
-		$basket2 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
80
-		$catalog2 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' );
79
+		$basket2 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
80
+		$catalog2 = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog');
81 81
 
82
-		\Aimeos\Controller\Frontend\Factory::setCache( $cache );
82
+		\Aimeos\Controller\Frontend\Factory::setCache($cache);
83 83
 
84
-		$this->assertNotSame( $basket1, $basket2 );
85
-		$this->assertNotSame( $catalog1, $catalog2 );
84
+		$this->assertNotSame($basket1, $basket2);
85
+		$this->assertNotSame($catalog1, $catalog2);
86 86
 	}
87 87
 
88 88
 
89 89
 	public function testClearSpecific()
90 90
 	{
91
-		$cache = \Aimeos\Controller\Frontend\Factory::setCache( true );
91
+		$cache = \Aimeos\Controller\Frontend\Factory::setCache(true);
92 92
 
93 93
 		$context = \TestHelperFrontend::getContext();
94 94
 
95
-		$basket1 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
96
-		$catalog1 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' );
97
-		\Aimeos\Controller\Frontend\Factory::clear( (string) $context, 'basket' );
95
+		$basket1 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
96
+		$catalog1 = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog');
97
+		\Aimeos\Controller\Frontend\Factory::clear((string) $context, 'basket');
98 98
 
99
-		$basket2 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'basket' );
100
-		$catalog2 = \Aimeos\Controller\Frontend\Factory::createController( $context, 'catalog' );
99
+		$basket2 = \Aimeos\Controller\Frontend\Factory::createController($context, 'basket');
100
+		$catalog2 = \Aimeos\Controller\Frontend\Factory::createController($context, 'catalog');
101 101
 
102
-		\Aimeos\Controller\Frontend\Factory::setCache( $cache );
102
+		\Aimeos\Controller\Frontend\Factory::setCache($cache);
103 103
 
104
-		$this->assertNotSame( $basket1, $basket2 );
105
-		$this->assertSame( $catalog1, $catalog2 );
104
+		$this->assertNotSame($basket1, $basket2);
105
+		$this->assertSame($catalog1, $catalog2);
106 106
 	}
107 107
 
108 108
 }
109 109
\ No newline at end of file
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Basket/Decorator/CategoryTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -12,35 +12,35 @@
 block discarded – undo
12 12
 	protected function setUp()
13 13
 	{
14 14
 		$this->context = \TestHelperFrontend::getContext();
15
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
16
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category( $object, $this->context );
15
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
16
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category($object, $this->context);
17 17
 	}
18 18
 
19 19
 
20 20
 	protected function tearDown()
21 21
 	{
22 22
 		$this->object->clear();
23
-		$this->context->getSession()->set( 'aimeos', array() );
23
+		$this->context->getSession()->set('aimeos', array());
24 24
 
25
-		unset( $this->object );
25
+		unset($this->object);
26 26
 	}
27 27
 
28 28
 
29 29
 	public function testAddProductWithCategory()
30 30
 	{
31
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' );
32
-		$item = $manager->findItem( 'CNE' );
31
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'product');
32
+		$item = $manager->findItem('CNE');
33 33
 
34
-		$this->object->addProduct( $item->getId(), 5 );
34
+		$this->object->addProduct($item->getId(), 5);
35 35
 	}
36 36
 
37 37
 
38 38
 	public function testAddProductNoCategory()
39 39
 	{
40
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' );
41
-		$item = $manager->findItem( 'ABCD' );
40
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'product');
41
+		$item = $manager->findItem('ABCD');
42 42
 
43
-		$this->setExpectedException( '\Aimeos\Controller\Frontend\Basket\Exception' );
44
-		$this->object->addProduct( $item->getId(), 5 );
43
+		$this->setExpectedException('\Aimeos\Controller\Frontend\Basket\Exception');
44
+		$this->object->addProduct($item->getId(), 5);
45 45
 	}
46 46
 }
Please login to merge, or discard this patch.
controller/frontend/config/controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 	'frontend' => array(
5 5
 		'basket' => array(
6 6
 			'decorators' => array(
7
-				'local' => array( 'Category' ),
7
+				'local' => array('Category'),
8 8
 			),
9 9
 		),
10 10
 	),
Please login to merge, or discard this patch.
controller/frontend/tests/TestHelperFrontend.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@  discard block
 block discarded – undo
15 15
 	public static function bootstrap()
16 16
 	{
17 17
 		self::getAimeos();
18
-		\Aimeos\MShop\Factory::setCache( false );
19
-		\Aimeos\Controller\Frontend\Factory::setCache( false );
18
+		\Aimeos\MShop\Factory::setCache(false);
19
+		\Aimeos\Controller\Frontend\Factory::setCache(false);
20 20
 	}
21 21
 
22 22
 
23
-	public static function getContext( $site = 'unittest' )
23
+	public static function getContext($site = 'unittest')
24 24
 	{
25
-		if( !isset( self::$context[$site] ) ) {
26
-			self::$context[$site] = self::createContext( $site );
25
+		if (!isset(self::$context[$site])) {
26
+			self::$context[$site] = self::createContext($site);
27 27
 		}
28 28
 
29 29
 		return clone self::$context[$site];
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
 
33 33
 	private static function getAimeos()
34 34
 	{
35
-		if( !isset( self::$aimeos ) )
35
+		if (!isset(self::$aimeos))
36 36
 		{
37 37
 			require_once 'Bootstrap.php';
38
-			spl_autoload_register( 'Aimeos\\Bootstrap::autoload' );
38
+			spl_autoload_register('Aimeos\\Bootstrap::autoload');
39 39
 
40
-			$extdir = dirname( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) );
41
-			self::$aimeos = new \Aimeos\Bootstrap( array( $extdir ), true );
40
+			$extdir = dirname(dirname(dirname(dirname(dirname(__FILE__)))));
41
+			self::$aimeos = new \Aimeos\Bootstrap(array($extdir), true);
42 42
 		}
43 43
 
44 44
 		return self::$aimeos;
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * @param string $site
50 50
 	 */
51
-	private static function createContext( $site )
51
+	private static function createContext($site)
52 52
 	{
53 53
 		$ctx = new \Aimeos\MShop\Context\Item\Standard();
54 54
 		$aimeos = self::getAimeos();
@@ -58,34 +58,34 @@  discard block
 block discarded – undo
58 58
 		$paths[] = __DIR__ . DIRECTORY_SEPARATOR . 'config';
59 59
 		$file = __DIR__ . DIRECTORY_SEPARATOR . 'confdoc.ser';
60 60
 
61
-		$conf = new \Aimeos\MW\Config\PHPArray( array(), $paths );
62
-		$conf = new \Aimeos\MW\Config\Decorator\Memory( $conf );
63
-		$conf = new \Aimeos\MW\Config\Decorator\Documentor( $conf, $file );
64
-		$ctx->setConfig( $conf );
61
+		$conf = new \Aimeos\MW\Config\PHPArray(array(), $paths);
62
+		$conf = new \Aimeos\MW\Config\Decorator\Memory($conf);
63
+		$conf = new \Aimeos\MW\Config\Decorator\Documentor($conf, $file);
64
+		$ctx->setConfig($conf);
65 65
 
66 66
 
67
-		$dbm = new \Aimeos\MW\DB\Manager\PDO( $conf );
68
-		$ctx->setDatabaseManager( $dbm );
67
+		$dbm = new \Aimeos\MW\DB\Manager\PDO($conf);
68
+		$ctx->setDatabaseManager($dbm);
69 69
 
70 70
 
71
-		$logger = new \Aimeos\MW\Logger\File( 'unittest.log', \Aimeos\MW\Logger\Base::DEBUG );
72
-		$ctx->setLogger( $logger );
71
+		$logger = new \Aimeos\MW\Logger\File('unittest.log', \Aimeos\MW\Logger\Base::DEBUG);
72
+		$ctx->setLogger($logger);
73 73
 
74 74
 
75
-		$i18n = new \Aimeos\MW\Translation\None( 'de' );
76
-		$ctx->setI18n( array( 'de' => $i18n ) );
75
+		$i18n = new \Aimeos\MW\Translation\None('de');
76
+		$ctx->setI18n(array('de' => $i18n));
77 77
 
78 78
 
79 79
 		$session = new \Aimeos\MW\Session\None();
80
-		$ctx->setSession( $session );
80
+		$ctx->setSession($session);
81 81
 
82 82
 
83
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $ctx );
84
-		$locale = $localeManager->bootstrap( $site, '', '', false );
85
-		$ctx->setLocale( $locale );
83
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($ctx);
84
+		$locale = $localeManager->bootstrap($site, '', '', false);
85
+		$ctx->setLocale($locale);
86 86
 
87 87
 
88
-		$ctx->setEditor( 'core:controller/frontend' );
88
+		$ctx->setEditor('core:controller/frontend');
89 89
 
90 90
 		return $ctx;
91 91
 	}
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Service/StandardTest.php 1 patch
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -16,130 +16,130 @@  discard block
 block discarded – undo
16 16
 
17 17
 	protected function setUp()
18 18
 	{
19
-		$this->object = new \Aimeos\Controller\Frontend\Service\Standard( \TestHelperFrontend::getContext() );
19
+		$this->object = new \Aimeos\Controller\Frontend\Service\Standard(\TestHelperFrontend::getContext());
20 20
 	}
21 21
 
22 22
 
23 23
 	public static function setUpBeforeClass()
24 24
 	{
25
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
26
-		$orderBaseMgr = $orderManager->getSubManager( 'base' );
25
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
26
+		$orderBaseMgr = $orderManager->getSubManager('base');
27 27
 		self::$basket = $orderBaseMgr->createItem();
28 28
 	}
29 29
 
30 30
 
31 31
 	protected function tearDown()
32 32
 	{
33
-		unset( $this->object );
33
+		unset($this->object);
34 34
 	}
35 35
 
36 36
 
37 37
 	public function testGetServices()
38 38
 	{
39
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
40
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
39
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
40
+		$basket = $orderManager->getSubManager('base')->createItem();
41 41
 
42
-		$services = $this->object->getServices( 'delivery', $basket );
43
-		$this->assertGreaterThan( 0, count( $services ) );
42
+		$services = $this->object->getServices('delivery', $basket);
43
+		$this->assertGreaterThan(0, count($services));
44 44
 
45
-		foreach( $services as $service ) {
46
-			$this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Item\\Iface', $service );
45
+		foreach ($services as $service) {
46
+			$this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Item\\Iface', $service);
47 47
 		}
48 48
 	}
49 49
 
50 50
 
51 51
 	public function testGetServicesCache()
52 52
 	{
53
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
54
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
53
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
54
+		$basket = $orderManager->getSubManager('base')->createItem();
55 55
 
56
-		$this->object->getServices( 'delivery', $basket );
57
-		$services = $this->object->getServices( 'delivery', $basket );
56
+		$this->object->getServices('delivery', $basket);
57
+		$services = $this->object->getServices('delivery', $basket);
58 58
 
59
-		$this->assertGreaterThan( 0, count( $services ) );
59
+		$this->assertGreaterThan(0, count($services));
60 60
 	}
61 61
 
62 62
 
63 63
 	public function testGetServiceAttributes()
64 64
 	{
65 65
 		$service = $this->getServiceItem();
66
-		$attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket );
66
+		$attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket);
67 67
 
68
-		$this->assertEquals( 0, count( $attributes ) );
68
+		$this->assertEquals(0, count($attributes));
69 69
 	}
70 70
 
71 71
 
72 72
 	public function testGetServiceAttributesCache()
73 73
 	{
74
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
75
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
74
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
75
+		$basket = $orderManager->getSubManager('base')->createItem();
76 76
 
77
-		$services = $this->object->getServices( 'delivery', $basket );
77
+		$services = $this->object->getServices('delivery', $basket);
78 78
 
79
-		if( ( $service = reset( $services ) ) === false ) {
80
-			throw new \RuntimeException( 'No service item found' );
79
+		if (($service = reset($services)) === false) {
80
+			throw new \RuntimeException('No service item found');
81 81
 		}
82 82
 
83
-		$attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket );
83
+		$attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket);
84 84
 
85
-		$this->assertEquals( 0, count( $attributes ) );
85
+		$this->assertEquals(0, count($attributes));
86 86
 	}
87 87
 
88 88
 
89 89
 	public function testGetServiceAttributesNoItems()
90 90
 	{
91
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Service\\Exception' );
92
-		$this->object->getServiceAttributes( 'invalid', -1, self::$basket );
91
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Service\\Exception');
92
+		$this->object->getServiceAttributes('invalid', -1, self::$basket);
93 93
 	}
94 94
 
95 95
 
96 96
 	public function testGetServicePrice()
97 97
 	{
98
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
99
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
98
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
99
+		$basket = $orderManager->getSubManager('base')->createItem();
100 100
 
101 101
 		$service = $this->getServiceItem();
102
-		$price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket );
102
+		$price = $this->object->getServicePrice('delivery', $service->getId(), $basket);
103 103
 
104
-		$this->assertEquals( '12.95', $price->getValue() );
105
-		$this->assertEquals( '1.99', $price->getCosts() );
104
+		$this->assertEquals('12.95', $price->getValue());
105
+		$this->assertEquals('1.99', $price->getCosts());
106 106
 	}
107 107
 
108 108
 
109 109
 	public function testGetServicePriceCache()
110 110
 	{
111
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
112
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
111
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
112
+		$basket = $orderManager->getSubManager('base')->createItem();
113 113
 
114
-		$services = $this->object->getServices( 'delivery', $basket );
114
+		$services = $this->object->getServices('delivery', $basket);
115 115
 
116
-		if( ( $service = reset( $services ) ) === false ) {
117
-			throw new \RuntimeException( 'No service item found' );
116
+		if (($service = reset($services)) === false) {
117
+			throw new \RuntimeException('No service item found');
118 118
 		}
119 119
 
120
-		$price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket );
120
+		$price = $this->object->getServicePrice('delivery', $service->getId(), $basket);
121 121
 
122
-		$this->assertEquals( '12.95', $price->getValue() );
123
-		$this->assertEquals( '1.99', $price->getCosts() );
122
+		$this->assertEquals('12.95', $price->getValue());
123
+		$this->assertEquals('1.99', $price->getCosts());
124 124
 	}
125 125
 
126 126
 
127 127
 	public function testGetServicePriceNoItems()
128 128
 	{
129
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
130
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
129
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
130
+		$basket = $orderManager->getSubManager('base')->createItem();
131 131
 
132
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Service\\Exception' );
133
-		$this->object->getServicePrice( 'invalid', -1, $basket );
132
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Service\\Exception');
133
+		$this->object->getServicePrice('invalid', -1, $basket);
134 134
 	}
135 135
 
136 136
 
137 137
 	public function testCheckServiceAttributes()
138 138
 	{
139 139
 		$service = $this->getServiceItem();
140
-		$attributes = $this->object->checkServiceAttributes( 'delivery', $service->getId(), array() );
140
+		$attributes = $this->object->checkServiceAttributes('delivery', $service->getId(), array());
141 141
 
142
-		$this->assertEquals( array(), $attributes );
142
+		$this->assertEquals(array(), $attributes);
143 143
 	}
144 144
 
145 145
 
@@ -148,21 +148,21 @@  discard block
 block discarded – undo
148 148
 	 */
149 149
 	protected function getServiceItem()
150 150
 	{
151
-		$serviceManager = \Aimeos\MShop\Service\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
151
+		$serviceManager = \Aimeos\MShop\Service\Manager\Factory::createManager(\TestHelperFrontend::getContext());
152 152
 
153
-		$search = $serviceManager->createSearch( true );
153
+		$search = $serviceManager->createSearch(true);
154 154
 		$expr = array(
155 155
 			$search->getConditions(),
156
-			$search->compare( '==', 'service.provider', 'Standard' ),
157
-			$search->compare( '==', 'service.type.domain', 'service' ),
158
-			$search->compare( '==', 'service.type.code', 'delivery' ),
156
+			$search->compare('==', 'service.provider', 'Standard'),
157
+			$search->compare('==', 'service.type.domain', 'service'),
158
+			$search->compare('==', 'service.type.code', 'delivery'),
159 159
 		);
160
-		$search->setConditions( $search->combine( '&&', $expr ) );
160
+		$search->setConditions($search->combine('&&', $expr));
161 161
 
162
-		$services = $serviceManager->searchItems( $search );
162
+		$services = $serviceManager->searchItems($search);
163 163
 
164
-		if( ( $service = reset( $services ) ) === false ) {
165
-			throw new \RuntimeException( 'No service item found' );
164
+		if (($service = reset($services)) === false) {
165
+			throw new \RuntimeException('No service item found');
166 166
 		}
167 167
 
168 168
 		return $service;
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Catalog/StandardTest.php 1 patch
Spacing   +124 added lines, -124 removed lines patch added patch discarded remove patch
@@ -15,63 +15,63 @@  discard block
 block discarded – undo
15 15
 
16 16
 	protected function setUp()
17 17
 	{
18
-		$this->object = new \Aimeos\Controller\Frontend\Catalog\Standard( \TestHelperFrontend::getContext() );
18
+		$this->object = new \Aimeos\Controller\Frontend\Catalog\Standard(\TestHelperFrontend::getContext());
19 19
 	}
20 20
 
21 21
 
22 22
 	protected function tearDown()
23 23
 	{
24
-		unset( $this->object );
24
+		unset($this->object);
25 25
 	}
26 26
 
27 27
 
28 28
 	public function testCreateManager()
29 29
 	{
30
-		$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager( 'product' ) );
30
+		$this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager('product'));
31 31
 	}
32 32
 
33 33
 
34 34
 	public function testCreateCatalogFilter()
35 35
 	{
36
-		$filter = $this->object->createCatalogFilter( true );
36
+		$filter = $this->object->createCatalogFilter(true);
37 37
 
38
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
39
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions() );
40
-		$this->assertEquals( 'catalog.status', $filter->getConditions()->getName() );
38
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
39
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions());
40
+		$this->assertEquals('catalog.status', $filter->getConditions()->getName());
41 41
 	}
42 42
 
43 43
 
44 44
 	public function testGetCatalogPath()
45 45
 	{
46
-		$manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
47
-		$item = $manager->getTree( null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST );
46
+		$manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext());
47
+		$item = $manager->getTree(null, array(), \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST);
48 48
 
49 49
 		$list = array();
50
-		foreach( $this->object->getCatalogPath( $item->getChild( 0 )->getId(), array( 'text' ) ) as $item ) {
50
+		foreach ($this->object->getCatalogPath($item->getChild(0)->getId(), array('text')) as $item) {
51 51
 			$list[$item->getCode()] = $item;
52 52
 		}
53 53
 
54
-		$this->assertEquals( 2, count( $list ) );
55
-		$this->assertArrayHasKey( 'root', $list );
56
-		$this->assertArrayHasKey( 'categories', $list );
54
+		$this->assertEquals(2, count($list));
55
+		$this->assertArrayHasKey('root', $list);
56
+		$this->assertArrayHasKey('categories', $list);
57 57
 	}
58 58
 
59 59
 
60 60
 	public function testGetCatalogTree()
61 61
 	{
62
-		$item = $this->object->getCatalogTree( null, array( 'text' ), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE );
62
+		$item = $this->object->getCatalogTree(null, array('text'), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE);
63 63
 
64
-		$this->assertEquals( 'Root', $item->getName() );
65
-		$this->assertEquals( 0, count( $item->getChildren() ) );
64
+		$this->assertEquals('Root', $item->getName());
65
+		$this->assertEquals(0, count($item->getChildren()));
66 66
 	}
67 67
 
68 68
 
69 69
 	public function testAggregateIndex()
70 70
 	{
71 71
 		$filter = $this->object->createIndexFilter();
72
-		$list = $this->object->aggregateIndex( $filter, 'index.attribute.id' );
72
+		$list = $this->object->aggregateIndex($filter, 'index.attribute.id');
73 73
 
74
-		$this->assertGreaterThan( 0, count( $list ) );
74
+		$this->assertGreaterThan(0, count($list));
75 75
 	}
76 76
 
77 77
 
@@ -79,279 +79,279 @@  discard block
 block discarded – undo
79 79
 	{
80 80
 		$filter = $this->object->createIndexFilter();
81 81
 
82
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
83
-		$this->assertEquals( array(), $filter->getSortations() );
84
-		$this->assertEquals( 0, $filter->getSliceStart() );
85
-		$this->assertEquals( 100, $filter->getSliceSize() );
82
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
83
+		$this->assertEquals(array(), $filter->getSortations());
84
+		$this->assertEquals(0, $filter->getSliceStart());
85
+		$this->assertEquals(100, $filter->getSliceSize());
86 86
 	}
87 87
 
88 88
 
89 89
 	public function testCreateIndexFilterCategory()
90 90
 	{
91
-		$filter = $this->object->createIndexFilterCategory( 0 );
91
+		$filter = $this->object->createIndexFilterCategory(0);
92 92
 
93
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
93
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
94 94
 
95 95
 		$list = $filter->getConditions()->getExpressions();
96 96
 
97 97
 
98
-		if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) {
99
-			throw new \RuntimeException( 'Wrong expression' );
98
+		if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) {
99
+			throw new \RuntimeException('Wrong expression');
100 100
 		}
101
-		$this->assertEquals( 'index.catalog.id', $list[0]->getName() );
102
-		$this->assertEquals( 0, $list[0]->getValue() );
101
+		$this->assertEquals('index.catalog.id', $list[0]->getName());
102
+		$this->assertEquals(0, $list[0]->getValue());
103 103
 
104 104
 
105
-		$this->assertEquals( array(), $filter->getSortations() );
106
-		$this->assertEquals( 0, $filter->getSliceStart() );
107
-		$this->assertEquals( 100, $filter->getSliceSize() );
105
+		$this->assertEquals(array(), $filter->getSortations());
106
+		$this->assertEquals(0, $filter->getSliceStart());
107
+		$this->assertEquals(100, $filter->getSliceSize());
108 108
 	}
109 109
 
110 110
 
111 111
 	public function testCreateIndexFilterCategoryPosition()
112 112
 	{
113
-		$filter = $this->object->createIndexFilterCategory( 0, 'relevance', '-', 1, 2, 'test' );
113
+		$filter = $this->object->createIndexFilterCategory(0, 'relevance', '-', 1, 2, 'test');
114 114
 
115
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
115
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
116 116
 
117 117
 		$sort = $filter->getSortations();
118
-		if( ( $item = reset( $sort ) ) === false ) {
119
-			throw new \RuntimeException( 'Sortation not set' );
118
+		if (($item = reset($sort)) === false) {
119
+			throw new \RuntimeException('Sortation not set');
120 120
 		}
121 121
 
122
-		$this->assertEquals( 'sort:index.catalog.position("test",0)', $item->getName() );
123
-		$this->assertEquals( '-', $item->getOperator() );
122
+		$this->assertEquals('sort:index.catalog.position("test",0)', $item->getName());
123
+		$this->assertEquals('-', $item->getOperator());
124 124
 
125
-		$this->assertEquals( 1, $filter->getSliceStart() );
126
-		$this->assertEquals( 2, $filter->getSliceSize() );
125
+		$this->assertEquals(1, $filter->getSliceStart());
126
+		$this->assertEquals(2, $filter->getSliceSize());
127 127
 	}
128 128
 
129 129
 
130 130
 	public function testCreateIndexFilterCategoryCode()
131 131
 	{
132
-		$filter = $this->object->createIndexFilterCategory( 0, 'code' );
132
+		$filter = $this->object->createIndexFilterCategory(0, 'code');
133 133
 
134
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
134
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
135 135
 
136 136
 		$sort = $filter->getSortations();
137
-		if( ( $item = reset( $sort ) ) === false ) {
138
-			throw new \RuntimeException( 'Sortation not set' );
137
+		if (($item = reset($sort)) === false) {
138
+			throw new \RuntimeException('Sortation not set');
139 139
 		}
140 140
 
141
-		$this->assertStringStartsWith( 'product.code', $item->getName() );
141
+		$this->assertStringStartsWith('product.code', $item->getName());
142 142
 	}
143 143
 
144 144
 
145 145
 	public function testCreateIndexFilterCategoryName()
146 146
 	{
147
-		$filter = $this->object->createIndexFilterCategory( 0, 'name' );
147
+		$filter = $this->object->createIndexFilterCategory(0, 'name');
148 148
 
149
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
149
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
150 150
 
151 151
 		$sort = $filter->getSortations();
152
-		if( ( $item = reset( $sort ) ) === false ) {
153
-			throw new \RuntimeException( 'Sortation not set' );
152
+		if (($item = reset($sort)) === false) {
153
+			throw new \RuntimeException('Sortation not set');
154 154
 		}
155 155
 
156
-		$this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() );
156
+		$this->assertEquals('sort:index.text.value("default","de","name")', $item->getName());
157 157
 	}
158 158
 
159 159
 
160 160
 	public function testCreateIndexFilterCategoryPrice()
161 161
 	{
162
-		$filter = $this->object->createIndexFilterCategory( 0, 'price' );
162
+		$filter = $this->object->createIndexFilterCategory(0, 'price');
163 163
 
164
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
164
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
165 165
 
166 166
 		$sort = $filter->getSortations();
167
-		if( ( $item = reset( $sort ) ) === false ) {
168
-			throw new \RuntimeException( 'Sortation not set' );
167
+		if (($item = reset($sort)) === false) {
168
+			throw new \RuntimeException('Sortation not set');
169 169
 		}
170 170
 
171
-		$this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() );
171
+		$this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName());
172 172
 	}
173 173
 
174 174
 
175 175
 	public function testCreateIndexFilterCategoryInvalidSortation()
176 176
 	{
177
-		$filter = $this->object->createIndexFilterCategory( 0, 'failure' );
177
+		$filter = $this->object->createIndexFilterCategory(0, 'failure');
178 178
 
179
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
180
-		$this->assertEquals( array(), $filter->getSortations() );
179
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
180
+		$this->assertEquals(array(), $filter->getSortations());
181 181
 	}
182 182
 
183 183
 
184 184
 	public function testAddIndexFilterCategory()
185 185
 	{
186 186
 		$filter = $this->object->createIndexFilter();
187
-		$filter = $this->object->addIndexFilterCategory( $filter, 0 );
187
+		$filter = $this->object->addIndexFilterCategory($filter, 0);
188 188
 
189 189
 		$list = $filter->getConditions()->getExpressions();
190 190
 
191
-		if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) {
192
-			throw new \RuntimeException( 'Wrong expression' );
191
+		if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) {
192
+			throw new \RuntimeException('Wrong expression');
193 193
 		}
194 194
 
195
-		$this->assertEquals( 'index.catalog.id', $list[0]->getName() );
196
-		$this->assertEquals( 0, $list[0]->getValue() );
197
-		$this->assertEquals( array(), $filter->getSortations() );
195
+		$this->assertEquals('index.catalog.id', $list[0]->getName());
196
+		$this->assertEquals(0, $list[0]->getValue());
197
+		$this->assertEquals(array(), $filter->getSortations());
198 198
 	}
199 199
 
200 200
 
201 201
 	public function testCreateIndexFilterText()
202 202
 	{
203
-		$filter = $this->object->createIndexFilterText( 'Espresso' );
203
+		$filter = $this->object->createIndexFilterText('Espresso');
204 204
 
205
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
205
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
206 206
 
207 207
 		$list = $filter->getConditions()->getExpressions();
208 208
 
209 209
 
210
-		if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) {
211
-			throw new \RuntimeException( 'Wrong expression' );
210
+		if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) {
211
+			throw new \RuntimeException('Wrong expression');
212 212
 		}
213
-		$this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() );
214
-		$this->assertEquals( 0, $list[0]->getValue() );
213
+		$this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName());
214
+		$this->assertEquals(0, $list[0]->getValue());
215 215
 
216 216
 
217
-		$this->assertEquals( array(), $filter->getSortations() );
218
-		$this->assertEquals( 0, $filter->getSliceStart() );
219
-		$this->assertEquals( 100, $filter->getSliceSize() );
217
+		$this->assertEquals(array(), $filter->getSortations());
218
+		$this->assertEquals(0, $filter->getSliceStart());
219
+		$this->assertEquals(100, $filter->getSliceSize());
220 220
 	}
221 221
 
222 222
 
223 223
 	public function testCreateIndexFilterTextRelevance()
224 224
 	{
225
-		$filter = $this->object->createIndexFilterText( 'Espresso', 'relevance', '-', 1, 2, 'test' );
225
+		$filter = $this->object->createIndexFilterText('Espresso', 'relevance', '-', 1, 2, 'test');
226 226
 
227
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
228
-		$this->assertEquals( array(), $filter->getSortations() );
229
-		$this->assertEquals( 1, $filter->getSliceStart() );
230
-		$this->assertEquals( 2, $filter->getSliceSize() );
227
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
228
+		$this->assertEquals(array(), $filter->getSortations());
229
+		$this->assertEquals(1, $filter->getSliceStart());
230
+		$this->assertEquals(2, $filter->getSliceSize());
231 231
 	}
232 232
 
233 233
 
234 234
 	public function testCreateIndexFilterTextCode()
235 235
 	{
236
-		$filter = $this->object->createIndexFilterText( 'Espresso', 'code' );
236
+		$filter = $this->object->createIndexFilterText('Espresso', 'code');
237 237
 
238
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
238
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
239 239
 
240 240
 		$sort = $filter->getSortations();
241
-		if( ( $item = reset( $sort ) ) === false ) {
242
-			throw new \RuntimeException( 'Sortation not set' );
241
+		if (($item = reset($sort)) === false) {
242
+			throw new \RuntimeException('Sortation not set');
243 243
 		}
244 244
 
245
-		$this->assertEquals( 'product.code', $item->getName() );
245
+		$this->assertEquals('product.code', $item->getName());
246 246
 	}
247 247
 
248 248
 
249 249
 	public function testCreateIndexFilterTextName()
250 250
 	{
251
-		$filter = $this->object->createIndexFilterText( 'Espresso', 'name' );
251
+		$filter = $this->object->createIndexFilterText('Espresso', 'name');
252 252
 
253
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
253
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
254 254
 
255 255
 		$sort = $filter->getSortations();
256
-		if( ( $item = reset( $sort ) ) === false ) {
257
-			throw new \RuntimeException( 'Sortation not set' );
256
+		if (($item = reset($sort)) === false) {
257
+			throw new \RuntimeException('Sortation not set');
258 258
 		}
259 259
 
260
-		$this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() );
260
+		$this->assertEquals('sort:index.text.value("default","de","name")', $item->getName());
261 261
 	}
262 262
 
263 263
 
264 264
 	public function testCreateIndexFilterTextPrice()
265 265
 	{
266
-		$filter = $this->object->createIndexFilterCategory( 'Espresso', 'price' );
266
+		$filter = $this->object->createIndexFilterCategory('Espresso', 'price');
267 267
 
268
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
268
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
269 269
 
270 270
 		$sort = $filter->getSortations();
271
-		if( ( $item = reset( $sort ) ) === false ) {
272
-			throw new \RuntimeException( 'Sortation not set' );
271
+		if (($item = reset($sort)) === false) {
272
+			throw new \RuntimeException('Sortation not set');
273 273
 		}
274 274
 
275
-		$this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() );
275
+		$this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName());
276 276
 	}
277 277
 
278 278
 
279 279
 	public function testCreateIndexFilterTextInvalidSortation()
280 280
 	{
281
-		$filter = $this->object->createIndexFilterText( '', 'failure' );
281
+		$filter = $this->object->createIndexFilterText('', 'failure');
282 282
 
283
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
284
-		$this->assertEquals( array(), $filter->getSortations() );
283
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
284
+		$this->assertEquals(array(), $filter->getSortations());
285 285
 	}
286 286
 
287 287
 
288 288
 	public function testAddIndexFilterText()
289 289
 	{
290
-		$filter = $this->object->createIndexFilterText( 'Espresso' );
291
-		$filter = $this->object->addIndexFilterText( $filter, 'Espresso' );
290
+		$filter = $this->object->createIndexFilterText('Espresso');
291
+		$filter = $this->object->addIndexFilterText($filter, 'Espresso');
292 292
 
293 293
 		$list = $filter->getConditions()->getExpressions();
294 294
 
295
-		if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) {
296
-			throw new \RuntimeException( 'Wrong expression' );
295
+		if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) {
296
+			throw new \RuntimeException('Wrong expression');
297 297
 		}
298 298
 
299
-		$this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() );
300
-		$this->assertEquals( 0, $list[0]->getValue() );
301
-		$this->assertEquals( array(), $filter->getSortations() );
299
+		$this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName());
300
+		$this->assertEquals(0, $list[0]->getValue());
301
+		$this->assertEquals(array(), $filter->getSortations());
302 302
 	}
303 303
 
304 304
 
305 305
 	public function testGetIndexItemsCategory()
306 306
 	{
307
-		$catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
307
+		$catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext());
308 308
 		$search = $catalogManager->createSearch();
309 309
 
310
-		$search->setConditions( $search->compare( '==', 'catalog.code', 'new' ) );
311
-		$search->setSlice( 0, 1 );
312
-		$items = $catalogManager->searchItems( $search );
310
+		$search->setConditions($search->compare('==', 'catalog.code', 'new'));
311
+		$search->setSlice(0, 1);
312
+		$items = $catalogManager->searchItems($search);
313 313
 
314
-		if( ( $item = reset( $items ) ) === false ) {
315
-			throw new \RuntimeException( 'Catalog item not found' );
314
+		if (($item = reset($items)) === false) {
315
+			throw new \RuntimeException('Catalog item not found');
316 316
 		}
317 317
 
318 318
 		$total = 0;
319
-		$filter = $this->object->createIndexFilterCategory( $item->getId(), 'position', '+', 1, 1 );
320
-		$results = $this->object->getIndexItems( $filter, array(), $total );
319
+		$filter = $this->object->createIndexFilterCategory($item->getId(), 'position', '+', 1, 1);
320
+		$results = $this->object->getIndexItems($filter, array(), $total);
321 321
 
322
-		$this->assertEquals( 3, $total );
323
-		$this->assertEquals( 1, count( $results ) );
322
+		$this->assertEquals(3, $total);
323
+		$this->assertEquals(1, count($results));
324 324
 	}
325 325
 
326 326
 
327 327
 	public function testGetIndexItemsText()
328 328
 	{
329 329
 		$total = 0;
330
-		$filter = $this->object->createIndexFilterText( 'Expresso', 'relevance', '+', 0, 1, 'unittype13' );
331
-		$results = $this->object->getIndexItems( $filter, array(), $total );
330
+		$filter = $this->object->createIndexFilterText('Expresso', 'relevance', '+', 0, 1, 'unittype13');
331
+		$results = $this->object->getIndexItems($filter, array(), $total);
332 332
 
333
-		$this->assertEquals( 2, $total );
334
-		$this->assertEquals( 1, count( $results ) );
333
+		$this->assertEquals(2, $total);
334
+		$this->assertEquals(1, count($results));
335 335
 	}
336 336
 
337 337
 
338 338
 	public function testCreateTextFilter()
339 339
 	{
340
-		$filter = $this->object->createTextFilter( 'Expresso', 'name', '+', 0, 1 );
340
+		$filter = $this->object->createTextFilter('Expresso', 'name', '+', 0, 1);
341 341
 
342
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter );
343
-		$this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions() );
344
-		$this->assertEquals( 3, count( $filter->getConditions()->getExpressions() ) );
342
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter);
343
+		$this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions());
344
+		$this->assertEquals(3, count($filter->getConditions()->getExpressions()));
345 345
 	}
346 346
 
347 347
 
348 348
 	public function testGetTextListName()
349 349
 	{
350
-		$filter = $this->object->createTextFilter( 'Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name' );
351
-		$results = $this->object->getTextList( $filter );
350
+		$filter = $this->object->createTextFilter('Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name');
351
+		$results = $this->object->getTextList($filter);
352 352
 
353
-		$this->assertEquals( 1, count( $results ) );
354
-		$this->assertContains( 'Cafe Noire Cappuccino', $results );
353
+		$this->assertEquals(1, count($results));
354
+		$this->assertContains('Cafe Noire Cappuccino', $results);
355 355
 	}
356 356
 
357 357
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Iface.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available
63 63
 	 * @return void
64 64
 	 */
65
-	public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
65
+	public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
66 66
 		array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(),
67
-		$stocktype = 'default' );
67
+		$stocktype = 'default');
68 68
 
69 69
 
70 70
 	/**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 * @param integer $position Position number (key) of the order product item
74 74
 	 * @return void
75 75
 	 */
76
-	public function deleteProduct( $position );
76
+	public function deleteProduct($position);
77 77
 
78 78
 
79 79
 	/**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	 * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED
85 85
 	 * @return void
86 86
 	 */
87
-	public function editProduct( $position, $quantity, array $configAttributeCodes = array() );
87
+	public function editProduct($position, $quantity, array $configAttributeCodes = array());
88 88
 
89 89
 
90 90
 	/**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed
95 95
 	 * @return void
96 96
 	 */
97
-	public function addCoupon( $code );
97
+	public function addCoupon($code);
98 98
 
99 99
 
100 100
 	/**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid
105 105
 	 * @return void
106 106
 	 */
107
-	public function deleteCoupon( $code );
107
+	public function deleteCoupon($code);
108 108
 
109 109
 
110 110
 	/**
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	 * 	if one of the keys is invalid when using an array with key/value pairs
117 117
 	 * @return void
118 118
 	 */
119
-	public function setAddress( $type, $value );
119
+	public function setAddress($type, $value);
120 120
 
121 121
 
122 122
 	/**
@@ -129,5 +129,5 @@  discard block
 block discarded – undo
129 129
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached
130 130
 	 * @return void
131 131
 	 */
132
-	public function setService( $type, $id, array $attributes = array() );
132
+	public function setService($type, $id, array $attributes = array());
133 133
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Decorator/Category.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -41,27 +41,27 @@
 block discarded – undo
41 41
 	 * @param string $stocktype Unique code of the stock type to deliver the products from
42 42
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available
43 43
 	 */
44
-	public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
44
+	public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
45 45
 		array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(),
46
-		$stocktype = 'default' )
46
+		$stocktype = 'default')
47 47
 	{
48
-		$catalogListManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog/lists' );
48
+		$catalogListManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog/lists');
49 49
 
50
-		$search = $catalogListManager->createSearch( true );
50
+		$search = $catalogListManager->createSearch(true);
51 51
 		$expr = array(
52
-			$search->compare( '==', 'catalog.lists.domain', 'product' ),
53
-			$search->compare( '==', 'catalog.lists.refid', $prodid ),
52
+			$search->compare('==', 'catalog.lists.domain', 'product'),
53
+			$search->compare('==', 'catalog.lists.refid', $prodid),
54 54
 			$search->getConditions()
55 55
 		);
56
-		$search->setConditions( $search->combine( '&&', $expr ) );
57
-		$search->setSlice( 0, 1 );
56
+		$search->setConditions($search->combine('&&', $expr));
57
+		$search->setSlice(0, 1);
58 58
 
59
-		$result = $catalogListManager->searchItems( $search );
59
+		$result = $catalogListManager->searchItems($search);
60 60
 
61
-		if( reset( $result ) === false )
61
+		if (reset($result) === false)
62 62
 		{
63
-			$msg = sprintf( 'Adding product with ID "%1$s" is not allowed', $prodid );
64
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg );
63
+			$msg = sprintf('Adding product with ID "%1$s" is not allowed', $prodid);
64
+			throw new \Aimeos\Controller\Frontend\Basket\Exception($msg);
65 65
 		}
66 66
 
67 67
 		$this->getController()->addProduct(
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Basket/StandardTest.php 1 patch
Spacing   +178 added lines, -178 removed lines patch added patch discarded remove patch
@@ -19,277 +19,277 @@  discard block
 block discarded – undo
19 19
 	protected function setUp()
20 20
 	{
21 21
 		$this->context = \TestHelperFrontend::getContext();
22
-		$this->testItem = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TESTP' );
22
+		$this->testItem = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TESTP');
23 23
 
24
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
24
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
25 25
 	}
26 26
 
27 27
 
28 28
 	protected function tearDown()
29 29
 	{
30 30
 		$this->object->clear();
31
-		$this->context->getSession()->set( 'aimeos', array() );
31
+		$this->context->getSession()->set('aimeos', array());
32 32
 
33
-		unset( $this->object, $this->testItem );
33
+		unset($this->object, $this->testItem);
34 34
 	}
35 35
 
36 36
 
37 37
 	public function testAddDeleteProduct()
38 38
 	{
39 39
 		$basket = $this->object->get();
40
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' );
40
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC');
41 41
 
42
-		$this->object->addProduct( $item->getId(), 2, array(), array(), array(), array(), array(), 'default' );
43
-		$item2 = $this->object->get()->getProduct( 0 );
44
-		$this->object->deleteProduct( 0 );
42
+		$this->object->addProduct($item->getId(), 2, array(), array(), array(), array(), array(), 'default');
43
+		$item2 = $this->object->get()->getProduct(0);
44
+		$this->object->deleteProduct(0);
45 45
 
46
-		$this->assertEquals( 0, count( $basket->getProducts() ) );
47
-		$this->assertEquals( 'CNC', $item2->getProductCode() );
46
+		$this->assertEquals(0, count($basket->getProducts()));
47
+		$this->assertEquals('CNC', $item2->getProductCode());
48 48
 	}
49 49
 
50 50
 
51 51
 	public function testAddProductCustomAttribute()
52 52
 	{
53
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
53
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
54 54
 
55 55
 		$search = $attributeManager->createSearch();
56 56
 		$expr = array(
57
-			$search->compare( '==', 'attribute.code', 'custom' ),
58
-			$search->compare( '==', 'attribute.type.code', 'date' ),
57
+			$search->compare('==', 'attribute.code', 'custom'),
58
+			$search->compare('==', 'attribute.type.code', 'date'),
59 59
 		);
60
-		$search->setConditions( $search->combine( '&&', $expr ) );
60
+		$search->setConditions($search->combine('&&', $expr));
61 61
 
62
-		$attributes = $attributeManager->searchItems( $search );
62
+		$attributes = $attributeManager->searchItems($search);
63 63
 
64
-		if( ( $attrItem = reset( $attributes ) ) === false ) {
65
-			throw new \RuntimeException( 'Attribute not found' );
64
+		if (($attrItem = reset($attributes)) === false) {
65
+			throw new \RuntimeException('Attribute not found');
66 66
 		}
67 67
 
68
-		$attrValues = array( $attrItem->getId() => '2000-01-01' );
68
+		$attrValues = array($attrItem->getId() => '2000-01-01');
69 69
 
70
-		$this->object->addProduct( $this->testItem->getId(), 1, array(), array(), array(), array(), $attrValues );
70
+		$this->object->addProduct($this->testItem->getId(), 1, array(), array(), array(), array(), $attrValues);
71 71
 		$basket = $this->object->get();
72 72
 
73
-		$this->assertEquals( 1, count( $basket->getProducts() ) );
74
-		$this->assertEquals( '2000-01-01', $basket->getProduct( 0 )->getAttribute( 'date', 'custom' ) );
73
+		$this->assertEquals(1, count($basket->getProducts()));
74
+		$this->assertEquals('2000-01-01', $basket->getProduct(0)->getAttribute('date', 'custom'));
75 75
 	}
76 76
 
77 77
 
78 78
 	public function testAddProductAttributeNotAssigned()
79 79
 	{
80
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
80
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
81 81
 
82 82
 		$search = $attributeManager->createSearch();
83 83
 		$expr = array(
84
-			$search->compare( '==', 'attribute.code', '30' ),
85
-			$search->compare( '==', 'attribute.type.code', 'width' ),
84
+			$search->compare('==', 'attribute.code', '30'),
85
+			$search->compare('==', 'attribute.type.code', 'width'),
86 86
 		);
87
-		$search->setConditions( $search->combine( '&&', $expr ) );
87
+		$search->setConditions($search->combine('&&', $expr));
88 88
 
89
-		$attribute = $attributeManager->searchItems( $search );
89
+		$attribute = $attributeManager->searchItems($search);
90 90
 
91
-		if( empty( $attribute ) ) {
92
-			throw new \RuntimeException( 'Attribute not found' );
91
+		if (empty($attribute)) {
92
+			throw new \RuntimeException('Attribute not found');
93 93
 		}
94 94
 
95
-		$hiddenAttrIds = array_keys( $attribute );
96
-		$configAttrIds = array_keys( $attribute );
95
+		$hiddenAttrIds = array_keys($attribute);
96
+		$configAttrIds = array_keys($attribute);
97 97
 
98
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
99
-		$this->object->addProduct( $this->testItem->getId(), 1, array(), array(), $configAttrIds, $hiddenAttrIds );
98
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
99
+		$this->object->addProduct($this->testItem->getId(), 1, array(), array(), $configAttrIds, $hiddenAttrIds);
100 100
 	}
101 101
 
102 102
 
103 103
 	public function testAddProductNegativeQuantityException()
104 104
 	{
105
-		$this->setExpectedException( '\\Aimeos\\MShop\\Order\\Exception' );
106
-		$this->object->addProduct( $this->testItem->getId(), -1 );
105
+		$this->setExpectedException('\\Aimeos\\MShop\\Order\\Exception');
106
+		$this->object->addProduct($this->testItem->getId(), -1);
107 107
 	}
108 108
 
109 109
 
110 110
 	public function testAddProductNoPriceException()
111 111
 	{
112
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'MNOP' );
112
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('MNOP');
113 113
 
114
-		$this->setExpectedException( '\\Aimeos\\MShop\\Price\\Exception' );
115
-		$this->object->addProduct( $item->getId(), 1 );
114
+		$this->setExpectedException('\\Aimeos\\MShop\\Price\\Exception');
115
+		$this->object->addProduct($item->getId(), 1);
116 116
 	}
117 117
 
118 118
 
119 119
 	public function testAddProductConfigAttributeException()
120 120
 	{
121
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
122
-		$this->object->addProduct( $this->testItem->getId(), 1, array(), array(), array( -1 ) );
121
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
122
+		$this->object->addProduct($this->testItem->getId(), 1, array(), array(), array( -1 ));
123 123
 	}
124 124
 
125 125
 
126 126
 	public function testAddProductLowQuantityPriceException()
127 127
 	{
128
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'IJKL' );
128
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('IJKL');
129 129
 
130
-		$this->setExpectedException( '\\Aimeos\\MShop\\Price\\Exception' );
131
-		$this->object->addProduct( $item->getId(), 1 );
130
+		$this->setExpectedException('\\Aimeos\\MShop\\Price\\Exception');
131
+		$this->object->addProduct($item->getId(), 1);
132 132
 	}
133 133
 
134 134
 
135 135
 	public function testAddProductHigherQuantities()
136 136
 	{
137
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'IJKL' );
137
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('IJKL');
138 138
 
139
-		$this->object->addProduct( $item->getId(), 2, array(), array(), array(), array(), array(), 'unit_type3' );
139
+		$this->object->addProduct($item->getId(), 2, array(), array(), array(), array(), array(), 'unit_type3');
140 140
 
141
-		$this->assertEquals( 2, $this->object->get()->getProduct( 0 )->getQuantity() );
142
-		$this->assertEquals( 'IJKL', $this->object->get()->getProduct( 0 )->getProductCode() );
141
+		$this->assertEquals(2, $this->object->get()->getProduct(0)->getQuantity());
142
+		$this->assertEquals('IJKL', $this->object->get()->getProduct(0)->getProductCode());
143 143
 	}
144 144
 
145 145
 
146 146
 	public function testDeleteProductFlagError()
147 147
 	{
148
-		$this->object->addProduct( $this->testItem->getId(), 2 );
148
+		$this->object->addProduct($this->testItem->getId(), 2);
149 149
 
150
-		$item = $this->object->get()->getProduct( 0 );
151
-		$item->setFlags( \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE );
150
+		$item = $this->object->get()->getProduct(0);
151
+		$item->setFlags(\Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE);
152 152
 
153
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
154
-		$this->object->deleteProduct( 0 );
153
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
154
+		$this->object->deleteProduct(0);
155 155
 	}
156 156
 
157 157
 
158 158
 	public function testEditProduct()
159 159
 	{
160
-		$this->object->addProduct( $this->testItem->getId(), 1 );
160
+		$this->object->addProduct($this->testItem->getId(), 1);
161 161
 
162
-		$item = $this->object->get()->getProduct( 0 );
163
-		$this->assertEquals( 1, $item->getQuantity() );
162
+		$item = $this->object->get()->getProduct(0);
163
+		$this->assertEquals(1, $item->getQuantity());
164 164
 
165
-		$this->object->editProduct( 0, 4 );
165
+		$this->object->editProduct(0, 4);
166 166
 
167
-		$item = $this->object->get()->getProduct( 0 );
168
-		$this->assertEquals( 4, $item->getQuantity() );
169
-		$this->assertEquals( 'U:TESTP', $item->getProductCode() );
167
+		$item = $this->object->get()->getProduct(0);
168
+		$this->assertEquals(4, $item->getQuantity());
169
+		$this->assertEquals('U:TESTP', $item->getProductCode());
170 170
 	}
171 171
 
172 172
 
173 173
 	public function testEditProductAttributes()
174 174
 	{
175
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
175
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
176 176
 
177 177
 		$search = $attributeManager->createSearch();
178 178
 		$conditions = array(
179
-			$search->compare( '==', 'attribute.domain', 'product' ),
180
-			$search->combine( '||', array(
181
-				$search->combine( '&&', array(
182
-					$search->compare( '==', 'attribute.code', 'xs' ),
183
-					$search->compare( '==', 'attribute.type.code', 'size' ),
184
-				) ),
185
-				$search->combine( '&&', array(
186
-					$search->compare( '==', 'attribute.code', 'white' ),
187
-					$search->compare( '==', 'attribute.type.code', 'color' ),
188
-				) ),
189
-			) )
179
+			$search->compare('==', 'attribute.domain', 'product'),
180
+			$search->combine('||', array(
181
+				$search->combine('&&', array(
182
+					$search->compare('==', 'attribute.code', 'xs'),
183
+					$search->compare('==', 'attribute.type.code', 'size'),
184
+				)),
185
+				$search->combine('&&', array(
186
+					$search->compare('==', 'attribute.code', 'white'),
187
+					$search->compare('==', 'attribute.type.code', 'color'),
188
+				)),
189
+			))
190 190
 		);
191
-		$search->setConditions( $search->combine( '&&', $conditions ) );
192
-		$attributes = $attributeManager->searchItems( $search );
191
+		$search->setConditions($search->combine('&&', $conditions));
192
+		$attributes = $attributeManager->searchItems($search);
193 193
 
194
-		if( ( $attribute = reset( $attributes ) ) === false ) {
195
-			throw new \RuntimeException( 'No attributes available' );
194
+		if (($attribute = reset($attributes)) === false) {
195
+			throw new \RuntimeException('No attributes available');
196 196
 		}
197 197
 
198 198
 
199
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TESTP' );
199
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TESTP');
200 200
 
201
-		$this->object->addProduct( $item->getId(), 1, array(), array(), array_keys( $attributes ) );
202
-		$this->object->editProduct( 0, 4 );
201
+		$this->object->addProduct($item->getId(), 1, array(), array(), array_keys($attributes));
202
+		$this->object->editProduct(0, 4);
203 203
 
204
-		$item = $this->object->get()->getProduct( 0 );
205
-		$this->assertEquals( 2, count( $item->getAttributes() ) );
206
-		$this->assertEquals( 4, $item->getQuantity() );
204
+		$item = $this->object->get()->getProduct(0);
205
+		$this->assertEquals(2, count($item->getAttributes()));
206
+		$this->assertEquals(4, $item->getQuantity());
207 207
 
208 208
 
209
-		$this->object->editProduct( 0, 3, array(), array( $attribute->getType() ) );
209
+		$this->object->editProduct(0, 3, array(), array($attribute->getType()));
210 210
 
211
-		$item = $this->object->get()->getProduct( 0 );
212
-		$this->assertEquals( 3, $item->getQuantity() );
213
-		$this->assertEquals( 1, count( $item->getAttributes() ) );
214
-		$this->assertEquals( 'U:TESTP', $item->getProductCode() );
211
+		$item = $this->object->get()->getProduct(0);
212
+		$this->assertEquals(3, $item->getQuantity());
213
+		$this->assertEquals(1, count($item->getAttributes()));
214
+		$this->assertEquals('U:TESTP', $item->getProductCode());
215 215
 	}
216 216
 
217 217
 
218 218
 	public function testEditProductFlagError()
219 219
 	{
220
-		$this->object->addProduct( $this->testItem->getId(), 2 );
220
+		$this->object->addProduct($this->testItem->getId(), 2);
221 221
 
222
-		$item = $this->object->get()->getProduct( 0 );
223
-		$item->setFlags( \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE );
222
+		$item = $this->object->get()->getProduct(0);
223
+		$item->setFlags(\Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE);
224 224
 
225
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
226
-		$this->object->editProduct( 0, 4 );
225
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
226
+		$this->object->editProduct(0, 4);
227 227
 	}
228 228
 
229 229
 
230 230
 	public function testAddCoupon()
231 231
 	{
232
-		$this->object->addProduct( $this->testItem->getId(), 2 );
233
-		$this->object->addCoupon( 'GHIJ' );
232
+		$this->object->addProduct($this->testItem->getId(), 2);
233
+		$this->object->addCoupon('GHIJ');
234 234
 
235 235
 		$basket = $this->object->get();
236 236
 
237
-		$this->assertEquals( 1, count( $basket->getCoupons() ) );
237
+		$this->assertEquals(1, count($basket->getCoupons()));
238 238
 	}
239 239
 
240 240
 
241 241
 	public function testAddCouponInvalidCode()
242 242
 	{
243
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
244
-		$this->object->addCoupon( 'invalid' );
243
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
244
+		$this->object->addCoupon('invalid');
245 245
 	}
246 246
 
247 247
 
248 248
 	public function testAddCouponMissingRequirements()
249 249
 	{
250
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
251
-		$this->object->addCoupon( 'OPQR' );
250
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
251
+		$this->object->addCoupon('OPQR');
252 252
 	}
253 253
 
254 254
 
255 255
 	public function testDeleteCoupon()
256 256
 	{
257
-		$this->object->addProduct( $this->testItem->getId(), 2 );
258
-		$this->object->addCoupon( '90AB' );
259
-		$this->object->deleteCoupon( '90AB' );
257
+		$this->object->addProduct($this->testItem->getId(), 2);
258
+		$this->object->addCoupon('90AB');
259
+		$this->object->deleteCoupon('90AB');
260 260
 
261 261
 		$basket = $this->object->get();
262 262
 
263
-		$this->assertEquals( 0, count( $basket->getCoupons() ) );
263
+		$this->assertEquals(0, count($basket->getCoupons()));
264 264
 	}
265 265
 
266 266
 
267 267
 	public function testClear()
268 268
 	{
269
-		$this->object->addProduct( $this->testItem->getId(), 2 );
269
+		$this->object->addProduct($this->testItem->getId(), 2);
270 270
 		$this->object->clear();
271 271
 
272
-		$this->assertEquals( 0, count( $this->object->get()->getProducts() ) );
272
+		$this->assertEquals(0, count($this->object->get()->getProducts()));
273 273
 	}
274 274
 
275 275
 
276 276
 	public function testSetAddressDelete()
277 277
 	{
278
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, null );
278
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, null);
279 279
 
280
-		$this->setExpectedException( '\Aimeos\MShop\Order\Exception' );
281
-		$this->object->get()->getAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT );
280
+		$this->setExpectedException('\Aimeos\MShop\Order\Exception');
281
+		$this->object->get()->getAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT);
282 282
 	}
283 283
 
284 284
 
285 285
 	public function testSetBillingAddressByItem()
286 286
 	{
287
-		$item = $this->getAddress( 'Example company' );
287
+		$item = $this->getAddress('Example company');
288 288
 
289
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $item );
289
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $item);
290 290
 
291
-		$address = $this->object->get()->getAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT );
292
-		$this->assertEquals( 'Example company', $address->getCompany() );
291
+		$address = $this->object->get()->getAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT);
292
+		$this->assertEquals('Example company', $address->getCompany());
293 293
 	}
294 294
 
295 295
 
@@ -317,37 +317,37 @@  discard block
 block discarded – undo
317 317
 			'order.base.address.flag' => 0,
318 318
 		);
319 319
 
320
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $fixture );
320
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $fixture);
321 321
 
322
-		$address = $this->object->get()->getAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT );
323
-		$this->assertEquals( 'Example company', $address->getCompany() );
324
-		$this->assertEquals( 'Dr.', $address->getTitle() );
325
-		$this->assertEquals( 'firstunit', $address->getFirstname() );
322
+		$address = $this->object->get()->getAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT);
323
+		$this->assertEquals('Example company', $address->getCompany());
324
+		$this->assertEquals('Dr.', $address->getTitle());
325
+		$this->assertEquals('firstunit', $address->getFirstname());
326 326
 	}
327 327
 
328 328
 
329 329
 	public function testSetBillingAddressByArrayError()
330 330
 	{
331
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
332
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, array( 'error' => false ) );
331
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
332
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, array('error' => false));
333 333
 	}
334 334
 
335 335
 
336 336
 	public function testSetBillingAddressParameterError()
337 337
 	{
338
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
339
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, 'error' );
338
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
339
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, 'error');
340 340
 	}
341 341
 
342 342
 
343 343
 	public function testSetDeliveryAddressByItem()
344 344
 	{
345
-		$item = $this->getAddress( 'Example company' );
345
+		$item = $this->getAddress('Example company');
346 346
 
347
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, $item );
347
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, $item);
348 348
 
349
-		$address = $this->object->get()->getAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY );
350
-		$this->assertEquals( 'Example company', $address->getCompany() );
349
+		$address = $this->object->get()->getAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY);
350
+		$this->assertEquals('Example company', $address->getCompany());
351 351
 	}
352 352
 
353 353
 
@@ -374,119 +374,119 @@  discard block
 block discarded – undo
374 374
 			'order.base.address.website' => 'www.example.com',
375 375
 			'order.base.address.flag' => 0,
376 376
 		);
377
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, $fixture );
377
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, $fixture);
378 378
 
379
-		$address = $this->object->get()->getAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY );
380
-		$this->assertEquals( 'Example company', $address->getCompany() );
381
-		$this->assertEquals( 'Dr.', $address->getTitle() );
382
-		$this->assertEquals( 'firstunit', $address->getFirstname() );
379
+		$address = $this->object->get()->getAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY);
380
+		$this->assertEquals('Example company', $address->getCompany());
381
+		$this->assertEquals('Dr.', $address->getTitle());
382
+		$this->assertEquals('firstunit', $address->getFirstname());
383 383
 	}
384 384
 
385 385
 
386 386
 	public function testSetDeliveryAddressByArrayError()
387 387
 	{
388
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
389
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, array( 'error' => false ) );
388
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
389
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, array('error' => false));
390 390
 	}
391 391
 
392 392
 
393 393
 	public function testSetDeliveryAddressTypeError()
394 394
 	{
395
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
396
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, 'error' );
395
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
396
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_DELIVERY, 'error');
397 397
 	}
398 398
 
399 399
 
400 400
 	public function testSetServicePayment()
401 401
 	{
402
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'service' );
403
-		$service = $manager->findItem( 'unitpaymentcode', array(), 'service', 'payment' );
402
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'service');
403
+		$service = $manager->findItem('unitpaymentcode', array(), 'service', 'payment');
404 404
 
405
-		$this->object->setService( 'payment', $service->getId(), array() );
406
-		$this->assertEquals( 'unitpaymentcode', $this->object->get()->getService( 'payment' )->getCode() );
405
+		$this->object->setService('payment', $service->getId(), array());
406
+		$this->assertEquals('unitpaymentcode', $this->object->get()->getService('payment')->getCode());
407 407
 
408
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
409
-		$this->object->setService( 'payment', $service->getId(), array( 'prepay' => true ) );
408
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
409
+		$this->object->setService('payment', $service->getId(), array('prepay' => true));
410 410
 	}
411 411
 
412 412
 
413 413
 	public function testSetDeliveryOption()
414 414
 	{
415
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'service' );
416
-		$service = $manager->findItem( 'unitcode', array(), 'service', 'delivery' );
415
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'service');
416
+		$service = $manager->findItem('unitcode', array(), 'service', 'delivery');
417 417
 
418
-		$this->object->setService( 'delivery', $service->getId(), array() );
419
-		$this->assertEquals( 'unitcode', $this->object->get()->getService( 'delivery' )->getCode() );
418
+		$this->object->setService('delivery', $service->getId(), array());
419
+		$this->assertEquals('unitcode', $this->object->get()->getService('delivery')->getCode());
420 420
 
421
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
422
-		$this->object->setService( 'delivery', $service->getId(), array( 'fast shipping' => true, 'air shipping' => false ) );
421
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
422
+		$this->object->setService('delivery', $service->getId(), array('fast shipping' => true, 'air shipping' => false));
423 423
 	}
424 424
 
425 425
 
426 426
 	public function testCheckLocale()
427 427
 	{
428
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'service' );
429
-		$payment = $manager->findItem( 'unitpaymentcode', array(), 'service', 'payment' );
430
-		$delivery = $manager->findItem( 'unitcode', array(), 'service', 'delivery' );
428
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'service');
429
+		$payment = $manager->findItem('unitpaymentcode', array(), 'service', 'payment');
430
+		$delivery = $manager->findItem('unitcode', array(), 'service', 'delivery');
431 431
 
432
-		$this->object->addProduct( $this->testItem->getId(), 2 );
433
-		$this->object->addCoupon( 'OPQR' );
432
+		$this->object->addProduct($this->testItem->getId(), 2);
433
+		$this->object->addCoupon('OPQR');
434 434
 
435
-		$this->object->setService( 'payment', $payment->getId() );
436
-		$this->object->setService( 'delivery', $delivery->getId() );
435
+		$this->object->setService('payment', $payment->getId());
436
+		$this->object->setService('delivery', $delivery->getId());
437 437
 
438 438
 		$basket = $this->object->get();
439 439
 		$price = $basket->getPrice();
440 440
 
441
-		foreach( $basket->getProducts() as $product )
441
+		foreach ($basket->getProducts() as $product)
442 442
 		{
443
-			$this->assertEquals( 2, $product->getQuantity() );
444
-			$product->getPrice()->setCurrencyId( 'CHF' );
443
+			$this->assertEquals(2, $product->getQuantity());
444
+			$product->getPrice()->setCurrencyId('CHF');
445 445
 		}
446 446
 
447
-		$basket->getService( 'delivery' )->getPrice()->setCurrencyId( 'CHF' );
448
-		$basket->getService( 'payment' )->getPrice()->setCurrencyId( 'CHF' );
449
-		$basket->getLocale()->setCurrencyId( 'CHF' );
450
-		$price->setCurrencyId( 'CHF' );
447
+		$basket->getService('delivery')->getPrice()->setCurrencyId('CHF');
448
+		$basket->getService('payment')->getPrice()->setCurrencyId('CHF');
449
+		$basket->getLocale()->setCurrencyId('CHF');
450
+		$price->setCurrencyId('CHF');
451 451
 
452
-		$this->context->getLocale()->setCurrencyId( 'CHF' );
453
-		$this->object->setAddress( \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $this->getAddress( 'Example company' ) );
452
+		$this->context->getLocale()->setCurrencyId('CHF');
453
+		$this->object->setAddress(\Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT, $this->getAddress('Example company'));
454 454
 
455
-		$this->context->getSession()->set( 'aimeos/basket/currency', 'CHF' );
456
-		$this->context->getLocale()->setCurrencyId( 'EUR' );
455
+		$this->context->getSession()->set('aimeos/basket/currency', 'CHF');
456
+		$this->context->getLocale()->setCurrencyId('EUR');
457 457
 
458
-		$this->context->getSession()->set( 'aimeos/basket/content-unittest-en-EUR-', null );
458
+		$this->context->getSession()->set('aimeos/basket/content-unittest-en-EUR-', null);
459 459
 
460
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
460
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
461 461
 		$basket = $object->get();
462 462
 
463
-		foreach( $basket->getProducts() as $product )
463
+		foreach ($basket->getProducts() as $product)
464 464
 		{
465
-			$this->assertEquals( 'EUR', $product->getPrice()->getCurrencyId() );
466
-			$this->assertEquals( 2, $product->getQuantity() );
465
+			$this->assertEquals('EUR', $product->getPrice()->getCurrencyId());
466
+			$this->assertEquals(2, $product->getQuantity());
467 467
 		}
468 468
 
469
-		$this->assertEquals( 'EUR', $basket->getService( 'payment' )->getPrice()->getCurrencyId() );
470
-		$this->assertEquals( 'EUR', $basket->getService( 'delivery' )->getPrice()->getCurrencyId() );
471
-		$this->assertEquals( 'EUR', $basket->getLocale()->getCurrencyId() );
472
-		$this->assertEquals( 'EUR', $basket->getPrice()->getCurrencyId() );
469
+		$this->assertEquals('EUR', $basket->getService('payment')->getPrice()->getCurrencyId());
470
+		$this->assertEquals('EUR', $basket->getService('delivery')->getPrice()->getCurrencyId());
471
+		$this->assertEquals('EUR', $basket->getLocale()->getCurrencyId());
472
+		$this->assertEquals('EUR', $basket->getPrice()->getCurrencyId());
473 473
 	}
474 474
 
475 475
 
476 476
 	/**
477 477
 	 * @param string $company
478 478
 	 */
479
-	protected function getAddress( $company )
479
+	protected function getAddress($company)
480 480
 	{
481
-		$customer = \Aimeos\MShop\Customer\Manager\Factory::createManager( \TestHelperFrontend::getContext(), 'Standard' );
482
-		$addressManager = $customer->getSubManager( 'address', 'Standard' );
481
+		$customer = \Aimeos\MShop\Customer\Manager\Factory::createManager(\TestHelperFrontend::getContext(), 'Standard');
482
+		$addressManager = $customer->getSubManager('address', 'Standard');
483 483
 
484 484
 		$search = $addressManager->createSearch();
485
-		$search->setConditions( $search->compare( '==', 'customer.address.company', $company ) );
486
-		$items = $addressManager->searchItems( $search );
485
+		$search->setConditions($search->compare('==', 'customer.address.company', $company));
486
+		$items = $addressManager->searchItems($search);
487 487
 
488
-		if( ( $item = reset( $items ) ) === false ) {
489
-			throw new \RuntimeException( sprintf( 'No address item with company "%1$s" found', $company ) );
488
+		if (($item = reset($items)) === false) {
489
+			throw new \RuntimeException(sprintf('No address item with company "%1$s" found', $company));
490 490
 		}
491 491
 
492 492
 		return $item;
Please login to merge, or discard this patch.