1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Graze\Sprout\Test\Unit\Dump; |
4
|
|
|
|
5
|
|
|
use Graze\ParallelProcess\Pool; |
6
|
|
|
use Graze\Sprout\Config\ConnectionConfigInterface; |
7
|
|
|
use Graze\Sprout\Dump\Mysql\MysqlTableDumper; |
8
|
|
|
use Graze\Sprout\Dump\TableDumperFactory; |
9
|
|
|
use Graze\Sprout\Dump\TableDumperInterface; |
10
|
|
|
use Graze\Sprout\Test\TestCase; |
11
|
|
|
use Mockery; |
12
|
|
|
use Psr\Log\LoggerInterface; |
13
|
|
|
|
14
|
|
|
class TableDumperFactoryTest extends TestCase |
15
|
|
|
{ |
16
|
|
|
public function testMysqlReturnsMysqlTableDumper() |
17
|
|
|
{ |
18
|
|
|
$pool = Mockery::mock(Pool::class); |
19
|
|
|
|
20
|
|
|
$config = Mockery::mock(ConnectionConfigInterface::class); |
21
|
|
|
$config->shouldReceive('getDriver') |
22
|
|
|
->andReturn('mysql'); |
23
|
|
|
|
24
|
|
|
$dumperFactory = new TableDumperFactory($pool); |
|
|
|
|
25
|
|
|
|
26
|
|
|
$tableDumper = $dumperFactory->getDumper($config); |
|
|
|
|
27
|
|
|
|
28
|
|
|
$this->assertInstanceOf(TableDumperInterface::class, $tableDumper); |
29
|
|
|
$this->assertInstanceOf(MysqlTableDumper::class, $tableDumper); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @expectedException \InvalidArgumentException |
34
|
|
|
*/ |
35
|
|
|
public function testUnknownThrowsException() |
36
|
|
|
{ |
37
|
|
|
$pool = Mockery::mock(Pool::class); |
38
|
|
|
|
39
|
|
|
$config = Mockery::mock(ConnectionConfigInterface::class); |
40
|
|
|
$config->shouldReceive('getDriver') |
41
|
|
|
->andReturn('pgsql'); |
42
|
|
|
|
43
|
|
|
$dumperFactory = new TableDumperFactory($pool); |
|
|
|
|
44
|
|
|
|
45
|
|
|
$dumperFactory->getDumper($config); |
|
|
|
|
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
public function testLogging() |
49
|
|
|
{ |
50
|
|
|
$logger = Mockery::mock(LoggerInterface::class); |
51
|
|
|
$pool = Mockery::mock(Pool::class); |
52
|
|
|
$config = Mockery::mock(ConnectionConfigInterface::class); |
53
|
|
|
$config->shouldReceive('getDriver') |
54
|
|
|
->andReturn('mysql'); |
55
|
|
|
|
56
|
|
|
$dumperFactory = new TableDumperFactory($pool); |
|
|
|
|
57
|
|
|
$dumperFactory->setLogger($logger); |
|
|
|
|
58
|
|
|
|
59
|
|
|
$logger->allows() |
60
|
|
|
->debug( |
|
|
|
|
61
|
|
|
"getDumper: using mysql dumper for driver: mysql", |
62
|
|
|
['driver' => 'mysql'] |
63
|
|
|
); |
64
|
|
|
|
65
|
|
|
$tableDumper = $dumperFactory->getDumper($config); |
|
|
|
|
66
|
|
|
|
67
|
|
|
$this->assertInstanceOf(TableDumperInterface::class, $tableDumper); |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|