|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Class DMSDocumentCartControllerTest contains all the tests for {@link DMSDocumentCartController} |
|
5
|
|
|
*/ |
|
6
|
|
|
class DMSDocumentCartControllerTest extends FunctionalTest |
|
|
|
|
|
|
7
|
|
|
{ |
|
8
|
|
|
protected static $fixture_file = 'dms-cart/tests/DMSDocumentCartTest.yml'; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* @var DMSDocumentCartController |
|
12
|
|
|
*/ |
|
13
|
|
|
protected $controller; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @var DMSDocumentCart |
|
17
|
|
|
*/ |
|
18
|
|
|
protected $cart; |
|
19
|
|
|
|
|
20
|
|
|
public function setUp() |
|
21
|
|
|
{ |
|
22
|
|
|
parent::setUp(); |
|
23
|
|
|
DMSDocumentCartController::add_extension('StubDMSDocumentCheckoutPageExtension'); |
|
24
|
|
|
$this->controller = DMSDocumentCartController::create(); |
|
25
|
|
|
$this->cart = $this->controller->getCart(); |
|
26
|
|
|
} |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* Test the items method of the controller |
|
30
|
|
|
*/ |
|
31
|
|
|
public function testItems() |
|
32
|
|
|
{ |
|
33
|
|
|
/** @var DMSDocument $doc1 */ |
|
34
|
|
|
$doc1 = $this->objFromFixture('DMSDocument', 'doc1'); |
|
35
|
|
|
/** @var DMSDocument $doc2 */ |
|
36
|
|
|
$doc2 = $this->objFromFixture('DMSDocument', 'doc2'); |
|
37
|
|
|
/** @var DMSRequestItem $item */ |
|
38
|
|
|
$item1 = DMSRequestItem::create()->setDocument($doc1)->setQuantity(2); |
|
39
|
|
|
$item2 = DMSRequestItem::create()->setDocument($doc2)->setQuantity(5); |
|
40
|
|
|
$this->cart->addItem($item1); |
|
41
|
|
|
$this->cart->addItem($item2); |
|
42
|
|
|
$this->assertInstanceOf( |
|
|
|
|
|
|
43
|
|
|
'ArrayList', |
|
44
|
|
|
$this->controller->items(), |
|
45
|
|
|
'DMSDocumentCartController->Items() returned an ArrayList' |
|
46
|
|
|
); |
|
47
|
|
|
$this->assertCount( |
|
|
|
|
|
|
48
|
|
|
2, |
|
49
|
|
|
$this->controller->items(), |
|
50
|
|
|
'DMSDocumentCartController->Items()->count() returned the requisite number of items' |
|
51
|
|
|
); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
public function testReceiverInfo() |
|
55
|
|
|
{ |
|
56
|
|
|
// Now add some info |
|
57
|
|
|
$this->cart->setReceiverInfo(array('Name' => 'Joe', 'Surname' => 'Soap')); |
|
58
|
|
|
$this->assertCount(2, $this->controller->getReceiverInfo()); |
|
|
|
|
|
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
public function testIsCartEmpty() |
|
62
|
|
|
{ |
|
63
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
64
|
|
|
/** @var DMSDocument $doc */ |
|
65
|
|
|
$doc1 = $this->objFromFixture('DMSDocument', 'doc1'); |
|
66
|
|
|
/** @var DMSRequestItem $item */ |
|
67
|
|
|
$item1 = DMSRequestItem::create()->setDocument($doc1)->setQuantity(2); |
|
|
|
|
|
|
68
|
|
|
$this->cart->addItem($item1); |
|
69
|
|
|
$this->assertFalse($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
public function testAdd() |
|
73
|
|
|
{ |
|
74
|
|
|
$this->logInWithPermission(); |
|
75
|
|
|
$doc1 = $this->objFromFixture('DMSDocument', 'doc1'); |
|
76
|
|
|
// Check cart is initially empty |
|
77
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
78
|
|
|
// Now call controller add |
|
79
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => 5)); |
|
80
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
81
|
|
|
$this->controller->add($request); |
|
82
|
|
|
$this->assertFalse($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
83
|
|
|
|
|
84
|
|
|
// Do it again and assert quantity was updated |
|
85
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => 7)); |
|
86
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
87
|
|
|
$this->controller->add($request); |
|
88
|
|
|
|
|
89
|
|
|
// Test ajax |
|
90
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => 7, 'ajax' => 1)); |
|
91
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
92
|
|
|
$response = $this->controller->add($request); |
|
93
|
|
|
$this->assertTrue($request->isAjax()); |
|
|
|
|
|
|
94
|
|
|
$this->assertJson($response, 'Confirmed that an ajax call to add() responded with json JSON'); |
|
|
|
|
|
|
95
|
|
|
|
|
96
|
|
|
$item = $this->cart->getItem($doc1->ID); |
|
97
|
|
|
$this->assertEquals(19, $item->getQuantity()); |
|
|
|
|
|
|
98
|
|
|
} |
|
99
|
|
|
|
|
100
|
|
|
|
|
101
|
|
|
|
|
102
|
|
|
public function testDeduct() |
|
103
|
|
|
{ |
|
104
|
|
|
$doc1 = $this->objFromFixture('DMSDocument', 'doc1'); |
|
105
|
|
|
// Check catty is initially empty |
|
106
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
107
|
|
|
// Now call controller add |
|
108
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity'=>5)); |
|
109
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
110
|
|
|
$this->controller->deduct($request); |
|
111
|
|
|
// Assert cart still empty because item doesn't exist |
|
112
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
113
|
|
|
// Now add item |
|
114
|
|
|
$this->controller->add($request); |
|
115
|
|
|
$this->assertFalse($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
116
|
|
|
|
|
117
|
|
|
|
|
118
|
|
|
// Now try and deduct 2 from the items |
|
119
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => -2)); |
|
120
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
121
|
|
|
$this->controller->deduct($request); |
|
122
|
|
|
|
|
123
|
|
|
$item = $this->cart->getItem($doc1->ID); |
|
124
|
|
|
$this->assertEquals(3, $item->getQuantity()); |
|
|
|
|
|
|
125
|
|
|
|
|
126
|
|
|
// Test ajax |
|
127
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => 7, 'ajax' => 1)); |
|
128
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
129
|
|
|
$response = $this->controller->deduct($request); |
|
130
|
|
|
$this->assertTrue($request->isAjax()); |
|
|
|
|
|
|
131
|
|
|
$this->assertJson($response, 'Confirmed that an ajax call to deduct() method responded with JSON'); |
|
|
|
|
|
|
132
|
|
|
} |
|
133
|
|
|
|
|
134
|
|
|
public function testRemove() |
|
135
|
|
|
{ |
|
136
|
|
|
$doc1 = $this->objFromFixture('DMSDocument', 'doc1'); |
|
137
|
|
|
// Check catty is initially empty |
|
138
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
139
|
|
|
// Now call controller add |
|
140
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity'=>5)); |
|
141
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
142
|
|
|
// Now add item |
|
143
|
|
|
$this->controller->add($request); |
|
144
|
|
|
$this->assertFalse($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
145
|
|
|
$this->controller->remove($request); |
|
146
|
|
|
$this->assertTrue($this->controller->getIsCartEmpty()); |
|
|
|
|
|
|
147
|
|
|
|
|
148
|
|
|
// Test ajax |
|
149
|
|
|
$request = new SS_HTTPRequest('POST', '', array(), array('quantity' => 7, 'ajax' => 1)); |
|
150
|
|
|
$request->setRouteParams(array('ID' => $doc1->ID)); |
|
151
|
|
|
$response = $this->controller->remove($request); |
|
152
|
|
|
$this->assertTrue($request->isAjax()); |
|
|
|
|
|
|
153
|
|
|
$this->assertJson($response, 'Confirmed that an ajax call to remove() method responded with JSON'); |
|
|
|
|
|
|
154
|
|
|
} |
|
155
|
|
|
|
|
156
|
|
|
/** |
|
157
|
|
|
* Ensure that a validation error is shown when requesting to add more of a document that is allowed |
|
158
|
|
|
*/ |
|
159
|
|
|
public function testCannotAddMoreThanSuggestedQuantityOfItem() |
|
160
|
|
|
{ |
|
161
|
|
|
$document = $this->objFromFixture('DMSDocument', 'limited_supply'); |
|
162
|
|
|
$result = $this->get('/documentcart/add/' . $document->ID . '?quantity=5&ajax=1'); |
|
163
|
|
|
$this->assertContains( |
|
164
|
|
|
'Maximum of 3 documents exceeded for \"Doc3\", please select a lower quantity.', |
|
165
|
|
|
(string) $result->getBody() |
|
166
|
|
|
); |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* Ensure that when a document that cannot be added to the cart is added to the cart, a validation error is |
|
171
|
|
|
* returned |
|
172
|
|
|
*/ |
|
173
|
|
|
public function testValidationErrorReturnedOnInvalidAdd() |
|
174
|
|
|
{ |
|
175
|
|
|
$document = $this->objFromFixture('DMSDocument', 'not_allowed_in_cart'); |
|
176
|
|
|
$result = $this->get('/documentcart/add/' . $document->ID . '?ajax=1'); |
|
177
|
|
|
$this->assertContains('You are not allowed to add this document', (string) $result->getBody()); |
|
178
|
|
|
} |
|
179
|
|
|
|
|
180
|
|
|
/** |
|
181
|
|
|
* Tests whether the cart items are updated from the controller |
|
182
|
|
|
*/ |
|
183
|
|
|
public function testUpdateCartItems() |
|
184
|
|
|
{ |
|
185
|
|
|
$doc = $this->objFromFixture('DMSDocument', 'doc1'); |
|
186
|
|
|
/** @var DMSRequestItem $item */ |
|
187
|
|
|
$item = DMSRequestItem::create()->setDocument($doc)->setQuantity(2); |
|
|
|
|
|
|
188
|
|
|
$this->cart->addItem($item); |
|
189
|
|
|
|
|
190
|
|
|
$invalidQuantities = array( |
|
191
|
|
|
'ItemQuantity' => array($doc->ID => 'non-numeric') |
|
192
|
|
|
); |
|
193
|
|
|
|
|
194
|
|
|
$sameQuantities = array( |
|
195
|
|
|
'ItemQuantity' => array($doc->ID => 2) |
|
196
|
|
|
); |
|
197
|
|
|
|
|
198
|
|
|
$updatedQuantities = array( |
|
199
|
|
|
'ItemQuantity' => array($doc->ID => 5), |
|
200
|
|
|
); |
|
201
|
|
|
$form = Form::create( |
|
202
|
|
|
$this->controller, |
|
203
|
|
|
'Test', |
|
204
|
|
|
FieldList::create(), |
|
205
|
|
|
FieldList::create() |
|
206
|
|
|
); |
|
207
|
|
|
$request = new SS_HTTPRequest('POST', ''); |
|
208
|
|
|
// Test invalids leave it unchanged |
|
209
|
|
|
$response = $this->controller->updateCartItems($invalidQuantities, $form, $request); |
|
210
|
|
|
$this->assertEquals(2, $this->cart->getItem($item->getItemId())->getQuantity()); |
|
|
|
|
|
|
211
|
|
|
|
|
212
|
|
|
// Test quantity remains the same |
|
213
|
|
|
$response->removeHeader('Location'); |
|
214
|
|
|
$response =$this->controller->updateCartItems($sameQuantities, $form, $request); |
|
215
|
|
|
$this->assertEquals(2, $this->cart->getItem($item->getItemId())->getQuantity()); |
|
|
|
|
|
|
216
|
|
|
|
|
217
|
|
|
$response->removeHeader('Location'); |
|
218
|
|
|
$response = $this->controller->updateCartItems($updatedQuantities, $form, $request); |
|
|
|
|
|
|
219
|
|
|
$this->assertEquals(5, $this->cart->getItem($item->getItemId())->getQuantity()); |
|
|
|
|
|
|
220
|
|
|
} |
|
221
|
|
|
|
|
222
|
|
|
/** |
|
223
|
|
|
* Tests DMSCartEditForm form has a FieldList |
|
224
|
|
|
*/ |
|
225
|
|
|
public function testDMSCartEditForm() |
|
226
|
|
|
{ |
|
227
|
|
|
$form = $this->controller->DMSCartEditForm(); |
|
228
|
|
|
$this->assertInstanceOf('FieldList', $form->Fields()); |
|
|
|
|
|
|
229
|
|
|
} |
|
230
|
|
|
|
|
231
|
|
|
/** |
|
232
|
|
|
* Tests if the DMSCartEditForm is extensible |
|
233
|
|
|
*/ |
|
234
|
|
|
public function testDMSCartEditFormIsExtensible() |
|
235
|
|
|
{ |
|
236
|
|
|
$controller = $this->controller; |
|
237
|
|
|
$form = $controller->DMSCartEditForm(); |
|
238
|
|
|
$this->assertNotNull( |
|
|
|
|
|
|
239
|
|
|
$form->Fields()->fieldByName('NewTextField'), |
|
240
|
|
|
'DMSDocumentRequestForm() is extensible as it included the field from the extension' |
|
241
|
|
|
); |
|
242
|
|
|
} |
|
243
|
|
|
|
|
244
|
|
|
/** |
|
245
|
|
|
* Tests that the cart summary view is returned. |
|
246
|
|
|
*/ |
|
247
|
|
|
public function testView() |
|
248
|
|
|
{ |
|
249
|
|
|
$result = $this->get('documentcart/view'); |
|
250
|
|
|
$this->assertInstanceOf('SS_HTTPResponse', $result); |
|
|
|
|
|
|
251
|
|
|
$this->assertContains('Updating cart items', $result->getBody()); |
|
252
|
|
|
} |
|
253
|
|
|
|
|
254
|
|
|
/** |
|
255
|
|
|
* Ensure the link is "friendly", not a class name |
|
256
|
|
|
*/ |
|
257
|
|
|
public function testLink() |
|
258
|
|
|
{ |
|
259
|
|
|
$this->assertSame('documentcart', $this->controller->Link()); |
|
|
|
|
|
|
260
|
|
|
$this->assertSame('documentcart/view', $this->controller->Link('view')); |
|
|
|
|
|
|
261
|
|
|
} |
|
262
|
|
|
} |
|
263
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.