Skip to content
Snippets Groups Projects
FormulaireControllerTest.php 3.93 KiB
Newer Older
<?php
/**
 * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
 *
Laurent's avatar
Laurent committed
 * BOKEH is free software; you can redistribute it and/or modify
 * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
 * the Free Software Foundation.
 *
 * There are special exceptions to the terms and conditions of the AGPL as it
 * is applied to this software (see README file).
 *
Laurent's avatar
Laurent committed
 * BOKEH is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
 *
 * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
Laurent's avatar
Laurent committed
 * along with BOKEH; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA 
 */

Patrick Barroca's avatar
Patrick Barroca committed
abstract class FormulaireControllerPostActionTestCase extends AbstractControllerTestCase {
Patrick Barroca's avatar
Patrick Barroca committed
  public function setUp() {
    parent::setUp();
Patrick Barroca's avatar
Patrick Barroca committed
    Class_Article::newInstanceWithId(45, ['titre' => 'Contactez nous']);
Patrick Barroca's avatar
Patrick Barroca committed
    Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Formulaire')
    ->whenCalled('save')
    ->willDo(function ($formulaire) {
        $formulaire->setId(2)->cache();
        return true;
      });
Patrick Barroca's avatar
Patrick Barroca committed
    $timesource = new TimeSourceForTest('2012-10-23 12:32:00');
    Class_Formulaire::setTimeSource($timesource);
  }
}




class FormulaireControllerPostActionTest extends FormulaireControllerPostActionTestCase {
Patrick Barroca's avatar
Patrick Barroca committed
  protected $_user;

  public function setUp() {
    parent::setUp();

Patrick Barroca's avatar
Patrick Barroca committed
    $user = Class_Users::newInstanceWithId(23, ['nom' => 'Mas', 
                                                'prenom' => 'Fanto', 
                                                'login' => 'fantomas']);
    ZendAfi_Auth::getInstance()->logUser($user);
    $this->postDispatch('/formulaire/add/id_article/45', 
Patrick Barroca's avatar
Patrick Barroca committed
                        ['nom' => 'Tinguette' ,
                         'prenom' => 'Quentin' ]
                        ,true);
Patrick Barroca's avatar
Patrick Barroca committed
    $this->new_formulaire = Class_Formulaire::find(2);
  }
Patrick Barroca's avatar
Patrick Barroca committed
  
  /** @test */
  public function saveFormulaireShouldHaveNomTinguette() {
    $this->assertEquals('Tinguette', $this->new_formulaire->getNom());
  }
Patrick Barroca's avatar
Patrick Barroca committed
  
  /** @test */
  public function dateCreationShouldBeNow() {
    $this->assertEquals('2012-10-23 12:32:00', $this->new_formulaire->getDateCreation());
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function getDataShouldAnswerSerializedNomPrenom() {
    $this->assertEquals(serialize(['nom' => 'Tinguette' ,
                                   'prenom' => 'Quentin']),
                                  $this->new_formulaire->getData());
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function saveFormulaireShouldSaveUserIdIfConnected() {
    $this->assertEquals(23, $this->new_formulaire->getIdUser());
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function articleShouldBeContactezNous() {
    $this->assertEquals('Contactez nous', $this->new_formulaire->getArticle()->getTitre());
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function articleTitreContactezNousShouldBeDisplayed() {
    $this->assertXPathContentContains('//h1', 'Contactez nous');
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function postFormulaireShouldReturnMessage() {
    $this->assertXpathContentContains('//div','Merci.',true );
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function postFormulaireShouldReturnPostValues() {
    $this->assertXpathContentContains('//div','Tinguette',true );
  }
}




class FormulaireControllerWithoutConnectedUserPostActionTest extends FormulaireControllerPostActionTestCase {

  public function setUp() {
    parent::setUp();

Patrick Barroca's avatar
Patrick Barroca committed
    ZendAfi_Auth::getInstance()->clearIdentity();
llaffont's avatar
llaffont committed
    $this->postDispatch('/formulaire/add/id_article/45', 
Patrick Barroca's avatar
Patrick Barroca committed
                        ['nom' => 'Tinguette' ,
                         'prenom' => 'Quentin' ]
                        ,true);
Patrick Barroca's avatar
Patrick Barroca committed
    $this->new_formulaire = Class_Formulaire::find(2);
Patrick Barroca's avatar
Patrick Barroca committed
  }
Patrick Barroca's avatar
Patrick Barroca committed
  /** @test */
  public function saveFormulaireShouldNotHaveAnyUsers() {
    $this->assertEmpty($this->new_formulaire->getUser());
    
  }