Newer
Older
<?php
/**
* Copyright (c) 2012-2014, 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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
abstract class Cosmo_EmplacementControllerTestCase extends CosmoControllerTestCase {
public function setUp() {
parent::setUp();
$this->fixture('Class_CodifEmplacement', [
'id' => 18,
'libelle' => 'Albums',
'regles' => '995$x=55',
'ne_pas_afficher' => 0,
]);
}
}
class Cosmo_EmplacementControllerIndexTest extends Cosmo_EmplacementControllerTestCase {
public function setUp() {
parent::setUp();
$this->dispatch('/cosmo/emplacement/index', true);
}
/** @test */
public function titleShouldBePresent() {
$this->assertXpathContentContains('//h1', 'Codification des emplacements');
}
/** @test */
public function addButtonShouldBePresent() {
$this->assertXpath('//input[contains(@onclick, "/cosmo/emplacement/add")]');
}
/** @test */
public function albumsFormShouldBePresent() {
$this->assertXpath('//form[contains(@action, "/cosmo/emplacement/validate/id/18")]');
}
/** @test */
public function albumsLabelShouldBePresent() {
$this->assertXpath('//input[@name="libelle"][@value="Albums"]');
}
/** @test */
public function albumsRulesShouldBePresent() {
$this->assertXpathContentContains('//textarea[@name="regles"]', '995$x=55');
}
/** @test */
public function albumsDisplayShouldBePresent() {
$this->assertXpathContentContains(
'//select[@name="ne_pas_afficher"]/option[@selected="selected"]',
'Afficher les exemplaires');
}
/** @test */
public function albumsDeleteButtonShouldBePresent() {
$this->assertXpath('//input[contains(@onclick, "/cosmo/emplacement/delete/id/18")]');
}
}
class Cosmo_EmplacementControllerAlbumsValidatePostTest extends Cosmo_EmplacementControllerTestCase {
public function setUp() {
parent::setUp();
$this->postDispatch(
'/cosmo/emplacement/validate/id/18',
[
'libelle' => 'Alboums',
'regles' => '995$x=07',
'ne_pas_afficher' => 1]);
$this->model = Class_CodifEmplacement::find(18);
}
/** @test */
public function labelShouldBeAlboums() {
$this->assertEquals('Alboums', $this->model->getLibelle());
}
/** @test */
public function rulesShouldBeDollarXEqualsZeroSeven() {
$this->assertEquals('995$x=07', $this->model->getRegles());
}
/** @test */
public function displayHideShouldBeHide() {
$this->assertEquals(1, $this->model->getNePasAfficher());
}
}
class Cosmo_EmplacementControllerAddTest extends Cosmo_EmplacementControllerTestCase {
public function setUp() {
parent::setUp();
$this->dispatch('/cosmo/emplacement/add', true);
}
/** @test */
public function titleShouldBePresent() {
$this->assertXpathContentContains('//h1', 'Codification des emplacements');
}
/** @test */
public function formActionShouldGoToValidate() {
$this->assertXpath('//form[contains(@action, "/cosmo/emplacement/validate")]');
}
/** @test */
public function labelShouldDefaultToNouvelEmplacement() {
$this->assertXpath('//input[@name="libelle"][@value="** nouvel emplacement **"]');
}
/** @test */
public function rulesShouldDefault995DollarKSlashR() {
$this->assertXpathContentContains('//textarea[@name="regles"]', '995$k/R');
}
/** @test */
public function albumsDisplayShouldBePresent() {
$this->assertXpathContentContains(
'//select[@name="ne_pas_afficher"]/option[@selected="selected"]',
'Afficher les exemplaires');
}
/** @test */
public function backButtonShouldBePresent() {
$this->assertXpath('//input[@value="Retour"][contains(@onclick, "/cosmo/emplacement")]');
}
}
class Cosmo_EmplacementControllerAddPostTest extends Cosmo_EmplacementControllerTestCase {
public function setUp() {
parent::setUp();
$this->postDispatch(
'/cosmo/emplacement/validate',
[
'libelle' => 'Atlantis',
'regles' => '999$y/Arcadia',
'ne_pas_afficher' => 0]);
$this->model = Class_CodifEmplacement::find(19);
}
/** @test */
public function atlantisShouldBeSaved() {
$this->assertNotNull($this->model);
}
/** @test */
public function labelShouldBeAtlantis() {
$this->assertEquals('Atlantis', $this->model->getLibelle());
}
/** @test */
public function rulesShouldBe999DollarYSlashArcadia() {
$this->assertEquals('999$y/Arcadia', $this->model->getRegles());
}
/** @test */
public function displayHideShouldBeShow() {
$this->assertEquals(0, $this->model->getNePasAfficher());
}
}
class Cosmo_EmplacementControllerAlbumsValidatePostWithErrorsTest extends Cosmo_EmplacementControllerTestCase {
public function setUp() {
parent::setUp();
$this->postDispatch(
'/cosmo/emplacement/validate/id/18',
[
'libelle' => '',
'regles' => '9#95$x=07',
'ne_pas_afficher' => 1]);
$this->model = Class_CodifEmplacement::find(18);
}
public function errorsProvider() {
return [
['Vous devez définir le libellé'],
['Le $ est absent ou mal positionné pour la règle 9#95$x=07'],
['Le champ n\'est pas compris entre a et z ni entre 0 et 9'],
['Signe de comparaison incorrect']];
}
/**
* @test
* @dataProvider errorsProvider
*/
public function errorShouldBePresent($message) {
$this->assertXpathContentContains('//li', $message, $this->_response->getBody());
}
/** @test */
public function labelShouldNotBeSaved() {
$this->assertTrue($this->model->hasChangedAttribute('libelle'));
}
/** @test */
public function rulesShouldNotBeSaved() {
$this->assertTrue($this->model->hasChangedAttribute('regles'));
}
}