2015-09-07 13 views
7

Mam mały problem podczas tworzenia testów z PHPUnit.Usługi PHPUnit i ZF2

Oto moja konfiguracja:

protected function setUp() 
{ 
    $serviceManager = Bootstrap::getServiceManager(); 

    $this->mockDriver = $this->getMock('Zend\Db\Adapter\Driver\DriverInterface'); 
    $this->mockConnection = $this->getMock('Zend\Db\Adapter\Driver\ConnectionInterface'); 
    $this->mockDriver->expects($this->any())->method('checkEnvironment')->will($this->returnValue(true)); 
    $this->mockDriver->expects($this->any())->method('getConnection')->will($this->returnValue($this->mockConnection)); 
    $this->mockPlatform = $this->getMock('Zend\Db\Adapter\Platform\PlatformInterface'); 
    $this->mockStatement = $this->getMock('Zend\Db\Adapter\Driver\StatementInterface'); 
    $this->mockDriver->expects($this->any())->method('createStatement')->will($this->returnValue($this->mockStatement)); 
    $this->adapter = new Adapter($this->mockDriver, $this->mockPlatform); 
    $this->sql = new Sql($this->adapter); 

    $mockTableGateway = $this->getMock('Zend\Db\TableGateway\TableGateway', array(), array(), '', false); 

    $maiFormuleRevisionTable = $this->getMockBuilder('Maintenance\Model\BDD\PMaiFormulerevisionTable') 
     ->setMethods(array()) 
     ->setConstructorArgs(array($mockTableGateway, $this->adapter, $this->sql)) 
     ->getMock(); 
    $maiFormulerevisionService = $this->getMockBuilder('Maintenance\Service\Model\PMaiFormulerevisionService') 
     ->setMethods(array()) 
     ->setConstructorArgs(array($maiFormuleRevisionTable)) 
     ->getMock(); 
    $this->assertTrue($maiFormulerevisionService instanceof PMaiFormulerevisionService); 

    $this->controller = new RevisionsController($maiFormulerevisionService); 

    $this->request = new Request(); 
    $this->routeMatch = new RouteMatch(array('controller' => 'index')); 
    $this->event  = new MvcEvent(); 
    $config = $serviceManager->get('Config'); 
    $routerConfig = isset($config['router']) ? $config['router'] : array(); 
    $router = HttpRouter::factory($routerConfig); 
    $this->event->setRouter($router); 
    $this->event->setRouteMatch($this->routeMatch); 
    $this->controller->setEvent($this->event); 
    $this->controller->setServiceLocator($serviceManager); 
} 

Oto test dla mojej funkcji:

public function testEditFormuleActionCanBeAccessed() 
{ 
    $this->routeMatch->setParam('action', 'loadformule'); 
    $this->routeMatch->setParam('idformule', '23'); 
    $result = $this->controller->dispatch($this->request); 
    $response = $this->controller->getResponse(); 
    $this->assertEquals(200, $response->getStatusCode()); 
} 

A moja Controler:

public function loadformuleAction() 
{ 
    try { 
     $iStatus = 0; 
     $iMaiFormuleRevisionId = (int) $this->params('idformule'); 

     $oFormule = $this->maiFormulerevisionService->selectByIdOrCreate($iMaiFormuleRevisionId); 
     $maiFormulerevisionForm = new PMaiFormulerevisionForm($oFormule); 

     if ($this->getRequest()->isPost()) { 
      /* etc ... */ 
     } 

     $viewModel = new ViewModel(); 
     $viewModel->setTerminal(true); 
     $viewModel->setVariables([ 
      'maiFormulerevisionForm' => $maiFormulerevisionForm, 
      'iMaiFormuleRevisionId' => $oFormule->getMaiFormuleRevisionId(), 
      'iStatus'    => $iStatus 
     ]); 
     return $viewModel; 
    } catch (\Exception $e) { 
     throw new \Exception($e); 
    } 
} 

Ale gdy próbuję uruchomić mój test , pokazuje błąd, a ja wskazuję, że mój test nie przechodzi do mojej usługi, kiedy ją nazywam ($ this-> maiFormulerevisionService):

1) MaintenanceTest \ regulatora \ RevisionsControllerTest :: testEditFormuleActionCanBeAccessed wyjątek: argument 1 przekazany do konserwacji \ Kształt PMaiFormulerevisionForm :: \ __ konstrukt() musi być przypadek modelu konserwacji \ \ PMaiFormulerevision, zero podane

nie rozumiem, dlaczego moje makiety nie działa ...

Dzięki za odpowiedzi :)

Edit:

Hum ... gdy próbuję to:

$maiFormulerevisionService = new PMaiFormulerevisionService($maiFormuleRevisionTable); 

zamiast tego:

$maiFormulerevisionService = $this->getMockBuilder('Maintenance\Service\Model\PMaiFormulerevisionService') 
      ->setMethods(array()) 
      ->setConstructorArgs(array($maiFormuleRevisionTable)) 
      ->getMock(); 

To idzie do służby, ale nie do TableGateway określonego w konstruktorze usługi ($ maiFormuleRevisionTable) ... więc nadal nie działa ...

+0

Proszę Jestem naprawdę zablokowany. Naprawdę muszę rozwiązać ten fałszywy problem, a dokumentacja jest naprawdę miękka! – Amelie

+0

Nie przetestowany, ale wygląda na to, że tworzysz próbę dla maiFormulerevisionService, która zwraca wartość null dla wszystkich metod. Więc w kontrolerze, to zwróci wartość null '$ oFormule = $ this-> maiFormulerevisionService-> selectByIdOrCreate ($ iMaiFormuleRevisionId);' Co oznacza ta zostanie przekazana wartość null w konstruktorze, który jest wiadomość o błędzie '$ maiFormulerevisionForm = new PMaiFormulerevisionForm ($ oFormule);' – Ed209

+0

Testowałem, ale metoda w trybie testowym nie wchodzi w funkcję selectByIdOrCreate(), więc nie zwraca wartości null ... cóż, w rzeczywistości nie robi tego " t przejdź do usług lub klas danych – Amelie

Odpowiedz

2

Ustawiłeś próbę, ale musisz również ustawić, co zwraca twoja próbna metoda wywołując selectByIdOrCreate. Ponieważ robisz:

$oFormule = $this->maiFormulerevisionService->selectByIdOrCreate($iMaiFormuleRevisionId); 
$maiFormulerevisionForm = new PMaiFormulerevisionForm($oFormule); 

makiety powróci null dla metody selectByIdOrCreate tak długo, jak nie zostanie ustawiona wartość zwracaną dla tej metody.

Spróbuj dodać metodę mock tak:

$mock = $maiFormulerevisionService; 
$methodName = 'selectByIdOrCreate'; 
$stub = $this->returnValue($maiFormuleRevisionTable); 

$mock->expects($this->any())->method($methodName)->will($stub);