2012-11-09 19:16:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Framework\Test\Behaviour;
|
|
|
|
|
|
|
|
use SilverStripe\BehatExtension\Context\SilverStripeContext,
|
2012-12-08 12:20:20 +01:00
|
|
|
SilverStripe\BehatExtension\Context\BasicContext,
|
|
|
|
SilverStripe\BehatExtension\Context\LoginContext,
|
2013-06-04 17:30:13 +02:00
|
|
|
SilverStripe\BehatExtension\Context\FixtureContext,
|
2013-10-21 00:49:31 +02:00
|
|
|
SilverStripe\BehatExtension\Context\EmailContext,
|
2012-12-08 12:20:20 +01:00
|
|
|
SilverStripe\Framework\Test\Behaviour\CmsFormsContext,
|
|
|
|
SilverStripe\Framework\Test\Behaviour\CmsUiContext;
|
2012-11-09 19:16:16 +01:00
|
|
|
|
|
|
|
// PHPUnit
|
|
|
|
require_once 'PHPUnit/Autoload.php';
|
|
|
|
require_once 'PHPUnit/Framework/Assert/Functions.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Features context
|
|
|
|
*
|
|
|
|
* Context automatically loaded by Behat.
|
|
|
|
* Uses subcontexts to extend functionality.
|
|
|
|
*/
|
2013-11-15 12:03:43 +01:00
|
|
|
class FeatureContext extends SilverStripeContext {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-06-04 17:30:13 +02:00
|
|
|
/**
|
|
|
|
* @var FixtureFactory
|
|
|
|
*/
|
|
|
|
protected $fixtureFactory;
|
|
|
|
|
2012-12-08 12:20:20 +01:00
|
|
|
/**
|
|
|
|
* Initializes context.
|
|
|
|
* Every scenario gets it's own context object.
|
|
|
|
*
|
2013-08-21 11:27:16 +02:00
|
|
|
* @param array $parameters context parameters (set them up through behat.yml)
|
2012-12-08 12:20:20 +01:00
|
|
|
*/
|
2013-11-15 12:03:43 +01:00
|
|
|
public function __construct(array $parameters) {
|
2013-06-04 17:30:13 +02:00
|
|
|
parent::__construct($parameters);
|
|
|
|
|
2012-12-08 12:20:20 +01:00
|
|
|
$this->useContext('BasicContext', new BasicContext($parameters));
|
|
|
|
$this->useContext('LoginContext', new LoginContext($parameters));
|
|
|
|
$this->useContext('CmsFormsContext', new CmsFormsContext($parameters));
|
|
|
|
$this->useContext('CmsUiContext', new CmsUiContext($parameters));
|
2013-10-21 00:49:31 +02:00
|
|
|
$this->useContext('EmailContext', new EmailContext($parameters));
|
2012-11-09 19:16:16 +01:00
|
|
|
|
2013-06-04 17:30:13 +02:00
|
|
|
$fixtureContext = new FixtureContext($parameters);
|
|
|
|
$fixtureContext->setFixtureFactory($this->getFixtureFactory());
|
|
|
|
$this->useContext('FixtureContext', $fixtureContext);
|
2013-06-05 11:40:36 +02:00
|
|
|
|
|
|
|
// Use blueprints to set user name from identifier
|
2013-08-21 11:27:16 +02:00
|
|
|
$factory = $fixtureContext->getFixtureFactory();
|
|
|
|
$blueprint = \Injector::inst()->create('FixtureBlueprint', 'Member');
|
|
|
|
$blueprint->addCallback('beforeCreate', function($identifier, &$data, &$fixtures) {
|
|
|
|
if(!isset($data['FirstName'])) $data['FirstName'] = $identifier;
|
|
|
|
});
|
|
|
|
$factory->define('Member', $blueprint);
|
2013-06-04 17:30:13 +02:00
|
|
|
}
|
|
|
|
|
2013-11-15 12:03:43 +01:00
|
|
|
public function setMinkParameters(array $parameters) {
|
2013-08-21 11:27:16 +02:00
|
|
|
parent::setMinkParameters($parameters);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-08-21 11:27:16 +02:00
|
|
|
if(isset($parameters['files_path'])) {
|
2014-08-15 08:53:05 +02:00
|
|
|
$this->getSubcontext('FixtureContext')->setFilesPath($parameters['files_path']);
|
2013-08-21 11:27:16 +02:00
|
|
|
}
|
|
|
|
}
|
2013-06-04 17:30:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FixtureFactory
|
|
|
|
*/
|
|
|
|
public function getFixtureFactory() {
|
|
|
|
if(!$this->fixtureFactory) {
|
2013-06-05 11:40:36 +02:00
|
|
|
$this->fixtureFactory = \Injector::inst()->create('BehatFixtureFactory');
|
2013-06-04 17:30:13 +02:00
|
|
|
}
|
|
|
|
return $this->fixtureFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFixtureFactory(FixtureFactory $factory) {
|
|
|
|
$this->fixtureFactory = $factory;
|
2012-12-08 12:20:20 +01:00
|
|
|
}
|
2012-11-09 19:16:16 +01:00
|
|
|
}
|