1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Mtf\EntryPoint;
use Magento\Mtf\ObjectManager;
/**
* Class EntryPoint
* Application entry point, used to bootstrap and run application
*
*/
class EntryPoint
{
/**
* @var string
*/
protected $_rootDir;
/**
* @var array
*/
protected $_parameters;
/**
* Application object manager
*
* @var ObjectManager
*/
protected $_locator;
/**
* @param string $rootDir
* @param array $parameters
* @param ObjectManager $objectManager
* @SuppressWarnings(PHPMD.ExitExpression)
*/
public function __construct(
$rootDir,
array $parameters = [],
ObjectManager $objectManager = null
) {
$this->_rootDir = $rootDir;
$this->_parameters = $parameters;
$this->_locator = $objectManager;
}
/**
* Run a Mtf application
*
* @param $applicationName
* @param array $arguments
* @return mixed
* @throws \DomainException
*/
public function run($applicationName, array $arguments = [])
{
try {
if (!$this->_locator) {
$locatorFactory = new \Magento\Mtf\ObjectManagerFactory();
$this->_locator = $locatorFactory->create();
}
return $this->_locator->create($applicationName, $arguments)->launch();
} catch (\Exception $exception) {
$message = "Error happened during application run.\n";
$message .= $exception->getMessage();
throw new \DomainException($message);
}
}
}