abstract class UCXFTestCase in Extra Fields Checkout Pane 6.2
Same name and namespace in other branches
- 7 uc_extra_fields_pane.test \UCXFTestCase
Base class for all Extra Fields Pane test cases.
Hierarchy
- class \DrupalTestCase
- class \DrupalWebTestCase
- class \UbercartTestHelper
- class \UCXFTestCase
- class \UbercartTestHelper
- class \DrupalWebTestCase
Expanded class hierarchy of UCXFTestCase
File
- ./
uc_extra_fields_pane.test, line 13 - Automated tests for Extra Fields Pane
View source
abstract class UCXFTestCase extends UbercartTestHelper {
// -----------------------------------------------------------------------------
// PROPERTIES
// -----------------------------------------------------------------------------
// Address fields
/**
* A field of type UCXF_WIDGET_TYPE_TEXTFIELD.
*/
protected $textField;
/**
* A field of type UCXF_WIDGET_TYPE_SELECT.
*/
protected $selectField;
/**
* A field of type UCXF_WIDGET_TYPE_CONSTANT.
*/
protected $constantField;
/**
* A field of type UCXF_WIDGET_TYPE_CHECKBOX.
*/
protected $checkboxField;
/**
* A field of type UCXF_WIDGET_TYPE_PHP.
*/
protected $phpField;
/**
* A field of type UCXF_WIDGET_TYPE_PHP_SELECT.
*/
protected $phpSelectField;
// Custom order fields
/**
* A field of type UCXF_WIDGET_TYPE_TEXTFIELD.
*/
protected $infoTextField;
/**
* A field of type UCXF_WIDGET_TYPE_CONSTANT
* that is not displayed at checkout.
*/
protected $hiddenConstantField;
/**
* A field of type UCXF_WIDGET_TYPE_PHP
* that is not displayed at checkout.
*/
protected $hiddenPhpField;
// -----------------------------------------------------------------------------
// CONSTRUCT
// -----------------------------------------------------------------------------
/**
* Install users and modules needed for all tests.
*
* @param $modules
* Optional list of extra modules to install.
* @param $permissions
* Optional list of extra permissions for $this->adminUser.
*
* @return void
*/
public function setUp($modules = array(), $permissions = array()) {
$modules = array_merge(array(
'uc_extra_fields_pane',
), $modules);
$permissions = array_merge(array(
'use php fields',
), $permissions);
parent::setUp($modules, $permissions);
// Clear the field list cache.
UCXF_FieldList::reset();
}
/**
* Create default fields
*
* @return void
*/
public function setupFields() {
// Login as admin
$this
->drupalLogin($this->adminUser);
// Create address fields
$this->textField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_TEXTFIELD);
$this->selectField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_SELECT);
$this
->assertNoText(t('In this example the key of the first item is just a single space.'), t('The select field was saved without problems.'));
$this->constantField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_CONSTANT);
$this->checkboxField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_CHECKBOX);
$this->phpField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_PHP);
$this->phpSelectField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_PHP_SELECT);
$this
->assertNoText(t('In this example the key of the first item is an empty string.'), t('The php select field was saved without problems.'));
// A "hidden" constant field.
$this->hiddenConstantField = $this
->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_CONSTANT, array(
'ucxf[display_settings][checkout]' => FALSE,
'ucxf[value]' => 'hidden constant',
));
// Create custom order fields
// A text field with a default value.
$this->infoTextField = $this
->createCustomOrderField(UCXF_Field::UCXF_WIDGET_TYPE_TEXTFIELD, array(
'ucxf[value]' => 'default text',
));
// A "hidden" PHP field.
$this->hiddenPhpField = $this
->createCustomOrderField(UCXF_Field::UCXF_WIDGET_TYPE_PHP, array(
'ucxf[display_settings][checkout]' => FALSE,
'ucxf[value]' => '<?php return "hidden string"; ?>',
));
}
// -----------------------------------------------------------------------------
// UCXF CRUD
// -----------------------------------------------------------------------------
/**
* Create a new custom order field
*
* @param int $type
* @param array $edit
*
* @return string
* The name of the field
*/
protected function createCustomOrderField($type, $edit = array()) {
// Go the custom order fields page and click link.
$this
->drupalGet('admin/store/settings/checkout/edit/extrafields');
$this
->clickLink(t('Add a custom order field'));
$this
->assertTitle(t('Add custom order field') . ' | Drupal', t('The page for adding a custom order field is displayed.'));
$edit += array(
'ucxf[weight]' => 0,
'ucxf[pane_type]' => 'extra_information',
);
return $this
->createFieldHelper($type, $edit);
}
/**
* Create a new address field
*
* @param int $type
* @param array $edit
*
* @return string
* The name of the field
*/
protected function createAddressField($type, $edit = array()) {
// Go the address fields page and click link.
$this
->drupalGet('admin/store/settings/checkout/edit/fields');
$this
->clickLink('+ ' . t('Add an address field'));
$this
->assertTitle(t('Add an address field') . ' | Drupal', t('The page for adding an address field is displayed.'));
$edit += array(
'ucxf[panes][extra_delivery]' => 1,
'ucxf[panes][extra_billing]' => 1,
);
return $this
->createFieldHelper($type, $edit);
}
/**
* Create a new field
*
* @param int $type
* @param array $edit
*
* @return string
* The name of the field
*/
private function createFieldHelper($type, $edit) {
global $db_prefix;
$edit += array(
'ucxf[label]' => $this
->randomName(10),
'ucxf[db_name]' => drupal_strtolower($this
->randomName(32 - 5 - drupal_strlen($db_prefix) - 1)),
'ucxf[description]' => $this
->randomString(10),
'ucxf[value_type]' => $type,
'ucxf[required]' => TRUE,
);
switch ($type) {
case UCXF_Field::UCXF_WIDGET_TYPE_SELECT:
$edit += array(
'ucxf[value]' => " |Please select\noption1|Option 1\noption2|Option 2",
);
break;
case UCXF_Field::UCXF_WIDGET_TYPE_CONSTANT:
$edit += array(
'ucxf[value]' => 'A constant, ' . $this
->randomString(10),
);
break;
case UCXF_Field::UCXF_WIDGET_TYPE_PHP:
$edit += array(
'ucxf[value]' => '<?php return "A string"; ?>',
);
break;
case UCXF_Field::UCXF_WIDGET_TYPE_PHP_SELECT:
$edit += array(
'ucxf[value]' => '<?php return array("" => "Please select", "option1" => "PHP Option 1", "option2" => "PHP Option 2"); ?>',
);
break;
default:
$edit += array(
'ucxf[value]' => '',
);
break;
}
// Post the form at the current path.
$this
->drupalPost(NULL, $edit, t('Save'));
$this
->assertText(t('Field saved'), t('The field is saved.'));
// Return machine name of field.
return 'ucxf_' . $edit['ucxf[db_name]'];
}
// -----------------------------------------------------------------------------
// HELPER FUNCTIONS
// -----------------------------------------------------------------------------
/**
* Generates an array of values to post into an address form
*
* @param array $fields
* An array of UCXF_Field objects.
* @param array $parents
* The parent form elements.
* @param array $values
* (Some of) the values to use in the address form.
* @param string $prefix
* Optionally prefixes every field name.
*
* @return array
* An array with for each field a value.
*/
protected function getEditValues($fields, $parents = array(), $values = array(), $prefix = '') {
// Initialize values array
$form_values = array();
$extra_values = array();
// Calculate parent string if needed.
$parent_string = '';
if (count($parents) > 0) {
foreach ($parents as $parent) {
if ($parent_string) {
$parent_string = $parent_string . '[' . $parent . ']';
}
else {
$parent_string = $parent;
}
}
}
// Fill in value for every field
foreach ($fields as $field) {
if (isset($values[$field->db_name])) {
// The value is already set. Do not override it.
continue;
}
$default = $this
->generateDefaultValue($field);
if (!is_null($default)) {
$values[$field->db_name] = $this
->generateDefaultValue($field);
}
elseif ($field->value_type == UCXF_Field::UCXF_WIDGET_TYPE_CONSTANT || $field->value_type == UCXF_Field::UCXF_WIDGET_TYPE_PHP) {
switch ($field->db_name) {
case $this->hiddenConstantField:
$extra_values[$field->db_name] = 'hidden constant';
break;
case $this->hiddenPhpField:
$extra_values[$field->db_name] = 'hidden string';
break;
default:
$extra_values[$field->db_name] = $field
->generate_value();
break;
}
}
}
// Prefix values and add parents
foreach ($values as $fieldname => $value) {
// Set in parents if needed
$formfieldname = $prefix . $fieldname;
if ($parent_string) {
$formfieldname = $parent_string . '[' . $formfieldname . ']';
}
$form_values[$formfieldname] = $value;
}
return array(
'form_values' => $form_values,
'values' => array_merge($values, $extra_values),
);
}
/**
* Generates a default value for field $field.
*
* @param UCXF_Field $field
*
* @return string
*/
protected function generateDefaultValue($field) {
switch ($field->value_type) {
case UCXF_Field::UCXF_WIDGET_TYPE_CONSTANT:
case UCXF_Field::UCXF_WIDGET_TYPE_PHP:
return NULL;
case UCXF_Field::UCXF_WIDGET_TYPE_CHECKBOX:
return 1;
case UCXF_Field::UCXF_WIDGET_TYPE_TEXTFIELD:
return $this
->randomString(12);
case UCXF_Field::UCXF_WIDGET_TYPE_SELECT:
case UCXF_Field::UCXF_WIDGET_TYPE_PHP_SELECT:
return 'option2';
}
}
/**
* Test if these values appear in the database.
*
* @param array $values
* An array of ucxf values, grouped by field name.
* @param int $order_id
* The Ubercart order ID
* @param int $type
* The value element type
*
* @return void
*/
protected function checkValuesInDatabase($values, $order_id, $type) {
$saved_values = UCXF_Value::load_list($order_id, $type);
foreach ($values as $db_name => $value) {
$field_id = UCXF_FieldList::getFieldByName($db_name)->id;
$value_type = UCXF_FieldList::getFieldByName($db_name)
->get_value_type();
$message = t('Value for field %field correctly saved with value %value', array(
'%field' => $this
->getFieldname($db_name),
'%value' => $value,
));
if (!isset($saved_values[$field_id])) {
$this
->fail($message);
}
else {
$this
->assertEqual($saved_values[$field_id]
->getValue(), $value, $message . ' (' . check_plain($saved_values[$field_id]
->getValue()) . ')');
}
}
}
/**
* Test if tokens are properly generated.
*
* @param array $values
* An array of ucxf values, grouped by field name.
* @param int $order_id
* The Ubercart order ID
* @param int $type
* The value element type
*
* @return void
*/
protected function checkTokens($values, $order_id, $type) {
$order = uc_order_load($order_id);
foreach ($values as $db_name => $value) {
$field = UCXF_FieldList::getFieldByName($db_name);
$db_name = str_replace('ucxf_', '', $field->db_name);
// Generate token name
$token_name = '';
switch ($type) {
case UCXF_Value::UCXF_VALUE_ORDER_INFO:
$token_name = 'extra-' . $field->pane_type . '-' . $db_name;
break;
case UCXF_Value::UCXF_VALUE_ORDER_DELIVERY:
$token_name = 'extra-extra_delivery-' . $db_name;
break;
case UCXF_Value::UCXF_VALUE_ORDER_BILLING:
$token_name = 'extra-extra_billing-' . $db_name;
break;
}
// Test if generated token value is equal to expected output.
$text = TOKEN_PREFIX . $token_name . TOKEN_SUFFIX;
$token_value = token_replace($text, 'order', $order);
$this
->assertEqual($field
->output_value($value), $token_value, t('The token for %field is properly generated.', array(
'%field' => $field->db_name,
)));
}
}
/**
* Overrides UbercartTestHelper::checkout().
*/
public function checkout($edit = array()) {
$all_fields = UCXF_FieldList::getAllFields();
$address_fields = UCXF_FieldList::getAllAddressFields();
$custom_fields = UCXF_FieldList::getAllCustomFields();
$values = array();
$this
->drupalPost('cart', array(), 'Checkout');
// Check if all address fields are available on the page
foreach ($all_fields as $field) {
switch ($field->db_name) {
case $this->hiddenConstantField:
case $this->hiddenPhpField:
break;
default:
$this
->assertText($field
->output('label'), t('Field %field found on the page.', array(
'%field' => $this
->getFieldname($field->db_name),
)));
break;
}
}
// Check if constant and php-string are present on the page.
$this
->assertText('A constant, ', t('The field %field is correctly displayed on the page.', array(
'%field' => $this
->getFieldname($this->constantField),
)));
$this
->assertText('A string', t('The field %field is correctly displayed on the page.', array(
'%field' => $this
->getFieldname($this->phpField),
)));
// Ensure hidden constant/php-string fields are NOT present on the page.
$this
->assertNoText('hidden constant', t('The field %field is correctly hidden from the page.', array(
'%field' => $this
->getFieldname($this->hiddenConstantField),
)));
$this
->assertNoText('hidden string', t('The field %field is correctly hidden from the page.', array(
'%field' => $this
->getFieldname($this->hiddenPhpField),
)));
// Check if the textfield in the extra information pane is prefilled with 'default text'.
$this
->assertFieldByName('panes[extra_information][information_' . $this->infoTextField . ']', 'default text', t('The field %field has a default value.', array(
'%field' => $this
->getFieldname($this->infoTextField),
)));
// Fill in value for every field
$delivery_values = $this
->getEditValues($address_fields, array(
'panes',
'delivery',
), array(), 'delivery_');
$billing_values = $this
->getEditValues($address_fields, array(
'panes',
'billing',
), array(), 'billing_');
$info_values = $this
->getEditValues($custom_fields, array(
'panes',
'extra_information',
), array(), 'information_');
$edit = array_merge($delivery_values['form_values'], $billing_values['form_values'], $info_values['form_values'], $edit);
// Follow the logics of standard Ubercart checkout.
$order = parent::checkout($edit);
// $order can be an integer or an object.
if (is_numeric($order)) {
$order_id = $order;
$this
->pass(t('An order (!type) was created properly by UbercartTestHelper::checkout().', array(
'!type' => gettype($order),
)));
}
elseif (is_object($order)) {
$order_id = $order->order_id;
$this
->pass(t('An order (!type) was created properly by UbercartTestHelper::checkout().', array(
'!type' => gettype($order),
)));
}
else {
// We got something unexpected back from Ubercart.
// Note a failure and skip other checks in this method.
$this
->fail(t('An order (!type) was created properly by UbercartTestHelper::checkout().', array(
'!type' => gettype($order),
)));
return $order;
}
// Check if every value is saved correctly.
$this
->checkValuesInDatabase($delivery_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_DELIVERY);
$this
->checkValuesInDatabase($billing_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_BILLING);
$this
->checkValuesInDatabase($info_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_INFO);
// Check if token values are properly generated.
$this
->checkTokens($delivery_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_DELIVERY);
$this
->checkTokens($billing_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_BILLING);
$this
->checkTokens($info_values['values'], $order_id, UCXF_Value::UCXF_VALUE_ORDER_INFO);
// Return the same as what UbercartTestHelper::checkout() returned.
return $order;
}
/**
* Populates the checkout form.
*
* @param $edit
* The form-values array to which to add required fields.
*/
public function populateCheckoutForm($edit = array()) {
foreach (array(
'billing',
'delivery',
) as $pane) {
$prefix = 'panes[' . $pane . '][' . $pane;
$key = $prefix . '_country]';
$country = empty($edit[$key]) ? variable_get('uc_store_country', 840) : $edit[$key];
$zone_id = db_result(db_query('SELECT zone_id FROM {uc_zones} WHERE zone_country_id = %s ORDER BY rand() LIMIT 1', $country));
$edit += array(
$prefix . '_first_name]' => $this
->randomName(10),
$prefix . '_last_name]' => $this
->randomName(10),
$prefix . '_street1]' => $this
->randomName(10),
$prefix . '_city]' => $this
->randomName(10),
$prefix . '_zone]' => $zone_id,
$prefix . '_postal_code]' => mt_rand(10000, 99999),
);
}
// If the email address has not been set, and the user has not logged in,
// add a primary email address.
if (!isset($edit['panes[customer][primary_email]']) && !$this->loggedInUser) {
$edit['panes[customer][primary_email]'] = $this
->randomName(8) . '@example.com';
}
return $edit;
}
/**
* Returns fieldname with value type
*
* @param string $db_name
*
* @return string
*/
protected function getFieldname($db_name) {
$value_type = UCXF_FieldList::getFieldByName($db_name)
->get_value_type();
return $db_name . ' (' . $value_type . ')';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalTestCase:: |
protected | property | Assertions thrown in that test case. | |
DrupalTestCase:: |
protected | property | The database prefix of this test run. | |
DrupalTestCase:: |
protected | property | The original file directory, before it was changed for testing purposes. | |
DrupalTestCase:: |
protected | property | The original database prefix, before it was changed for testing purposes. | |
DrupalTestCase:: |
public | property | Current results of this test case. | |
DrupalTestCase:: |
protected | property | This class is skipped when looking for the source of an assertion. | |
DrupalTestCase:: |
protected | property | The test run ID. | |
DrupalTestCase:: |
protected | property | Time limit for the test. | |
DrupalTestCase:: |
protected | function | Internal helper: stores the assert. | |
DrupalTestCase:: |
protected | function | Check to see if two values are equal. | |
DrupalTestCase:: |
protected | function | Check to see if a value is false (an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
protected | function | Check to see if two values are identical. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not equal. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not identical. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not false (not an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
public static | function | Delete an assertion record by message ID. | |
DrupalTestCase:: |
protected | function | Fire an error assertion. | |
DrupalTestCase:: |
public | function | Handle errors during test runs. | |
DrupalTestCase:: |
protected | function | Handle exceptions. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always negative. | |
DrupalTestCase:: |
public static | function | Converts a list of possible parameters into a stack of permutations. | |
DrupalTestCase:: |
protected | function | Cycles through backtrace until the first non-assertion method is found. | |
DrupalTestCase:: |
public static | function | Store an assertion from outside the testing context. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always positive. | |
DrupalTestCase:: |
public static | function | Generates a random string containing letters and numbers. | |
DrupalTestCase:: |
public static | function | Generates a random string of ASCII characters of codes 32 to 126. | |
DrupalTestCase:: |
public | function | Run all tests in this class. | |
DrupalTestCase:: |
protected | function | Logs verbose message in a text file. | |
DrupalWebTestCase:: |
protected | property | Additional cURL options. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The current cookie file used by cURL. | |
DrupalWebTestCase:: |
protected | property | The handle of the current cURL connection. | |
DrupalWebTestCase:: |
protected | property | The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The parsed version of the page. | |
DrupalWebTestCase:: |
protected | property | Whether the files were copied to the test files directory. | |
DrupalWebTestCase:: |
protected | property | The headers of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | HTTP authentication credentials (<username>:<password>). | |
DrupalWebTestCase:: |
protected | property | HTTP authentication method | |
DrupalWebTestCase:: |
protected | property | The current user logged in using the internal browser. | |
DrupalWebTestCase:: |
protected | property | The original user, before it was changed to a clean uid = 1 for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser (plain text version). | |
DrupalWebTestCase:: |
protected | property | The profile to install as a basis for testing. | |
DrupalWebTestCase:: |
protected | property | The number of redirects followed during the handling of a request. | |
DrupalWebTestCase:: |
protected | property | The current session ID, if available. | |
DrupalWebTestCase:: |
protected | property | The current session name, if available. | |
DrupalWebTestCase:: |
protected | property | The URL currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists with the given name or id. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given id and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is found, and optional with the specified index. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is found. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the given value. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the pattern in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the string in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name or id. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given id and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is not found. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is not found. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the perl regex pattern is not present in raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page did not return the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is NOT found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is not the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found MORE THAN ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the Perl regex pattern is found in the raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page responds with the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text IS found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Helper for assertText and assertNoText. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found ONLY ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
DrupalWebTestCase:: |
protected | function | Pass if the internal browser's URL matches the given path. | |
DrupalWebTestCase:: |
protected | function | Builds an XPath query. | |
DrupalWebTestCase:: |
protected | function | Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive. | |
DrupalWebTestCase:: |
protected | function | Check to make sure that the array of permissions are valid. | |
DrupalWebTestCase:: |
protected | function | Follows a link by name. | |
DrupalWebTestCase:: |
protected | function | Helper function: construct an XPath for the given set of attributes and value. | |
DrupalWebTestCase:: |
protected | function | Close the cURL handler and unset the handler. | |
DrupalWebTestCase:: |
protected | function | Initializes and executes a cURL request. | |
DrupalWebTestCase:: |
protected | function | Reads headers and registers errors received from the tested site. | |
DrupalWebTestCase:: |
protected | function | Initializes the cURL connection. | |
DrupalWebTestCase:: |
protected | function | Compare two files based on size and file name. | |
DrupalWebTestCase:: |
protected | function | Creates a custom content type based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a node based on default settings. | |
DrupalWebTestCase:: |
protected | function | Internal helper function; Create a role with specified permissions. | |
DrupalWebTestCase:: |
protected | function | Create a user with a given set of permissions. The permissions correspond to the names given on the privileges page. | |
DrupalWebTestCase:: |
protected | function | Retrieves a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Gets the current raw HTML of requested page. | |
DrupalWebTestCase:: |
protected | function | Gets the value of an HTTP response header. If multiple requests were required to retrieve the page, only the headers from the last request will be checked by default. However, if TRUE is passed as the second argument, all requests will be processed… | |
DrupalWebTestCase:: |
protected | function | Gets the HTTP response headers of the requested page. Normally we are only interested in the headers returned by the last request. However, if a page is redirected or HTTP authentication is in use, multiple requests will be required to retrieve the… | |
DrupalWebTestCase:: |
protected | function | Gets an array containing all e-mails sent during this test case. | |
DrupalWebTestCase:: |
function | Get a node from the database based on its title. | ||
DrupalWebTestCase:: |
protected | function | Gets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Get a list files that can be used in tests. | |
DrupalWebTestCase:: |
protected | function | Generate a token for the currently logged in user. | |
DrupalWebTestCase:: |
protected | function | Retrieves only the headers for a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Log in a user with the internal browser. | |
DrupalWebTestCase:: |
protected | function | ||
DrupalWebTestCase:: |
protected | function | Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser. | |
DrupalWebTestCase:: |
protected | function | Sets the raw HTML content. This can be useful when a page has been fetched outside of the internal browser and assertions need to be made on the returned page. | |
DrupalWebTestCase:: |
protected | function | Sets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Takes a path and returns an absolute path. | |
DrupalWebTestCase:: |
protected | function | Get all option elements, including nested options, in a select. | |
DrupalWebTestCase:: |
protected | function | Get the selected value from a select field. | |
DrupalWebTestCase:: |
protected | function | Get the current url from the cURL handler. | |
DrupalWebTestCase:: |
protected | function | Handle form input related to drupalPost(). Ensure that the specified fields exist and attempt to create POST data in the correct manner for the particular field type. | |
DrupalWebTestCase:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
DrupalWebTestCase:: |
protected | function | Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. | |
DrupalWebTestCase:: |
protected | function | Reset all data structures after having enabled new modules. | |
DrupalWebTestCase:: |
protected | function | Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix. | |
DrupalWebTestCase:: |
protected | function | Outputs to verbose the most recent $count emails sent. | |
DrupalWebTestCase:: |
protected | function | Perform an xpath search on the contents of the internal browser. The search is relative to the root element (HTML tag normally) of the page. | |
DrupalWebTestCase:: |
function |
Constructor for DrupalWebTestCase. Overrides DrupalTestCase:: |
||
UbercartTestHelper:: |
protected | property | User with privileges to do everything. | |
UbercartTestHelper:: |
protected | property | Authenticated but unprivileged user. | |
UbercartTestHelper:: |
protected | property | Test product. | |
UbercartTestHelper:: |
function | Creates a new product. | ||
UbercartTestHelper:: |
function | |||
UbercartTestHelper:: |
protected | function |
Runs cron in the Drupal installed by Simpletest. Overrides DrupalWebTestCase:: |
|
UbercartTestHelper:: |
function | Assert that an email was sent with a specific subject line. | ||
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_CHECKBOX. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_CONSTANT. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_CONSTANT that is not displayed at checkout. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_PHP that is not displayed at checkout. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_TEXTFIELD. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_PHP. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_PHP_SELECT. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_SELECT. | |
UCXFTestCase:: |
protected | property | A field of type UCXF_WIDGET_TYPE_TEXTFIELD. | |
UCXFTestCase:: |
public | function |
Overrides UbercartTestHelper::checkout(). Overrides UbercartTestHelper:: |
|
UCXFTestCase:: |
protected | function | Test if tokens are properly generated. | |
UCXFTestCase:: |
protected | function | Test if these values appear in the database. | |
UCXFTestCase:: |
protected | function | Create a new address field | |
UCXFTestCase:: |
protected | function | Create a new custom order field | |
UCXFTestCase:: |
private | function | Create a new field | |
UCXFTestCase:: |
protected | function | Generates a default value for field $field. | |
UCXFTestCase:: |
protected | function | Generates an array of values to post into an address form | |
UCXFTestCase:: |
protected | function | Returns fieldname with value type | |
UCXFTestCase:: |
public | function | Populates the checkout form. | |
UCXFTestCase:: |
public | function |
Install users and modules needed for all tests. Overrides UbercartTestHelper:: |
1 |
UCXFTestCase:: |
public | function | Create default fields |