|
1
|
|
|
<?php declare(strict_types=1); |
|
2
|
|
|
|
|
3
|
|
|
namespace Janisbiz\LightOrm\Tests\Behat\Features\Connection; |
|
4
|
|
|
|
|
5
|
|
|
use Janisbiz\LightOrm\Connection\ConnectionConfigInterface; |
|
6
|
|
|
use Janisbiz\LightOrm\Dms\MySQL\Connection\ConnectionConfig as MySQLConnectionConfig; |
|
7
|
|
|
use Janisbiz\LightOrm\Tests\Behat\Bootstrap\AbstractFeatureContext; |
|
8
|
|
|
|
|
9
|
|
|
class ConnectionFeatureContext extends AbstractFeatureContext |
|
10
|
|
|
{ |
|
11
|
|
|
/** |
|
12
|
|
|
* @var ConnectionConfigInterface |
|
13
|
|
|
*/ |
|
14
|
|
|
private $connectionConfig; |
|
15
|
|
|
|
|
16
|
|
|
/** |
|
17
|
|
|
* @Given /^I have existing connection config "(\w+)"$/ |
|
18
|
|
|
* |
|
19
|
|
|
* @param string $connectionName |
|
20
|
|
|
* |
|
21
|
|
|
* @throws \Exception |
|
22
|
|
|
*/ |
|
23
|
|
|
public function iHaveExistingConnectionConfig(string $connectionName) |
|
24
|
|
|
{ |
|
25
|
|
|
$connectionConfigArray = $this->getConnectionConfig($connectionName); |
|
26
|
|
|
|
|
27
|
|
|
switch ($connectionConfigArray['adapter']) { |
|
28
|
|
|
case MySQLConnectionConfig::ADAPTER: |
|
29
|
|
|
$this->connectionConfig = new MySQLConnectionConfig( |
|
30
|
|
|
$connectionConfigArray['host'], |
|
31
|
|
|
$connectionConfigArray['username'], |
|
32
|
|
|
$connectionConfigArray['password'], |
|
33
|
|
|
$connectionConfigArray['dbname'] |
|
34
|
|
|
); |
|
35
|
|
|
|
|
36
|
|
|
break; |
|
37
|
|
|
} |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @When I add connection config to connection pool |
|
42
|
|
|
*/ |
|
43
|
|
|
public function iAddConnectionConfigToConnectionPool() |
|
44
|
|
|
{ |
|
45
|
|
|
$this->connectionPool->addConnectionConfig($this->connectionConfig); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* @Then /^I should have connection "(\w+)"$/ |
|
50
|
|
|
* |
|
51
|
|
|
* @param string $connectionName |
|
52
|
|
|
*/ |
|
53
|
|
|
public function iShouldHaveConnection(string $connectionName) |
|
54
|
|
|
{ |
|
55
|
|
|
$this->connectionPool->getConnection($connectionName); |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
|