1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Dynamic\ProductCatalog\Test; |
4
|
|
|
|
5
|
|
|
use Dynamic\ProductCatalog\ORM\CatalogProduct; |
6
|
|
|
use Dynamic\ProductCatalog\Page\CatalogCategory; |
7
|
|
|
use SilverStripe\Dev\SapphireTest; |
8
|
|
|
use SilverStripe\Forms\FieldList; |
9
|
|
|
use SilverStripe\ORM\Search\SearchContext; |
10
|
|
|
use SilverStripe\Security\Member; |
11
|
|
|
|
12
|
|
|
class CatalogProductTest extends SapphireTest |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* @var string |
16
|
|
|
*/ |
17
|
|
|
protected static $fixture_file = 'fixtures.yml'; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* |
21
|
|
|
*/ |
22
|
|
|
public function testCategoryList() |
23
|
|
|
{ |
24
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
25
|
|
|
$expected = $this->objFromFixture(CatalogCategory::class, 'default')->Title; |
26
|
|
|
$this->assertEquals($expected, $object->CategoryList()); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* |
31
|
|
|
*/ |
32
|
|
|
public function testGetImage() |
33
|
|
|
{ |
34
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
35
|
|
|
$this->assertEquals($object->getImage(), $object->Slides()->first()); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public function testGetCMSFields() |
39
|
|
|
{ |
40
|
|
|
$object = new CatalogProduct(); |
41
|
|
|
$fieldset = $object->getCMSFields(); |
42
|
|
|
$this->assertTrue(is_a($fieldset, FieldList::class)); |
43
|
|
|
//$this->assertNull($fieldset->dataFieldByName('TechDocs')); |
|
|
|
|
44
|
|
|
|
45
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
46
|
|
|
$fieldset = $object->getCMSFields(); |
47
|
|
|
$this->assertTrue(is_a($fieldset, FieldList::class)); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function testGetPrimaryCategory() |
51
|
|
|
{ |
52
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
53
|
|
|
$this->assertEquals($object->getPrimaryCategory(), $object->Categories()->sort('SortOrder')->first()); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
public function testGetDefaultSearchContext() |
57
|
|
|
{ |
58
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
59
|
|
|
$this->assertInstanceOf(SearchContext::class, $object->getDefaultSearchContext()); |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
public function testCanView() |
63
|
|
|
{ |
64
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
65
|
|
|
|
66
|
|
|
$admin = $this->objFromFixture(Member::class, 'admin'); |
67
|
|
|
$this->assertTrue($object->canView($admin)); |
68
|
|
|
|
69
|
|
|
$member = $this->objFromFixture(Member::class, 'default'); |
70
|
|
|
$this->assertTrue($object->canView($member)); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
public function testCanEdit() |
74
|
|
|
{ |
75
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
76
|
|
|
|
77
|
|
|
$admin = $this->objFromFixture(Member::class, 'admin'); |
78
|
|
|
$this->assertTrue($object->canEdit($admin)); |
79
|
|
|
|
80
|
|
|
$member = $this->objFromFixture(Member::class, 'default'); |
81
|
|
|
$this->assertFalse($object->canEdit($member)); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
public function testCanDelete() |
85
|
|
|
{ |
86
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
87
|
|
|
|
88
|
|
|
$admin = $this->objFromFixture(Member::class, 'admin'); |
89
|
|
|
$this->assertTrue($object->canDelete($admin)); |
90
|
|
|
|
91
|
|
|
$member = $this->objFromFixture(Member::class, 'default'); |
92
|
|
|
$this->assertFalse($object->canDelete($member)); |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
public function testCanCreate() |
96
|
|
|
{ |
97
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
98
|
|
|
|
99
|
|
|
$admin = $this->objFromFixture(Member::class, 'admin'); |
100
|
|
|
$this->assertTrue($object->canCreate($admin)); |
101
|
|
|
|
102
|
|
|
$member = $this->objFromFixture(Member::class, 'default'); |
103
|
|
|
$this->assertFalse($object->canCreate($member)); |
104
|
|
|
} |
105
|
|
|
|
106
|
|
|
public function testProvidePermissions() |
107
|
|
|
{ |
108
|
|
|
$object = $this->objFromFixture(CatalogProduct::class, 'one'); |
109
|
|
|
$expected = array( |
110
|
|
|
'Product_EDIT' => 'Edit a Product', |
111
|
|
|
'Product_DELETE' => 'Delete a Product', |
112
|
|
|
'Product_CREATE' => 'Create a Product', |
113
|
|
|
); |
114
|
|
|
$this->assertEquals($expected, $object->providePermissions()); |
115
|
|
|
} |
116
|
|
|
} |
117
|
|
|
|
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.
The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.
This check looks for comments that seem to be mostly valid code and reports them.