Newer
Older
<?php
/**
* Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
*
* AFI-OPAC 2.0 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).
*
* AFI-OPAC 2.0 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
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once 'AbstractControllerTestCase.php';
abstract class AbonneControllerEditActionWithAbonneSIGBTestCase extends AbstractControllerTestCase {
protected $_jerome;
public function setUp() {
parent::setUp();
$mock_emprunteur = Storm_Test_ObjectWrapper::mock();
$mock_emprunteur->whenCalled('updateFromUserAndSave')->answers(true);
$this->_jerome = Class_Users::newInstanceWithId(4, ['login' => 'jm',
'prenom' => 'Jerome',
'is_contact_sms' => true,
'idabon' => '12345',
'id_site' => 1,
'password' => 'secret',
'fiche_sigb' => ['fiche' => $mock_emprunteur]])->beAbonneSIGB();
ZendAfi_Auth::getInstance()->logUser($this->_jerome);
Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Users')
->whenCalled('save')
->answers(true);
}
}
class AbonneControllerEditWithContactMailSmsPostTest extends AbonneControllerEditActionWithAbonneSIGBTestCase {
public function setUp() {
parent::setUp();
Class_AdminVar::newInstanceWithId('CHAMPS_FICHE_UTILISATEUR',
['valeur' => 'prenom;mode_contact;telephone;mail']);
$this->postDispatch('/abonne/edit',
['telephone' => '12 34 56',
'mail' => 'mm@gmail.com',
'mode_contact' => 'is_contact_mail',
'prenom' => 'Marcel',
'nom' => 'Mazout']);
}
/** @test */
public function telephoneShouldBe123456() {
$this->assertEquals('12 34 56', $this->_jerome->getTelephone());
}
/** @test */
public function nomShouldStayEmpty() {
$this->assertEquals('', $this->_jerome->getNom());
}
/** @test */
public function isContactByMailShouldBeTrue() {
$this->assertTrue($this->_jerome->getIsContactMail());
}
/** @test */
public function userShouldBeSaved() {
$this->assertTrue(Class_Users::methodHasBeenCalled('save'),
implode(',', $this->_jerome->getErrors()));
}
/** @test */
public function responseShouldRedirectToFiche() {
$this->assertRedirectTo('/abonne/fiche');
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
class AbonneControllerEditWithContactMailPostErrorsTest extends AbonneControllerEditActionWithAbonneSIGBTestCase {
/** @test */
public function pageShouldDisplayErrorNoMailProvided() {
Class_AdminVar::newInstanceWithId('CHAMPS_FICHE_UTILISATEUR',
['valeur' => 'prenom;mode_contact;telephone;mail']);
$this->postDispatch('/abonne/edit',
['telephone' => '12 34 56',
'mail' => '',
'mode_contact' => 'is_contact_mail',
'prenom' => 'Marcel',
'nom' => 'Mazout']);
$this->assertXPathContentContains('//ul[@class="errors"]//li',
'Vous devez fournir une adresse mail valide');
}
/** @test */
public function pageShouldDisplayErrorNoTelephoneProvided() {
Class_AdminVar::newInstanceWithId('CHAMPS_FICHE_UTILISATEUR',
['valeur' => 'prenom;mode_contact;telephone']);
$this->postDispatch('/abonne/edit',
['telephone' => '',
'mode_contact' => 'is_contact_sms',
'prenom' => 'Marcel',
'nom' => 'Mazout']);
$this->assertXPathContentContains('//ul[@class="errors"]//li',
'Vous devez saisir un numéro de téléphone');
}
}
class AbonneControllerEditWithContactMailSmsTest extends AbonneControllerEditActionWithAbonneSIGBTestCase {
public function setUp() {
parent::setUp();
Class_AdminVar::newInstanceWithId('CHAMPS_FICHE_UTILISATEUR',
['valeur' => 'prenom;mode_contact;telephone']);
$this->dispatch('/abonne/edit', true);
}
/** @test */
public function inputNomShouldNotBePresent() {
$this->assertNotXPath('//input[@name="nom"]');
}
/** @test */
public function inputPrenomShouldHaveValueJerome() {
$this->assertXPath('//input[@name="prenom"][@value="Jerome"]');
}
/** @test */
public function radioButtonIsContactSmsShouldBeChecked() {
$this->assertXPath('//input[@type="radio"][@name="mode_contact"][@value="is_contact_sms"][@checked="checked"]');
public function radioButtonIsContactMailShouldNotBeChecked() {
$this->assertXPath('//input[@type="radio"][@name="mode_contact"][@value="is_contact_mail"][not(@checked)]');
}
/** @test */
public function radioButtonIsContactLetterShouldNotBeChecked() {
$this->assertXPath('//input[@type="radio"][@name="mode_contact"][@value="is_contact_letter"][not(@checked)]');
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
}
/** @test */
public function passwordInputShouldNotBePresent() {
$this->assertNotXPath('//input[@name="password"]');
}
/** @test */
public function confirmPasswordInputShouldNotBePresent() {
$this->assertNotXPath('//input[@name="confirm_password"]');
}
}
class AbonneControllerEditWithContactPasswordMailTest extends AbonneControllerEditActionWithAbonneSIGBTestCase {
public function setUp() {
parent::setUp();
Class_AdminVar::newInstanceWithId('CHAMPS_FICHE_UTILISATEUR',
['valeur' => 'nom;mail;password']);
$this->dispatch('/abonne/edit', true);
}
/** @test */
public function checkboxIsContactSmsShouldNotBePresent() {
$this->assertNotXPath('//input[@type="radio"][@name="mode_contact"]');
}
/** @test */
public function passwordInputShouldBePresent() {
$this->assertXPath('//input[@name="password"]');
}
/** @test */
public function confirmPasswordShouldBeInFieldSetIdentification() {
$this->assertXPath('//fieldset[@id="fieldset-identification"]//input[@name="confirm_password"]');
}
}
?>