You are here

abstract class UCXFTestCase in Extra Fields Checkout Pane 7

Same name and namespace in other branches
  1. 6.2 uc_extra_fields_pane.test \UCXFTestCase

Base class for all Extra Fields Pane test cases.

Hierarchy

Expanded class hierarchy of UCXFTestCase

File

./uc_extra_fields_pane.test, line 10
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;

  /**
   * 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_addresses',
      'uc_extra_fields_pane',
    ), $modules);
    $permissions = array_merge(array(
      'use php fields',
    ), $permissions);
    parent::setUp($modules, $permissions);

    // Reset the registered address fields. The hook hook_uc_addresses_fields()
    // can be called before Extra Fields Pane is installed, which can result
    // into an UcAddressesInvalidFieldException in these automated tests.
    drupal_static_reset('uc_addresses_get_address_fields');

    // 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',
    ));

    // A "hidden" PHP field.
    $this->hiddenPhpField = $this
      ->createAddressField(UCXF_Field::UCXF_WIDGET_TYPE_PHP, array(
      'ucxf[display_settings][checkout]' => FALSE,
      'ucxf[value]' => '<?php return "hidden string"; ?>',
    ));
  }

  // -----------------------------------------------------------------------------
  // UCXF CRUD
  // -----------------------------------------------------------------------------

  /**
   * 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/countries/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);

      // Generate token name.
      $token_name = '';
      switch ($type) {
        case UCXF_Value::UCXF_VALUE_ORDER_DELIVERY:
          $token_name = 'uc_order:uc-addresses-shipping-address:' . $field->db_name;
          break;
        case UCXF_Value::UCXF_VALUE_ORDER_BILLING:
          $token_name = 'uc_order:uc-addresses-billing-address:' . $field->db_name;
          break;
      }

      // Test if generated token value is equal to expected output.
      $text = '[' . $token_name . ']';
      $token_value = token_replace($text, array(
        'uc_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().
   *
   * @return object
   *   An Ubercart order object, if checkout succeeded.
   *   False otherwise.
   */
  public function checkout($edit = array()) {
    $all_fields = UCXF_FieldList::getAllFields();
    $address_fields = UCXF_FieldList::getAllAddressFields();
    $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),
    )));

    // Fill in value for every field
    $delivery_values = $this
      ->getEditValues($address_fields, array(
      'panes',
      'delivery',
      'address',
    ), array(), 'delivery_');
    $billing_values = $this
      ->getEditValues($address_fields, array(
      'panes',
      'billing',
      'address',
    ), array(), 'billing_');
    $edit = array_merge($delivery_values['form_values'], $billing_values['form_values'], $edit);

    // Follow the logics of standard Ubercart checkout.
    $order = $this
      ->UbercartCheckout($edit);

    // Check if every value is saved correctly.
    $this
      ->checkValuesInDatabase($delivery_values['values'], $order->order_id, UCXF_Value::UCXF_VALUE_ORDER_DELIVERY);
    $this
      ->checkValuesInDatabase($billing_values['values'], $order->order_id, UCXF_Value::UCXF_VALUE_ORDER_BILLING);

    // Check if token values are properly generated.
    $this
      ->checkTokens($delivery_values['values'], $order->order_id, UCXF_Value::UCXF_VALUE_ORDER_DELIVERY);
    $this
      ->checkTokens($billing_values['values'], $order->order_id, UCXF_Value::UCXF_VALUE_ORDER_BILLING);
    return $order;
  }

  /**
   * Similar to UbercartTestHelper::checkout().
   *
   * @return object
   *   An Ubercart order object, if checkout succeeded.
   *   False otherwise.
   */
  public function UbercartCheckout($edit = array()) {
    $this
      ->drupalPost('cart', array(), 'Checkout');
    $edit = $this
      ->populateCheckoutForm($edit);

    // Submit the checkout page.
    $this
      ->drupalPost('cart/checkout', $edit, t('Review order'));
    $this
      ->assertRaw(t('Your order is almost complete.'));

    // Complete the review page.
    $this
      ->drupalPost(NULL, array(), t('Submit order'));
    $order_id = db_query("SELECT order_id FROM {uc_orders} WHERE delivery_first_name = :name", array(
      ':name' => $edit['panes[delivery][address][delivery_first_name]'],
    ))
      ->fetchField();
    if ($order_id) {
      $this
        ->pass(t('Order %order_id has been created', array(
        '%order_id' => $order_id,
      )));
      $order = uc_order_load($order_id);
    }
    else {
      $this
        ->fail(t('An order was created.'));
      $order = FALSE;
    }
    return $order;
  }

  /**
   * Override of UbercartTestHelper::populateCheckoutForm().
   *
   * With Ubercart Addresses, address fields on checkout have a bit different name.
   * Example:
   * Instead of "panes[delivery][delivery_first_name]",
   * Ubercart Addresses uses "panes[delivery][address][delivery_first_name]".
   * This is done to fix issues with the zone field.
   *
   * @param $edit
   *   The form-values array to which to add required fields.
   */
  function populateCheckoutForm($edit = array()) {
    foreach (array(
      'billing',
      'delivery',
    ) as $pane) {
      $prefix = 'panes[' . $pane . '][address][' . $pane;
      $key = $prefix . '_country]';
      $country = empty($edit[$key]) ? variable_get('uc_store_country', 840) : $edit[$key];
      $zone_id = db_query_range('SELECT zone_id FROM {uc_zones} WHERE zone_country_id = :country ORDER BY rand()', 0, 1, array(
        'country' => $country,
      ))
        ->fetchField();
      $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

Namesort descending Modifiers Type Description Overrides
DrupalTestCase::$assertions protected property Assertions thrown in that test case.
DrupalTestCase::$databasePrefix protected property The database prefix of this test run.
DrupalTestCase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
DrupalTestCase::$results public property Current results of this test case.
DrupalTestCase::$setup protected property Flag to indicate whether the test has been set up.
DrupalTestCase::$setupDatabasePrefix protected property
DrupalTestCase::$setupEnvironment protected property
DrupalTestCase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
DrupalTestCase::$testId protected property The test run ID.
DrupalTestCase::$timeLimit protected property Time limit for the test.
DrupalTestCase::$useSetupInstallationCache public property Whether to cache the installation part of the setUp() method.
DrupalTestCase::$useSetupModulesCache public property Whether to cache the modules installation part of the setUp() method.
DrupalTestCase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
DrupalTestCase::assert protected function Internal helper: stores the assert.
DrupalTestCase::assertEqual protected function Check to see if two values are equal.
DrupalTestCase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
DrupalTestCase::assertIdentical protected function Check to see if two values are identical.
DrupalTestCase::assertNotEqual protected function Check to see if two values are not equal.
DrupalTestCase::assertNotIdentical protected function Check to see if two values are not identical.
DrupalTestCase::assertNotNull protected function Check to see if a value is not NULL.
DrupalTestCase::assertNull protected function Check to see if a value is NULL.
DrupalTestCase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
DrupalTestCase::deleteAssert public static function Delete an assertion record by message ID.
DrupalTestCase::error protected function Fire an error assertion. 1
DrupalTestCase::errorHandler public function Handle errors during test runs. 1
DrupalTestCase::exceptionHandler protected function Handle exceptions.
DrupalTestCase::fail protected function Fire an assertion that is always negative.
DrupalTestCase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
DrupalTestCase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
DrupalTestCase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
DrupalTestCase::insertAssert public static function Store an assertion from outside the testing context.
DrupalTestCase::pass protected function Fire an assertion that is always positive.
DrupalTestCase::randomName public static function Generates a random string containing letters and numbers.
DrupalTestCase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
DrupalTestCase::run public function Run all tests in this class.
DrupalTestCase::verbose protected function Logs a verbose message in a text file.
DrupalWebTestCase::$additionalCurlOptions protected property Additional cURL options.
DrupalWebTestCase::$content protected property The content of the page currently loaded in the internal browser.
DrupalWebTestCase::$cookieFile protected property The current cookie file used by cURL.
DrupalWebTestCase::$cookies protected property The cookies of the page currently loaded in the internal browser.
DrupalWebTestCase::$curlHandle protected property The handle of the current cURL connection.
DrupalWebTestCase::$drupalSettings protected property The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser.
DrupalWebTestCase::$elements protected property The parsed version of the page.
DrupalWebTestCase::$generatedTestFiles protected property Whether the files were copied to the test files directory.
DrupalWebTestCase::$headers protected property The headers of the page currently loaded in the internal browser.
DrupalWebTestCase::$httpauth_credentials protected property HTTP authentication credentials (<username>:<password>).
DrupalWebTestCase::$httpauth_method protected property HTTP authentication method
DrupalWebTestCase::$loggedInUser protected property The current user logged in using the internal browser.
DrupalWebTestCase::$originalShutdownCallbacks protected property The original shutdown handlers array, before it was cleaned for testing purposes.
DrupalWebTestCase::$originalUser protected property The original user, before it was changed to a clean uid = 1 for testing purposes.
DrupalWebTestCase::$plainTextContent protected property The content of the page currently loaded in the internal browser (plain text version).
DrupalWebTestCase::$profile protected property The profile to install as a basis for testing. 20
DrupalWebTestCase::$redirect_count protected property The number of redirects followed during the handling of a request.
DrupalWebTestCase::$session_id protected property The current session ID, if available.
DrupalWebTestCase::$session_name protected property The current session name, if available.
DrupalWebTestCase::$url protected property The URL currently loaded in the internal browser.
DrupalWebTestCase::assertField protected function Asserts that a field exists with the given name or ID.
DrupalWebTestCase::assertFieldById protected function Asserts that a field exists in the current page with the given ID and value.
DrupalWebTestCase::assertFieldByName protected function Asserts that a field exists in the current page with the given name and value.
DrupalWebTestCase::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
DrupalWebTestCase::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
DrupalWebTestCase::assertLink protected function Pass if a link with the specified label is found, and optional with the specified index.
DrupalWebTestCase::assertLinkByHref protected function Pass if a link containing a given href (part) is found.
DrupalWebTestCase::assertMail protected function Asserts that the most recently sent e-mail message has the given value.
DrupalWebTestCase::assertMailPattern protected function Asserts that the most recently sent e-mail message has the pattern in it.
DrupalWebTestCase::assertMailString protected function Asserts that the most recently sent e-mail message has the string in it.
DrupalWebTestCase::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
DrupalWebTestCase::assertNoField protected function Asserts that a field does not exist with the given name or ID.
DrupalWebTestCase::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
DrupalWebTestCase::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
DrupalWebTestCase::assertNoFieldByXPath protected function Asserts that a field doesn't exist or its value doesn't match, by XPath.
DrupalWebTestCase::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
DrupalWebTestCase::assertNoLink protected function Pass if a link with the specified label is not found.
DrupalWebTestCase::assertNoLinkByHref protected function Pass if a link containing a given href (part) is not found.
DrupalWebTestCase::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
DrupalWebTestCase::assertNoPattern protected function Will trigger a pass if the perl regex pattern is not present in raw content.
DrupalWebTestCase::assertNoRaw 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::assertNoResponse protected function Asserts the page did not return the specified response code.
DrupalWebTestCase::assertNoText 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::assertNoTitle protected function Pass if the page title is not the given string.
DrupalWebTestCase::assertNoUniqueText protected function Pass if the text is found MORE THAN ONCE on the text version of the page.
DrupalWebTestCase::assertOptionSelected protected function Asserts that a select option in the current page is checked.
DrupalWebTestCase::assertPattern protected function Will trigger a pass if the Perl regex pattern is found in the raw content.
DrupalWebTestCase::assertRaw 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::assertResponse protected function Asserts the page responds with the specified response code.
DrupalWebTestCase::assertText 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::assertTextHelper protected function Helper for assertText and assertNoText.
DrupalWebTestCase::assertThemeOutput protected function Asserts themed output.
DrupalWebTestCase::assertTitle protected function Pass if the page title is the given string.
DrupalWebTestCase::assertUniqueText protected function Pass if the text is found ONLY ONCE on the text version of the page.
DrupalWebTestCase::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
DrupalWebTestCase::assertUrl protected function Pass if the internal browser's URL matches the given path.
DrupalWebTestCase::buildXPathQuery protected function Builds an XPath query.
DrupalWebTestCase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
DrupalWebTestCase::checkForMetaRefresh 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::checkPermissions protected function Check to make sure that the array of permissions are valid.
DrupalWebTestCase::clickLink protected function Follows a link by name.
DrupalWebTestCase::constructFieldXpath protected function Helper function: construct an XPath for the given set of attributes and value.
DrupalWebTestCase::copySetupCache protected function Copy the setup cache from/to another table and files directory.
DrupalWebTestCase::cronRun protected function Runs cron in the Drupal installed by Simpletest.
DrupalWebTestCase::curlClose protected function Close the cURL handler and unset the handler.
DrupalWebTestCase::curlExec protected function Initializes and executes a cURL request.
DrupalWebTestCase::curlHeaderCallback protected function Reads headers and registers errors received from the tested site.
DrupalWebTestCase::curlInitialize protected function Initializes the cURL connection.
DrupalWebTestCase::drupalCompareFiles protected function Compare two files based on size and file name.
DrupalWebTestCase::drupalCreateContentType protected function Creates a custom content type based on default settings.
DrupalWebTestCase::drupalCreateNode protected function Creates a node based on default settings.
DrupalWebTestCase::drupalCreateRole protected function Creates a role with specified permissions.
DrupalWebTestCase::drupalCreateUser protected function Create a user with a given set of permissions.
DrupalWebTestCase::drupalGet protected function Retrieves a Drupal path or an absolute path.
DrupalWebTestCase::drupalGetAJAX protected function Retrieve a Drupal path or an absolute path and JSON decode the result.
DrupalWebTestCase::drupalGetContent protected function Gets the current raw HTML of requested page.
DrupalWebTestCase::drupalGetHeader 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::drupalGetHeaders 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::drupalGetMails protected function Gets an array containing all e-mails sent during this test case.
DrupalWebTestCase::drupalGetNodeByTitle function Get a node from the database based on its title.
DrupalWebTestCase::drupalGetSettings protected function Gets the value of the Drupal.settings JavaScript variable for the currently loaded page.
DrupalWebTestCase::drupalGetTestFiles protected function Get a list files that can be used in tests.
DrupalWebTestCase::drupalGetToken protected function Generate a token for the currently logged in user.
DrupalWebTestCase::drupalHead protected function Retrieves only the headers for a Drupal path or an absolute path.
DrupalWebTestCase::drupalLogin protected function Log in a user with the internal browser.
DrupalWebTestCase::drupalLogout protected function
DrupalWebTestCase::drupalPost protected function Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser.
DrupalWebTestCase::drupalPostAJAX protected function Execute an Ajax submission.
DrupalWebTestCase::drupalSetContent 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::drupalSetSettings protected function Sets the value of the Drupal.settings JavaScript variable for the currently loaded page.
DrupalWebTestCase::getAbsoluteUrl protected function Takes a path and returns an absolute path.
DrupalWebTestCase::getAllOptions protected function Get all option elements, including nested options, in a select.
DrupalWebTestCase::getSelectedItem protected function Get the selected value from a select field.
DrupalWebTestCase::getSetupCacheKey protected function Returns the cache key used for the setup caching.
DrupalWebTestCase::getUrl protected function Get the current URL from the cURL handler.
DrupalWebTestCase::handleForm 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::loadSetupCache protected function Copies the cached tables and files for a cached installation setup.
DrupalWebTestCase::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
DrupalWebTestCase::preloadRegistry protected function Preload the registry from the testing site.
DrupalWebTestCase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
DrupalWebTestCase::prepareEnvironment protected function Prepares the current environment for running the test.
DrupalWebTestCase::recursiveDirectoryCopy protected function Recursively copy one directory to another.
DrupalWebTestCase::refreshVariables protected function Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. 1
DrupalWebTestCase::resetAll protected function Reset all data structures after having enabled new modules.
DrupalWebTestCase::storeSetupCache protected function Store the installation setup to a cache.
DrupalWebTestCase::tearDown protected function Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix. 6
DrupalWebTestCase::verboseEmail protected function Outputs to verbose the most recent $count emails sent.
DrupalWebTestCase::xpath 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::__construct function Constructor for DrupalWebTestCase. Overrides DrupalTestCase::__construct 1
UbercartTestHelper::$adminUser protected property User with privileges to do everything.
UbercartTestHelper::$customer protected property Authenticated but unprivileged user.
UbercartTestHelper::$product protected property Test product.
UbercartTestHelper::assertAjaxHelper protected function Helper function to test for text in a drupal ajax response.
UbercartTestHelper::assertAjaxRaw protected function Assert that the specified text is present in the raw drupal ajax response.
UbercartTestHelper::assertAjaxText protected function Assert that the specified text is present in the plain text version of the html that would be inserted into the page if this ajax response were executed.
UbercartTestHelper::assertNoAjaxRaw protected function Assert that the specified text is not present in the raw drupal ajax response.
UbercartTestHelper::assertNoAjaxText protected function Assert that the specified text is not present in the plain text version of the html that would be inserted into the page if this ajax response were executed.
UbercartTestHelper::createProduct protected function Creates a new product.
UbercartTestHelper::createProductClass protected function Creates a new product class.
UbercartTestHelper::findMail protected function Assert that an email was sent with a specific subject line.
UbercartTestHelper::ucPostAJAX protected function Extends drupalPostAjax() to replace additional content on the page after an ajax submission.
UCXFTestCase::$checkboxField protected property A field of type UCXF_WIDGET_TYPE_CHECKBOX.
UCXFTestCase::$constantField protected property A field of type UCXF_WIDGET_TYPE_CONSTANT.
UCXFTestCase::$hiddenConstantField protected property A field of type UCXF_WIDGET_TYPE_CONSTANT that is not displayed at checkout.
UCXFTestCase::$hiddenPhpField protected property A field of type UCXF_WIDGET_TYPE_PHP that is not displayed at checkout.
UCXFTestCase::$phpField protected property A field of type UCXF_WIDGET_TYPE_PHP.
UCXFTestCase::$phpSelectField protected property A field of type UCXF_WIDGET_TYPE_PHP_SELECT.
UCXFTestCase::$selectField protected property A field of type UCXF_WIDGET_TYPE_SELECT.
UCXFTestCase::$textField protected property A field of type UCXF_WIDGET_TYPE_TEXTFIELD.
UCXFTestCase::checkout public function Overrides UbercartTestHelper::checkout(). Overrides UbercartTestHelper::checkout
UCXFTestCase::checkTokens protected function Test if tokens are properly generated.
UCXFTestCase::checkValuesInDatabase protected function Test if these values appear in the database.
UCXFTestCase::createAddressField protected function Create a new address field
UCXFTestCase::createFieldHelper private function Create a new field
UCXFTestCase::generateDefaultValue protected function Generates a default value for field $field.
UCXFTestCase::getEditValues protected function Generates an array of values to post into an address form
UCXFTestCase::getFieldname protected function Returns fieldname with value type
UCXFTestCase::populateCheckoutForm function Override of UbercartTestHelper::populateCheckoutForm(). Overrides UbercartTestHelper::populateCheckoutForm
UCXFTestCase::setUp public function Install users and modules needed for all tests. Overrides UbercartTestHelper::setUp 1
UCXFTestCase::setupFields public function Create default fields
UCXFTestCase::UbercartCheckout public function Similar to UbercartTestHelper::checkout().