Completed
Push — master ( b8be04...f9d464 )
by Aimeos
07:41
created

TestHelperJadm   C

Complexity

Total Complexity 8

Size/Duplication

Total Lines 118
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 20

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 8
c 1
b 0
f 0
lcom 1
cbo 20
dl 0
loc 118
rs 6.4705

6 Methods

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 6 1
A getContext() 0 8 2
A getAimeos() 0 13 2
A getJsonadmPaths() 0 4 1
B createContext() 0 45 1
B createView() 0 25 1
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2015
6
 */
7
8
9
class TestHelperJadm
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
10
{
11
	private static $aimeos;
12
	private static $context;
13
14
15
	public static function bootstrap()
16
	{
17
		self::getAimeos();
18
		\Aimeos\MShop\Factory::setCache( false );
19
		\Aimeos\Admin\JsonAdm\Factory::setCache( false );
20
	}
21
22
23
	public static function getContext( $site = 'unittest' )
24
	{
25
		if( !isset( self::$context[$site] ) ) {
26
			self::$context[$site] = self::createContext( $site );
27
		}
28
29
		return clone self::$context[$site];
30
	}
31
32
33
	public static function getAimeos()
34
	{
35
		if( !isset( self::$aimeos ) )
36
		{
37
			require_once 'Bootstrap.php';
38
			spl_autoload_register( 'Aimeos\\Bootstrap::autoload' );
39
40
			$extdir = dirname( dirname( dirname( dirname( __FILE__ ) ) ) );
41
			self::$aimeos = new \Aimeos\Bootstrap( array( $extdir ), false );
42
		}
43
44
		return self::$aimeos;
45
	}
46
47
48
	public static function getJsonadmPaths()
49
	{
50
		return self::getAimeos()->getCustomPaths( 'admin/jsonadm/templates' );
51
	}
52
53
54
	private static function createContext( $site )
55
	{
56
		$ctx = new \Aimeos\MShop\Context\Item\Standard();
57
		$aimeos = self::getAimeos();
58
59
60
		$paths = $aimeos->getConfigPaths( 'mysql' );
61
		$paths[] = __DIR__ . DIRECTORY_SEPARATOR . 'config';
62
		$file = __DIR__ . DIRECTORY_SEPARATOR . 'confdoc.ser';
63
64
		$conf = new \Aimeos\MW\Config\PHPArray( array(), $paths );
65
		$conf = new \Aimeos\MW\Config\Decorator\Memory( $conf );
66
		$conf = new \Aimeos\MW\Config\Decorator\Documentor( $conf, $file );
67
		$ctx->setConfig( $conf );
68
69
70
		$dbm = new \Aimeos\MW\DB\Manager\PDO( $conf );
71
		$ctx->setDatabaseManager( $dbm );
72
73
74
		$logger = new \Aimeos\MW\Logger\File( $site . '.log', \Aimeos\MW\Logger\Base::DEBUG );
75
		$ctx->setLogger( $logger );
76
77
78
		$session = new \Aimeos\MW\Session\None();
79
		$ctx->setSession( $session );
80
81
82
		$i18n = new \Aimeos\MW\Translation\None( 'de' );
83
		$ctx->setI18n( array( 'de' => $i18n ) );
84
85
86
		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $ctx );
87
		$locale = $localeManager->bootstrap( $site, 'de', '', false );
88
		$ctx->setLocale( $locale );
89
90
91
		$view = self::createView( $conf );
92
		$ctx->setView( $view );
93
94
95
		$ctx->setEditor( 'core:admin/jsonadm' );
96
97
		return $ctx;
98
	}
99
100
101
	protected static function createView( \Aimeos\MW\Config\Iface $config )
102
	{
103
		$tmplpaths = self::getAimeos()->getCustomPaths( 'admin/jsonadm/templates' );
104
105
		$view = new \Aimeos\MW\View\Standard( $tmplpaths );
106
107
		$trans = new \Aimeos\MW\Translation\None( 'de_DE' );
108
		$helper = new \Aimeos\MW\View\Helper\Translate\Standard( $view, $trans );
109
		$view->addHelper( 'translate', $helper );
110
111
		$helper = new \Aimeos\MW\View\Helper\Url\Standard( $view, 'http://baseurl' );
112
		$view->addHelper( 'url', $helper );
113
114
		$helper = new \Aimeos\MW\View\Helper\Number\Standard( $view, '.', '' );
115
		$view->addHelper( 'number', $helper );
116
117
		$helper = new \Aimeos\MW\View\Helper\Date\Standard( $view, 'Y-m-d' );
118
		$view->addHelper( 'date', $helper );
119
120
		$config = new \Aimeos\MW\Config\Decorator\Protect( $config, array( 'admin/jsonadm' ) );
121
		$helper = new \Aimeos\MW\View\Helper\Config\Standard( $view, $config );
122
		$view->addHelper( 'config', $helper );
123
124
		return $view;
125
	}
126
}
127