class FeatureContext in Booking and Availability Management Tools for Drupal 8
Same name and namespace in other branches
- 7 test/behat/features/bootstrap/FeatureContext.php \FeatureContext
Features context.
Hierarchy
- class \FeatureContext extends \Drupal\DrupalExtension\Context\RawDrupalContext implements \Behat\Behat\Context\CustomSnippetAcceptingContext
Expanded class hierarchy of FeatureContext
File
- test/
behat/ features/ bootstrap/ FeatureContext.php, line 24
View source
class FeatureContext extends RawDrupalContext implements CustomSnippetAcceptingContext {
/**
* The Mink context
*
* @var Drupal\DrupalExtension\Context\MinkContext
*/
private $minkContext;
/**
* Keep track of units so they can be cleaned up.
*
* @var array
*/
public $units = array();
/**
* Keep track of Types so they can be cleaned up.
*
* @var array
*/
public $Types = array();
/**
* Keep track of Types bundles so they can be cleaned up.
*
* @var array
*/
public $typeBundles = array();
/**
* Keep track of events so they can be cleaned up.
*
* @var array
*/
public $events = array();
/**
* Keep track of event types so they can be cleaned up.
*
* @var array
*/
public $eventTypes = array();
/**
* Keep track of created content types so they can be cleaned up.
*
* @var array
*/
public $content_types = array();
/**
* Keep track of created fields so they can be cleaned up.
*
* @var array
*/
public $fields = array();
public static function getAcceptedSnippetType() {
return 'regex';
}
/**
* @BeforeScenario
*/
public function before(BeforeScenarioScope $scope) {
$environment = $scope
->getEnvironment();
$this->minkContext = $environment
->getContext('Drupal\\DrupalExtension\\Context\\MinkContext');
}
/**
* @AfterScenario
*/
public function after(AfterScenarioScope $scope) {
foreach ($this
->getUserManager()
->getUsers() as $user) {
$query = \Drupal::entityQuery('bat_event');
$query
->condition('uid', $user->uid);
$event_ids = $query
->execute();
if ($event_ids) {
bat_event_delete_multiple($event_ids);
}
}
if (!empty($this->units)) {
foreach ($this->units as $unit) {
$unit
->delete();
}
}
if (!empty($this->Types)) {
foreach ($this->Types as $type) {
$type
->delete();
}
}
if (!empty($this->typeBundles)) {
foreach ($this->typeBundles as $type_bundle) {
$type_bundle
->delete();
}
}
if (!empty($this->eventTypes)) {
foreach ($this->eventTypes as $event_type) {
$event_type
->delete();
}
}
if (!empty($this->events)) {
bat_event_delete_multiple($this->events);
}
foreach ($this->content_types as $content_type) {
node_type_delete($content_type);
}
foreach ($this->fields as $field) {
field_delete_field($field);
}
}
/**
* @When /^I am on the "([^"]*)" type$/
*/
public function iAmOnTheType($type_name) {
$this
->iAmDoingOnTheType('view', $type_name);
}
/**
* @When /^I am editing the "([^"]*)" type$/
*/
public function iAmEditingTheType($type_name) {
$this
->iAmDoingOnTheType('edit', $type_name);
}
/**
* Asserts that a given node type is editable.
*/
public function assertEditNodeOfType($type) {
$node = (object) array(
'type' => $type,
);
$saved = $this
->getDriver()
->createNode($node);
$this->nodes[] = $saved;
// Set internal browser on the node edit page.
$this
->getSession()
->visit($this
->locatePath('/node/' . $saved->nid . '/edit'));
}
/**
* Fills a field using JS to avoid event firing.
* @param string $field
* @param string$value
*
*/
protected function fillFieldByJS($field, $value) {
$field = str_replace('\\"', '"', $field);
$value = str_replace('\\"', '"', $value);
$xpath = $this
->getSession()
->getPage()
->findField($field)
->getXpath();
$element = $this
->getSession()
->getDriver()
->getWebDriverSession()
->element('xpath', $xpath);
$elementID = $element
->getID();
$subscript = "arguments[0]";
$script = str_replace('{{ELEMENT}}', $subscript, '{{ELEMENT}}.value = "' . $value . '"');
return $this
->getSession()
->getDriver()
->getWebDriverSession()
->execute(array(
'script' => $script,
'args' => array(
array(
'ELEMENT' => $elementID,
),
),
));
}
/**
* Redirects user to the action page for the given unit.
*
* @param $action
* @param $unit_name
*/
protected function iAmDoingOnTheType($action, $type_name) {
$unit_id = $this
->findTypeByName($type_name);
$url = "admin/bat/config/types/manage/{$type_id}/{$action}";
$this
->getSession()
->visit($this
->locatePath($url));
}
/**
* Returns a type_id from its name.
*
* @param $type_name
* @return int
* @throws RuntimeException
*/
protected function findTypeByName($type_name) {
$query = \Drupal::entityQuery('bat_unit_type');
$query
->condition('name', $type_name);
$results = $query
->execute();
if ($results) {
return key($results);
}
else {
throw new RuntimeException('Unable to find that type');
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FeatureContext:: |
public | property | Keep track of created content types so they can be cleaned up. | |
FeatureContext:: |
public | property | Keep track of events so they can be cleaned up. | |
FeatureContext:: |
public | property | Keep track of event types so they can be cleaned up. | |
FeatureContext:: |
public | property | Keep track of created fields so they can be cleaned up. | |
FeatureContext:: |
private | property | The Mink context | |
FeatureContext:: |
public | property | Keep track of Types bundles so they can be cleaned up. | |
FeatureContext:: |
public | property | Keep track of Types so they can be cleaned up. | |
FeatureContext:: |
public | property | Keep track of units so they can be cleaned up. | |
FeatureContext:: |
public | function | @AfterScenario | |
FeatureContext:: |
public | function | Asserts that a given node type is editable. | |
FeatureContext:: |
public | function | @BeforeScenario | |
FeatureContext:: |
protected | function | Fills a field using JS to avoid event firing. | |
FeatureContext:: |
protected | function | Returns a type_id from its name. | |
FeatureContext:: |
public static | function | ||
FeatureContext:: |
protected | function | Redirects user to the action page for the given unit. | |
FeatureContext:: |
public | function | @When /^I am editing the "([^"]*)" type$/ | |
FeatureContext:: |
public | function | @When /^I am on the "([^"]*)" type$/ |