Completed
Pull Request — master (#4)
by Timothy
08:48 queued 02:25
created

testValidUpToDateCommandFromSymfonyConsole()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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
namespace Abacaphiliac\DoctrineORMDiagnosticsModuleTest\CliTest;
20
21
use Doctrine\DBAL\Migrations\Tools\Console\Command\UpToDateCommand;
22
use Doctrine\ORM\EntityManager;
23
use DoctrineORMModuleTest\Util\ServiceManagerFactory;
24
use Symfony\Component\Console\Application as SymfonyConsoleApplication;
25
use Zend\EventManager\SharedEventManagerInterface;
26
use Zend\Mvc\Application;
27
use Zend\ServiceManager\ServiceLocatorInterface;
28
29
class ModuleCollaborationTest extends \PHPUnit_Framework_TestCase
30
{
31
    /** @var ServiceLocatorInterface */
32
    private $serviceLocator;
33
    
34
    /** @var SymfonyConsoleApplication */
35
    protected $cli;
36
37
    /** @var EntityManager */
38
    protected $entityManager;
39
40
    /**
41
     * @return void
42
     */
43
    public static function setUpBeforeClass()
44
    {
45
        parent::setUpBeforeClass();
46
        
47
        $config = require __DIR__ . '/TestConfiguration.php.dist';
48
        
49
        ServiceManagerFactory::setConfig($config);
50
    }
51
52
    /**
53
     * @return void
54
     */
55
    protected function setUp()
56
    {
57
        $this->serviceLocator = ServiceManagerFactory::getServiceManager();
58
        \PHPUnit_Framework_Assert::assertInstanceOf(ServiceLocatorInterface::class, $this->serviceLocator);
59
        
60
        /* @var $sharedEventManager SharedEventManagerInterface */
61
        $sharedEventManager = $this->serviceLocator->get('SharedEventManager');
62
        \PHPUnit_Framework_Assert::assertInstanceOf(SharedEventManagerInterface::class, $sharedEventManager);
63
        
64
        /* @var $application Application */
65
        $application = $this->serviceLocator->get('Application');
66
        \PHPUnit_Framework_Assert::assertInstanceOf(Application::class, $application);
67
        
68
        $invocations = 0;
69
        $sharedEventManager->attach('doctrine', 'loadCli.post', function () use (&$invocations) {
70
            $invocations++;
71
        });
72
73
        $application->bootstrap();
74
        
75
        $this->entityManager = $this->serviceLocator->get('doctrine.entitymanager.orm_default');
76
        \PHPUnit_Framework_Assert::assertInstanceOf(EntityManager::class, $this->entityManager);
77
        
78
        $this->cli = $this->serviceLocator->get('doctrine.cli');
79
        \PHPUnit_Framework_Assert::assertInstanceOf(SymfonyConsoleApplication::class, $this->cli);
80
        
81
        self::assertSame(1, $invocations);
82
    }
83
    
84
    public function testValidUpToDateCommandFromServiceLocator()
85
    {
86
        $actual = $this->serviceLocator->get('doctrine.migrations_cmd.uptodate');
87
        
88
        self::assertInstanceOf(UpToDateCommand::class, $actual);
89
    }
90
    
91
    public function testValidUpToDateCommandFromSymfonyConsole()
92
    {
93
        $actual = $this->cli->get('migrations:up-to-date');
94
        
95
        self::assertInstanceOf(UpToDateCommand::class, $actual);
96
    }
97
}
98