1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Class FoxyStripeProductTest |
5
|
|
|
*/ |
6
|
|
|
class FoxyStripeProductTest extends SapphireTest |
7
|
|
|
{ |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* @var string |
11
|
|
|
*/ |
12
|
|
|
protected static $fixture_file = 'foxystripe/tests/FoxyStripeTest.yml'; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* |
16
|
|
|
*/ |
17
|
|
|
function setUp() |
|
|
|
|
18
|
|
|
{ |
19
|
|
|
parent::setUp(); |
20
|
|
|
|
21
|
|
|
} |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* |
25
|
|
|
*/ |
26
|
|
|
function testProductCreation() |
|
|
|
|
27
|
|
|
{ |
28
|
|
|
|
29
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
30
|
|
|
$default = $this->objFromFixture('FoxyCartProductCategory', 'default'); |
31
|
|
|
$default->write(); |
32
|
|
|
|
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* |
37
|
|
|
*/ |
38
|
|
|
function testProductDeletion() |
|
|
|
|
39
|
|
|
{ |
40
|
|
|
|
41
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
42
|
|
|
$product2 = $this->objFromFixture('ShippableProduct', 'product2'); |
43
|
|
|
$product2->ParentID = ProductHolder::get()->first()->ID; |
44
|
|
|
$productID = $product2->ID; |
45
|
|
|
|
46
|
|
|
$product2->doPublish(); |
47
|
|
|
$this->assertTrue($product2->isPublished()); |
|
|
|
|
48
|
|
|
|
49
|
|
|
$versions = DB::query('Select * FROM "ShippableProduct_versions" WHERE "RecordID" = ' . $productID); |
50
|
|
|
$versionsPostPublish = array(); |
51
|
|
|
foreach ($versions as $versionRow) $versionsPostPublish[] = $versionRow; |
52
|
|
|
|
53
|
|
|
$product2->delete(); |
54
|
|
|
$this->assertTrue(!$product2->isPublished()); |
|
|
|
|
55
|
|
|
|
56
|
|
|
$versions = DB::query('Select * FROM "ShippableProduct_versions" WHERE "RecordID" = ' . $productID); |
57
|
|
|
$versionsPostDelete = array(); |
58
|
|
|
foreach ($versions as $versionRow) $versionsPostDelete[] = $versionRow; |
59
|
|
|
|
60
|
|
|
$this->assertEquals($versionsPostPublish, $versionsPostDelete); |
|
|
|
|
61
|
|
|
|
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* |
66
|
|
|
*/ |
67
|
|
View Code Duplication |
function testProductTitleLeadingWhiteSpace() |
|
|
|
|
68
|
|
|
{ |
69
|
|
|
|
70
|
|
|
//$this->logInWithPermission('ADMIN'); |
|
|
|
|
71
|
|
|
$product = $this->objFromFixture('ShippableProduct', 'product1'); |
72
|
|
|
$product->Title = " Test with leading space"; |
73
|
|
|
$product->ParentID = ProductHolder::get()->first()->ID; |
74
|
|
|
$product->write(); |
75
|
|
|
|
76
|
|
|
$this->assertEquals($product->Title, 'Test with leading space'); |
|
|
|
|
77
|
|
|
|
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* |
82
|
|
|
*/ |
83
|
|
View Code Duplication |
function testProductTitleTrailingWhiteSpace() |
|
|
|
|
84
|
|
|
{ |
85
|
|
|
|
86
|
|
|
//$this->logInWithPermission('ADMIN'); |
|
|
|
|
87
|
|
|
$product = $this->objFromFixture('ShippableProduct', 'product1'); |
88
|
|
|
$product->Title = "Test with trailing space "; |
89
|
|
|
$product->ParentID = ProductHolder::get()->first()->ID; |
90
|
|
|
$product->write(); |
91
|
|
|
|
92
|
|
|
$this->assertEquals($product->Title, 'Test with trailing space'); |
|
|
|
|
93
|
|
|
|
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
/** |
97
|
|
|
* |
98
|
|
|
*/ |
99
|
|
|
function testFoxyCartProductCategoryCreation() |
|
|
|
|
100
|
|
|
{ |
101
|
|
|
|
102
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
103
|
|
|
$category = $this->objFromFixture('FoxyCartProductCategory', 'apparel'); |
104
|
|
|
$category->write(); |
105
|
|
|
$categoryID = $category->ID; |
106
|
|
|
|
107
|
|
|
$FoxyCartProductCategory = FoxyCartProductCategory::get()->filter(array('Code' => 'APPAREL'))->first(); |
108
|
|
|
|
109
|
|
|
$this->assertEquals($categoryID, $FoxyCartProductCategory->ID); |
|
|
|
|
110
|
|
|
|
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
/** |
114
|
|
|
* |
115
|
|
|
*/ |
116
|
|
|
function testFoxyCartProductCategoryDeletion() |
|
|
|
|
117
|
|
|
{ |
118
|
|
|
|
119
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
120
|
|
|
$category = $this->objFromFixture('FoxyCartProductCategory', 'default'); |
121
|
|
|
$category->write(); |
122
|
|
|
|
123
|
|
|
$this->assertFalse($category->canDelete()); |
|
|
|
|
124
|
|
|
|
125
|
|
|
$category2 = $this->objFromFixture('FoxyCartProductCategory', 'apparel'); |
126
|
|
|
$category2->write(); |
127
|
|
|
$category2ID = $category2->ID; |
128
|
|
|
|
129
|
|
|
$this->assertTrue($category2->canDelete()); |
|
|
|
|
130
|
|
|
|
131
|
|
|
//$this->logOut(); |
|
|
|
|
132
|
|
|
|
133
|
|
|
//$this->logInWithPermission('ADMIN'); |
|
|
|
|
134
|
|
|
|
135
|
|
|
$this->assertFalse($category->canDelete()); |
|
|
|
|
136
|
|
|
$this->assertTrue($category2->canDelete()); |
|
|
|
|
137
|
|
|
|
138
|
|
|
//$this->logOut(); |
|
|
|
|
139
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
140
|
|
|
|
141
|
|
|
$category2->delete(); |
142
|
|
|
|
143
|
|
|
$this->assertFalse(in_array($category2ID, FoxyCartProductCategory::get()->column('ID'))); |
|
|
|
|
144
|
|
|
|
145
|
|
|
} |
146
|
|
|
|
147
|
|
|
/** |
148
|
|
|
* |
149
|
|
|
*/ |
150
|
|
|
function testOptionGroupCreation() |
|
|
|
|
151
|
|
|
{ |
152
|
|
|
|
153
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
154
|
|
|
$group = $this->objFromFixture('OptionGroup', 'size'); |
155
|
|
|
$group->write(); |
156
|
|
|
|
157
|
|
|
$this->assertNotNull(OptionGroup::get()->first()); |
|
|
|
|
158
|
|
|
|
159
|
|
|
} |
160
|
|
|
|
161
|
|
|
/** |
162
|
|
|
* |
163
|
|
|
*/ |
164
|
|
|
function testOptionGroupDeletion() |
|
|
|
|
165
|
|
|
{ |
166
|
|
|
|
167
|
|
|
//$this->logInWithPermission('ADMIN'); |
|
|
|
|
168
|
|
|
$group = $this->objFromFixture('OptionGroup', 'color'); |
169
|
|
|
$group->write(); |
170
|
|
|
$groupID = $group->ID; |
171
|
|
|
|
172
|
|
|
$this->assertTrue($group->canDelete()); |
|
|
|
|
173
|
|
|
|
174
|
|
|
//$this->logOut(); |
|
|
|
|
175
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
176
|
|
|
|
177
|
|
|
$this->assertTrue($group->canDelete()); |
|
|
|
|
178
|
|
|
$group->delete(); |
179
|
|
|
|
180
|
|
|
$this->assertFalse(in_array($groupID, OptionGroup::get()->column('ID'))); |
|
|
|
|
181
|
|
|
|
182
|
|
|
} |
183
|
|
|
|
184
|
|
|
/** |
185
|
|
|
* |
186
|
|
|
*/ |
187
|
|
|
function testOptionItemCreation() |
|
|
|
|
188
|
|
|
{ |
189
|
|
|
|
190
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
191
|
|
|
$optionGroup = $this->objFromFixture('OptionGroup', 'size'); |
192
|
|
|
$option = OptionItem::create(); |
193
|
|
|
$option->Title = 'My New Option'; |
194
|
|
|
$option->ProductOptionGroupID = $optionGroup->ID; |
195
|
|
|
$option->write(); |
196
|
|
|
$optionID = $option->ID; |
197
|
|
|
|
198
|
|
|
$optionItem = OptionItem::get()->filter(['ProductOptionGroupID' => $optionGroup->ID, 'Title' => 'My New Option'])->first(); |
199
|
|
|
|
200
|
|
|
$this->assertEquals($optionID, $optionItem->ID); |
|
|
|
|
201
|
|
|
|
202
|
|
|
} |
203
|
|
|
|
204
|
|
|
/** |
205
|
|
|
* |
206
|
|
|
*/ |
207
|
|
|
function testOptionItemDeletion() |
|
|
|
|
208
|
|
|
{ |
209
|
|
|
|
210
|
|
|
//$this->logInWithPermission('ADMIN'); |
|
|
|
|
211
|
|
|
$optionGroup = (OptionGroup::get()->first()) |
212
|
|
|
? OptionGroup::get()->first() |
213
|
|
|
: OptionGroup::create(); |
214
|
|
|
if ($optionGroup->ID == 0) { |
215
|
|
|
$optionGroup->Title = 'Size'; |
216
|
|
|
$optionGroup->write(); |
217
|
|
|
} |
218
|
|
|
$option = $this->objFromFixture('OptionItem', 'small'); |
219
|
|
|
$option->ProductOptionGroupID = $optionGroup->ID; |
220
|
|
|
$option->write(); |
221
|
|
|
$optionID = $option->ID; |
222
|
|
|
|
223
|
|
|
$this->assertTrue($option->canDelete()); |
|
|
|
|
224
|
|
|
|
225
|
|
|
//$this->logOut(); |
|
|
|
|
226
|
|
|
//$this->logInWithPermission('Product_CANCRUD'); |
|
|
|
|
227
|
|
|
|
228
|
|
|
$this->assertTrue($option->canDelete()); |
|
|
|
|
229
|
|
|
$option->delete(); |
230
|
|
|
|
231
|
|
|
$this->assertFalse(in_array($optionID, OptionItem::get()->column('ID'))); |
|
|
|
|
232
|
|
|
|
233
|
|
|
} |
234
|
|
|
|
235
|
|
|
} |
236
|
|
|
|
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.