2012-08-15 16:50:19 +02:00
|
|
|
<?php
|
|
|
|
|
2012-10-16 22:01:16 +02:00
|
|
|
namespace SilverStripe\BehatExtension\Context\Initializer;
|
2012-08-15 16:50:19 +02:00
|
|
|
|
|
|
|
use Behat\Behat\Context\Initializer\InitializerInterface,
|
|
|
|
Behat\Behat\Context\ContextInterface;
|
|
|
|
|
2012-10-16 22:01:16 +02:00
|
|
|
use SilverStripe\BehatExtension\Context\SilverStripeAwareContextInterface;
|
2012-08-15 16:50:19 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the Behat/SilverStripeExtension
|
|
|
|
*
|
|
|
|
* (c) Michał Ochman <ochman.d.michal@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SilverStripe aware contexts initializer.
|
|
|
|
* Sets SilverStripe instance to the SilverStripeAware contexts.
|
|
|
|
*
|
|
|
|
* @author Michał Ochman <ochman.d.michal@gmail.com>
|
|
|
|
*/
|
|
|
|
class SilverStripeAwareInitializer implements InitializerInterface
|
|
|
|
{
|
2012-11-14 00:29:20 +01:00
|
|
|
|
2012-11-15 18:12:21 +01:00
|
|
|
private $databaseName;
|
2012-11-14 00:29:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Array
|
|
|
|
*/
|
|
|
|
protected $ajaxSteps;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Int Timeout in milliseconds
|
|
|
|
*/
|
|
|
|
protected $ajaxTimeout;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var String {@link see SilverStripeContext}
|
|
|
|
*/
|
|
|
|
protected $adminUrl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var String {@link see SilverStripeContext}
|
|
|
|
*/
|
|
|
|
protected $loginUrl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var String {@link see SilverStripeContext}
|
|
|
|
*/
|
|
|
|
protected $screenshotPath;
|
2012-08-15 16:50:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes initializer.
|
|
|
|
*/
|
2012-11-15 18:12:21 +01:00
|
|
|
public function __construct($frameworkPath, $frameworkHost)
|
2012-08-15 16:50:19 +02:00
|
|
|
{
|
2012-11-15 18:12:21 +01:00
|
|
|
$this->bootstrap($frameworkPath, $frameworkHost);
|
|
|
|
$this->databaseName = $this->initializeTempDb();
|
2012-08-15 16:50:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct()
|
|
|
|
{
|
|
|
|
$this->deleteTempDb();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if initializer supports provided context.
|
|
|
|
*
|
|
|
|
* @param ContextInterface $context
|
|
|
|
*
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
|
|
|
public function supports(ContextInterface $context)
|
|
|
|
{
|
|
|
|
return $context instanceof SilverStripeAwareContextInterface;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes provided context.
|
|
|
|
*
|
|
|
|
* @param ContextInterface $context
|
|
|
|
*/
|
|
|
|
public function initialize(ContextInterface $context)
|
|
|
|
{
|
2012-11-15 18:12:21 +01:00
|
|
|
$context->setDatabase($this->databaseName);
|
2012-11-14 00:29:20 +01:00
|
|
|
$context->setAjaxSteps($this->ajaxSteps);
|
|
|
|
$context->setAjaxTimeout($this->ajaxTimeout);
|
|
|
|
$context->setScreenshotPath($this->screenshotPath);
|
|
|
|
$context->setAdminUrl($this->adminUrl);
|
|
|
|
$context->setLoginUrl($this->loginUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setAjaxSteps($ajaxSteps)
|
|
|
|
{
|
|
|
|
if($ajaxSteps) $this->ajaxSteps = $ajaxSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAjaxSteps()
|
|
|
|
{
|
|
|
|
return $this->ajaxSteps;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setAjaxTimeout($ajaxTimeout)
|
|
|
|
{
|
|
|
|
$this->ajaxTimeout = $ajaxTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAjaxTimeout()
|
|
|
|
{
|
|
|
|
return $this->ajaxTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setAdminUrl($adminUrl)
|
|
|
|
{
|
|
|
|
$this->adminUrl = $adminUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAdminUrl()
|
|
|
|
{
|
|
|
|
return $this->adminUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLoginUrl($loginUrl)
|
|
|
|
{
|
|
|
|
$this->loginUrl = $loginUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLoginUrl()
|
|
|
|
{
|
|
|
|
return $this->loginUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setScreenshotPath($screenshotPath)
|
|
|
|
{
|
|
|
|
$this->screenshotPath = $screenshotPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getScreenshotPath()
|
|
|
|
{
|
|
|
|
return $this->screenshotPath;
|
2012-08-15 16:50:19 +02:00
|
|
|
}
|
|
|
|
|
2012-11-15 18:12:21 +01:00
|
|
|
protected function bootstrap($frameworkPath, $frameworkHost)
|
2012-08-15 16:50:19 +02:00
|
|
|
{
|
|
|
|
file_put_contents('php://stderr', 'Bootstrapping' . PHP_EOL);
|
|
|
|
|
|
|
|
// Set file to URL mappings
|
|
|
|
global $_FILE_TO_URL_MAPPING;
|
2012-11-15 18:12:21 +01:00
|
|
|
$_FILE_TO_URL_MAPPING[dirname($frameworkPath)] = $frameworkHost;
|
2012-08-15 16:50:19 +02:00
|
|
|
|
2012-11-09 15:46:33 +01:00
|
|
|
// Connect to database and build manifest
|
|
|
|
$_GET['flush'] = 1;
|
2012-11-15 18:12:21 +01:00
|
|
|
require_once $frameworkPath . '/core/Core.php';
|
2012-11-09 15:46:33 +01:00
|
|
|
unset($_GET['flush']);
|
2012-08-15 16:50:19 +02:00
|
|
|
|
|
|
|
// Remove the error handler so that PHPUnit can add its own
|
|
|
|
restore_error_handler();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function initializeTempDb()
|
|
|
|
{
|
|
|
|
file_put_contents('php://stderr', 'Creating temp DB' . PHP_EOL);
|
|
|
|
$dbname = \SapphireTest::create_temp_db();
|
|
|
|
\DB::set_alternative_database_name($dbname);
|
|
|
|
|
|
|
|
return $dbname;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function deleteTempDb()
|
|
|
|
{
|
|
|
|
file_put_contents('php://stderr', 'Killing temp DB' . PHP_EOL);
|
|
|
|
\SapphireTest::kill_temp_db();
|
|
|
|
\DB::set_alternative_database_name(null);
|
|
|
|
}
|
|
|
|
}
|