Newer
Older
<?php
/**
* Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
*
* 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).
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
abstract class FormulaireControllerPostActionTestCase extends AbstractControllerTestCase {
Class_Article::newInstanceWithId(45, ['titre' => 'Contactez nous']);
Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Formulaire')
->whenCalled('save')
->willDo(function ($formulaire) {
$formulaire->setId(2)->cache();
return true;
});
$timesource = new TimeSourceForTest('2012-10-23 12:32:00');
Class_Formulaire::setTimeSource($timesource);
}
class FormulaireControllerWithEmailPostActionTest extends FormulaireControllerPostActionTestCase {
protected $_user;
public function setUp() {
parent::setUp();
Class_Article::find(45)->setDestinationEmail('recipient@example.com');
Class_Profil::getCurrentProfil()->setMailSite('sender@example.com');
$user = Class_Users::newInstanceWithId(23, ['nom' => 'Mas',
'prenom' => 'Fanto',
'login' => 'fantomas']);
ZendAfi_Auth::getInstance()->logUser($user);
$this->mock_transport = new MockMailTransport();
Zend_Mail::setDefaultTransport($this->mock_transport);
$this->postDispatch('/formulaire/add/id_article/45',
['nom' => 'Tinguette' ,
'prenom' => 'Quentin' ]
,true);
$this->new_formulaire = Class_Formulaire::find(2);
}
/** @test */
public function postFormulaireShouldReturnEmail() {
$this->assertXpathContentContains('//div','courriel',true );
}
/** @test */
public function mailContentShouldContainData() {
$this->assertContains('nom: Tinguette', quoted_printable_decode($this->mock_transport->getSentMails()[0]->getBodyText()->getContent()));
}
/** @test */
public function emailFromShouldBeSender() {
$this->assertEquals('sender@example.com', $this->mock_transport->getSentMails()[0]->getFrom());
}
/** @test */
public function emailToShouldBeRecipient() {
$this->assertEquals('recipient@example.com', $this->mock_transport->getSentMails()[0]->getRecipients()[0]);
}
/** @test */
public function emailSubjectShouldBeFormSent() {
$this->assertEquals('[Bokeh] Envoi d\'un formulaire', $this->mock_transport->getSentMails()[0]->getSubject());
}
class FormulaireControllerPostActionTest extends FormulaireControllerPostActionTestCase {
public function setUp() {
parent::setUp();
$user = Class_Users::newInstanceWithId(23, ['nom' => 'Mas',
'prenom' => 'Fanto',
'login' => 'fantomas']);
ZendAfi_Auth::getInstance()->logUser($user);
$this->postDispatch('/formulaire/add/id_article/45',
['nom' => 'Tinguette' ,
'prenom' => 'Quentin' ]
,true);
$this->new_formulaire = Class_Formulaire::find(2);
}
/** @test */
public function saveFormulaireShouldHaveNomTinguette() {
$this->assertEquals('Tinguette', $this->new_formulaire->getNom());
}
/** @test */
public function dateCreationShouldBeNow() {
$this->assertEquals('2012-10-23 12:32:00', $this->new_formulaire->getDateCreation());
}
/** @test */
public function getDataShouldAnswerSerializedNomPrenom() {
$this->assertEquals(serialize(['nom' => 'Tinguette' ,
'prenom' => 'Quentin']),
$this->new_formulaire->getData());
}
/** @test */
public function saveFormulaireShouldSaveUserIdIfConnected() {
$this->assertEquals(23, $this->new_formulaire->getIdUser());
}
/** @test */
public function articleShouldBeContactezNous() {
$this->assertEquals('Contactez nous', $this->new_formulaire->getArticle()->getTitre());
}

efalcy
committed
/** @test */
public function articleTitreContactezNousShouldBeDisplayed() {
$this->assertXPathContentContains('//h1', 'Contactez nous');
}
/** @test */
public function postFormulaireShouldReturnMessage() {
$this->assertXpathContentContains('//div','Merci.',true );
}

efalcy
committed
/** @test */
public function postFormulaireShouldReturnPostValues() {
$this->assertXpathContentContains('//div','Tinguette',true );
}
}
class FormulaireControllerWithoutConnectedUserPostActionTest extends FormulaireControllerPostActionTestCase {
public function setUp() {
parent::setUp();
$this->postDispatch('/formulaire/add/id_article/45',
['nom' => 'Tinguette' ,
'prenom' => 'Quentin' ]
,true);
/** @test */
public function saveFormulaireShouldNotHaveAnyUsers() {
$this->assertEmpty($this->new_formulaire->getUser());