1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
class FoxyStripeProductTest extends FunctionalTest { |
4
|
|
|
|
5
|
|
|
protected static $use_draft_site = true; |
6
|
|
|
|
7
|
|
|
function setUp(){ |
|
|
|
|
8
|
|
|
|
9
|
|
|
$groupForItem = OptionGroup::create(); |
10
|
|
|
$groupForItem->Title = 'Sample-Group'; |
|
|
|
|
11
|
|
|
$groupForItem->write(); |
12
|
|
|
|
13
|
|
|
$productHolder = ProductHolder::create(); |
14
|
|
|
$productHolder->Title = 'Product Holder'; |
15
|
|
|
$productHolder->write(); |
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
function testProductCreation(){ |
|
|
|
|
19
|
|
|
|
20
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
21
|
|
|
$default = $this->objFromFixture('ProductCategory', 'default'); |
22
|
|
|
$default->write(); |
23
|
|
|
$product1 = $this->objFromFixture('FoxyStripeProduct', 'product1'); |
24
|
|
|
$product1->ParentID = ProductHolder::get()->first()->ID; |
25
|
|
|
|
26
|
|
|
$product1->doPublish(); |
27
|
|
|
$this->assertTrue($product1->isPublished()); |
|
|
|
|
28
|
|
|
|
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
function testProductDeletion(){ |
|
|
|
|
32
|
|
|
|
33
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
34
|
|
|
$product2 = $this->objFromFixture('FoxyStripeProduct', 'product2'); |
35
|
|
|
$product2->ParentID = ProductHolder::get()->first()->ID; |
36
|
|
|
$productID = $product2->ID; |
37
|
|
|
|
38
|
|
|
$product2->doPublish(); |
39
|
|
|
$this->assertTrue($product2->isPublished()); |
|
|
|
|
40
|
|
|
|
41
|
|
|
$versions = DB::query('Select * FROM "FoxyStripeProduct_versions" WHERE "RecordID" = '. $productID); |
42
|
|
|
$versionsPostPublish = array(); |
43
|
|
|
foreach($versions as $versionRow) $versionsPostPublish[] = $versionRow; |
44
|
|
|
|
45
|
|
|
$product2->delete(); |
46
|
|
|
$this->assertTrue(!$product2->isPublished()); |
|
|
|
|
47
|
|
|
|
48
|
|
|
$versions = DB::query('Select * FROM "FoxyStripeProduct_versions" WHERE "RecordID" = '. $productID); |
49
|
|
|
$versionsPostDelete = array(); |
50
|
|
|
foreach($versions as $versionRow) $versionsPostDelete[] = $versionRow; |
51
|
|
|
|
52
|
|
|
$this->assertTrue($versionsPostPublish == $versionsPostDelete); |
|
|
|
|
53
|
|
|
|
54
|
|
|
} |
55
|
|
|
|
56
|
|
View Code Duplication |
function testProductTitleLeadingWhiteSpace(){ |
|
|
|
|
57
|
|
|
|
58
|
|
|
$this->logInWithPermission('ADMIN'); |
59
|
|
|
$product = $this->objFromFixture('FoxyStripeProduct', 'product1'); |
60
|
|
|
$product->Title = " Test with leading space"; |
61
|
|
|
$product->ParentID = ProductHolder::get()->first()->ID; |
62
|
|
|
$product->doPublish(); |
63
|
|
|
|
64
|
|
|
$this->assertTrue($product->Title == 'Test with leading space'); |
|
|
|
|
65
|
|
|
|
66
|
|
|
} |
67
|
|
|
|
68
|
|
View Code Duplication |
function testProductTitleTrailingWhiteSpace(){ |
|
|
|
|
69
|
|
|
|
70
|
|
|
$this->logInWithPermission('ADMIN'); |
71
|
|
|
$product = $this->objFromFixture('FoxyStripeProduct', 'product1'); |
72
|
|
|
$product->Title = "Test with trailing space "; |
73
|
|
|
$product->ParentID = ProductHolder::get()->first()->ID; |
74
|
|
|
$product->doPublish(); |
75
|
|
|
|
76
|
|
|
$this->assertTrue($product->Title == 'Test with trailing space'); |
|
|
|
|
77
|
|
|
|
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
function testProductCategoryCreation(){ |
|
|
|
|
81
|
|
|
|
82
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
83
|
|
|
$category = $this->objFromFixture('ProductCategory', 'apparel'); |
84
|
|
|
$category->write(); |
85
|
|
|
$categoryID = $category->ID; |
86
|
|
|
|
87
|
|
|
$productCategory = ProductCategory::get()->filter(array('Code'=>'APPAREL'))->first(); |
88
|
|
|
|
89
|
|
|
$this->assertTrue($categoryID == $productCategory->ID); |
|
|
|
|
90
|
|
|
|
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
function testProductCategoryDeletion(){ |
|
|
|
|
94
|
|
|
|
95
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
96
|
|
|
$category = $this->objFromFixture('ProductCategory', 'default'); |
97
|
|
|
$category->write(); |
98
|
|
|
|
99
|
|
|
$this->assertFalse($category->canDelete()); |
|
|
|
|
100
|
|
|
|
101
|
|
|
$category2 = $this->objFromFixture('ProductCategory', 'apparel'); |
102
|
|
|
$category2->write(); |
103
|
|
|
$category2ID = $category2->ID; |
104
|
|
|
|
105
|
|
|
$this->assertTrue($category2->canDelete()); |
|
|
|
|
106
|
|
|
|
107
|
|
|
$this->logOut(); |
|
|
|
|
108
|
|
|
|
109
|
|
|
$this->logInWithPermission('ADMIN'); |
110
|
|
|
|
111
|
|
|
$this->assertFalse($category->canDelete()); |
|
|
|
|
112
|
|
|
$this->assertTrue($category2->canDelete()); |
|
|
|
|
113
|
|
|
|
114
|
|
|
$this->logOut(); |
|
|
|
|
115
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
116
|
|
|
|
117
|
|
|
$category2->delete(); |
118
|
|
|
|
119
|
|
|
$this->assertFalse(in_array($category2ID,FoxyCartProductCategory::get()->column('ID'))); |
|
|
|
|
120
|
|
|
|
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
function testOptionGroupCreation(){ |
|
|
|
|
124
|
|
|
|
125
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
126
|
|
|
$group = $this->objFromFixture('OptionGroup', 'size'); |
127
|
|
|
$group->write(); |
128
|
|
|
|
129
|
|
|
$this->assertNotNull(OptionGroup::get()->first()); |
|
|
|
|
130
|
|
|
|
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
function testOptionGroupDeletion(){ |
|
|
|
|
134
|
|
|
|
135
|
|
|
$this->logInWithPermission('ADMIN'); |
136
|
|
|
$group = $this->objFromFixture('OptionGroup', 'color'); |
137
|
|
|
$group->write(); |
138
|
|
|
$groupID = $group->ID; |
139
|
|
|
|
140
|
|
|
$this->assertTrue($group->canDelete()); |
|
|
|
|
141
|
|
|
|
142
|
|
|
$this->logOut(); |
|
|
|
|
143
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
144
|
|
|
|
145
|
|
|
$this->assertTrue($group->canDelete()); |
|
|
|
|
146
|
|
|
$group->delete(); |
147
|
|
|
|
148
|
|
|
$this->assertFalse(in_array($groupID, OptionGroup::get()->column('ID'))); |
|
|
|
|
149
|
|
|
|
150
|
|
|
} |
151
|
|
|
|
152
|
|
|
function testOptionItemCreation(){ |
|
|
|
|
153
|
|
|
|
154
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
155
|
|
|
$optionGroup = OptionGroup::get()->filter(array('Title' => 'Sample-Group'))->first(); |
156
|
|
|
$option = $this->objFromFixture('OptionItem', 'large'); |
157
|
|
|
$option->ProductOptionGroupID = $optionGroup->ID; |
158
|
|
|
$option->write(); |
159
|
|
|
$optionID = $option->ID; |
160
|
|
|
|
161
|
|
|
$optionItem = OptionItem::get()->filter(array('ProductOptionGroupID' => $optionGroup->ID))->first(); |
162
|
|
|
|
163
|
|
|
$this->assertEquals($optionID, $optionItem->ID); |
|
|
|
|
164
|
|
|
|
165
|
|
|
} |
166
|
|
|
|
167
|
|
|
function testOptionItemDeletion(){ |
|
|
|
|
168
|
|
|
|
169
|
|
|
$this->logInWithPermission('ADMIN'); |
170
|
|
|
$optionGroup = (OptionGroup::get()->first()) |
171
|
|
|
? OptionGroup::get()->first() |
172
|
|
|
: OptionGroup::create(); |
173
|
|
|
if($optionGroup->ID == 0){ |
174
|
|
|
$optionGroup->Title = 'Size'; |
175
|
|
|
$optionGroup->write(); |
176
|
|
|
} |
177
|
|
|
$option = $this->objFromFixture('OptionItem', 'small'); |
178
|
|
|
$option->ProductOptionGroupID = $optionGroup->ID; |
179
|
|
|
$option->write(); |
180
|
|
|
$optionID = $option->ID; |
181
|
|
|
|
182
|
|
|
$this->assertTrue($option->canDelete()); |
|
|
|
|
183
|
|
|
|
184
|
|
|
$this->logOut(); |
|
|
|
|
185
|
|
|
$this->logInWithPermission('Product_CANCRUD'); |
186
|
|
|
|
187
|
|
|
$this->assertTrue($option->canDelete()); |
|
|
|
|
188
|
|
|
$option->delete(); |
189
|
|
|
|
190
|
|
|
$this->assertFalse(in_array($optionID, OptionItem::get()->column('ID'))); |
|
|
|
|
191
|
|
|
|
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
} |
195
|
|
|
|
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.