1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Dynamic\Foxy\Test\Form; |
4
|
|
|
|
5
|
|
|
use Dynamic\Foxy\Form\AddToCartForm; |
6
|
|
|
use Dynamic\Foxy\Test\TestOnly\TestShippableProduct; |
7
|
|
|
use Dynamic\Foxy\Test\TestOnly\TestShippableProductController; |
8
|
|
|
use SilverStripe\Core\Injector\Injector; |
9
|
|
|
use SilverStripe\Dev\SapphireTest; |
10
|
|
|
use SilverStripe\Forms\FieldList; |
11
|
|
|
use SilverStripe\Forms\Form; |
12
|
|
|
|
13
|
|
|
class AddToCartFormTest extends SapphireTest |
14
|
|
|
{ |
15
|
|
|
protected static $fixture_file = '../fixtures.yml'; |
16
|
|
|
|
17
|
|
|
public function testConstruct() |
18
|
|
|
{ |
19
|
|
|
$object = Injector::inst()->create(TestShippableProduct::class); |
20
|
|
|
$controller = TestShippableProductController::create($object); |
21
|
|
|
$form = $controller->AddToCartForm($controller, __FUNCTION__, null, null, null, $object); |
22
|
|
|
$this->assertInstanceOf(Form::class, $form); |
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
public function testGetProductFields() |
26
|
|
|
{ |
27
|
|
|
$object = Injector::inst()->create(TestShippableProduct::class); |
28
|
|
|
$object->Weight = 1.0; |
29
|
|
|
$controller = TestShippableProductController::create($object); |
30
|
|
|
$form = $controller->AddToCartForm($controller, __FUNCTION__, null, null, null, $object); |
31
|
|
|
$fields = $form->Fields(); |
32
|
|
|
$this->assertInstanceOf(FieldList::class, $fields); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function testGetProductActions() |
36
|
|
|
{ |
37
|
|
|
$object = Injector::inst()->create(TestShippableProduct::class); |
38
|
|
|
$controller = TestShippableProductController::create($object); |
39
|
|
|
$form = $controller->AddToCartForm($controller, __FUNCTION__, null, null, null, $object); |
40
|
|
|
$fields = $form->Actions(); |
41
|
|
|
$this->assertInstanceOf(FieldList::class, $fields); |
42
|
|
|
} |
43
|
|
|
} |
44
|
|
|
|