1
|
|
|
<?php |
|
|
|
|
2
|
|
|
namespace DNADesign\Elemental\Tests\Behat\Context; |
3
|
|
|
|
4
|
|
|
use DNADesign\Elemental\Extensions\ElementalAreasExtension; |
5
|
|
|
use DNADesign\Elemental\Extensions\ElementalPageExtension; |
6
|
|
|
use DNADesign\Elemental\Models\BaseElement; |
7
|
|
|
use DNADesign\Elemental\Models\ElementContent; |
8
|
|
|
use SilverStripe\BehatExtension\Context\FixtureContext as BaseFixtureContext; |
|
|
|
|
9
|
|
|
use SilverStripe\BehatExtension\Utility\StepHelper; |
|
|
|
|
10
|
|
|
use SilverStripe\Core\ClassInfo; |
11
|
|
|
use SilverStripe\Core\Extensible; |
12
|
|
|
use SilverStripe\Core\Injector\Injector; |
13
|
|
|
use SilverStripe\Dev\FixtureBlueprint; |
14
|
|
|
use SilverStripe\ORM\DB; |
15
|
|
|
use SilverStripe\ORM\HasManyList; |
16
|
|
|
|
17
|
|
|
if (!class_exists(BaseFixtureContext::class)) { |
18
|
|
|
return; |
19
|
|
|
} |
20
|
|
|
/** |
21
|
|
|
* Context used to create fixtures in the SilverStripe ORM. |
22
|
|
|
*/ |
23
|
|
|
class FixtureContext extends BaseFixtureContext |
24
|
|
|
{ |
25
|
|
|
use StepHelper; |
26
|
|
|
protected function scaffoldDefaultFixtureFactory() |
27
|
|
|
{ |
28
|
|
|
$factory = parent::scaffoldDefaultFixtureFactory(); |
29
|
|
|
foreach (ClassInfo::subclassesFor(BaseElement::class) as $class) { |
30
|
|
|
$blueprint = Injector::inst()->create(FixtureBlueprint::class, $class); |
31
|
|
|
$factory->define($class, $blueprint); |
32
|
|
|
} |
33
|
|
|
return $factory; |
34
|
|
|
} |
35
|
|
|
/** |
36
|
|
|
* Create a page cothe "Blocks Page" :type has a "Block Title" content element with "Sample content" content |
37
|
|
|
* |
38
|
|
|
* @Given the :pageTitle :type has a :elementTitle content element with :elementContent content |
39
|
|
|
* |
40
|
|
|
* @param string $pageTitle |
41
|
|
|
* @param string $type |
42
|
|
|
* @param string $elementTitle |
43
|
|
|
* @param string $elementContent |
44
|
|
|
*/ |
45
|
|
|
public function theHasAContentElementWithContent($pageTitle, $type, $elementTitle, $elementContent) |
46
|
|
|
{ |
47
|
|
|
// Create the page (ElementalArea is created on write and attached to it) |
48
|
|
|
$targetClass = $this->convertTypeToClass($type); |
49
|
|
|
|
50
|
|
|
$page = $this->getFixtureFactory()->get($targetClass, $pageTitle); |
51
|
|
|
if (!$page) { |
52
|
|
|
$page = $this->getFixtureFactory()->createObject($targetClass, $pageTitle); |
53
|
|
|
} |
54
|
|
|
// Ensure that an ElementalArea is created (see ElementalAreasExtension) |
55
|
|
|
$page->write(); |
56
|
|
|
|
57
|
|
|
// Create the element and assign it to the page's ElementalArea |
58
|
|
|
$element = $this->getFixtureFactory()->createObject(ElementContent::class, $elementTitle); |
59
|
|
|
$element->ParentID = $page->ElementalAreaID; |
60
|
|
|
$element->Content = $elementContent; |
61
|
|
|
$element->write(); |
62
|
|
|
|
63
|
|
|
$page->ElementalArea()->write(); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* @Given I add an extension :extension to the :class class |
68
|
|
|
*/ |
69
|
|
|
public function iAddAnExtensionToTheClass($extension, $class) |
70
|
|
|
{ |
71
|
|
|
$targetClass = $this->convertTypeToClass($class); |
72
|
|
|
$targetClass::add_extension(ElementalPageExtension::class); |
73
|
|
|
} |
74
|
|
|
} |
75
|
|
|
|
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.