1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
14
|
|
|
* |
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
16
|
|
|
* and is licensed under the MIT license. For more information, see |
17
|
|
|
* <http://www.doctrine-project.org>. |
18
|
|
|
*/ |
19
|
|
|
|
20
|
|
|
namespace BaleenTest\Cli\CommandBus\Timeline; |
21
|
|
|
|
22
|
|
|
use Baleen\Cli\CommandBus\Timeline\AbstractTimelineCommand; |
23
|
|
|
use Baleen\Cli\CommandBus\Timeline\MigrateMessage; |
24
|
|
|
use Baleen\Migrations\Version; |
25
|
|
|
use BaleenTest\Cli\CommandBus\MessageTestCase; |
26
|
|
|
use Mockery as m; |
27
|
|
|
use Symfony\Component\Console\Input\InputArgument; |
28
|
|
|
use Symfony\Component\Console\Input\InputOption; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Class MigrateMessageTest |
32
|
|
|
* @author Gabriel Somoza <[email protected]> |
33
|
|
|
*/ |
34
|
|
|
class MigrateMessageTest extends MessageTestCase |
35
|
|
|
{ |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Must test the constructor and assert implemented interfaces |
39
|
|
|
*/ |
40
|
|
|
public function testConstructor() |
41
|
|
|
{ |
42
|
|
|
$instance = new MigrateMessage(); |
43
|
|
|
$this->assertInstanceOf(AbstractTimelineCommand::class, $instance); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* getClassName must return a string with the FQN of the command class being tested |
48
|
|
|
* @return string |
49
|
|
|
*/ |
50
|
|
|
protected function getClassName() |
51
|
|
|
{ |
52
|
|
|
return MigrateMessage::class; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* Must return an array in the format: |
57
|
|
|
* |
58
|
|
|
* [ |
59
|
|
|
* 'name' => 'functionName', // required |
60
|
|
|
* 'with' => [arguments for with] // optional |
61
|
|
|
* 'return' => return value // optional, defaults to return self |
62
|
|
|
* 'times' => number of times it will be invoked |
63
|
|
|
* ] |
64
|
|
|
* |
65
|
|
|
* @return array |
66
|
|
|
*/ |
67
|
|
|
protected function getExpectations() |
68
|
|
|
{ |
69
|
|
|
return [ |
70
|
|
|
[ 'name' => 'setName', |
71
|
|
|
'with' => 'timeline:migrate', |
72
|
|
|
], |
73
|
|
|
[ 'name' => 'setAliases', |
74
|
|
|
'with' => [['migrate']], |
75
|
|
|
], |
76
|
|
|
[ 'name' => 'setDescription', |
77
|
|
|
'with' => m::type('string'), |
78
|
|
|
], |
79
|
|
|
[ 'name' => 'addArgument', |
80
|
|
|
'with' => [MigrateMessage::ARG_TARGET, InputArgument::OPTIONAL, m::type('string'), 'latest'], |
81
|
|
|
], |
82
|
|
|
[ 'name' => 'addOption', |
83
|
|
|
'with' => [MigrateMessage::OPT_NOPROGRESS, m::any(), InputOption::VALUE_NONE, m::type('string')], |
84
|
|
|
], |
85
|
|
|
[ 'name' => 'addOption', |
86
|
|
|
'with' => [MigrateMessage::OPT_STRATEGY, 's', InputOption::VALUE_REQUIRED, m::type('string'), 'up'], |
87
|
|
|
], |
88
|
|
|
[ 'name' => 'addOption', |
89
|
|
|
'with' => [MigrateMessage::OPT_DRY_RUN, 'd', InputOption::VALUE_NONE, m::type('string')], |
90
|
|
|
], |
91
|
|
|
[ 'name' => 'addOption', |
92
|
|
|
'with' => [MigrateMessage::OPT_NO_STORAGE, m::any(), InputOption::VALUE_NONE, m::type('string')], |
93
|
|
|
], |
94
|
|
|
]; |
95
|
|
|
} |
96
|
|
|
} |
97
|
|
|
|