You are here

abstract class MerciBaseTestCase in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Abstract class for Merci testing. All Merci tests should extend this class.

Hierarchy

Expanded class hierarchy of MerciBaseTestCase

File

merci_core/tests/merci_base.test, line 12
Defines abstract base test class for the Merci module tests.

View source
abstract class MerciBaseTestCase extends DrupalWebTestCase {

  /**
   * Helper function to determine which modules should be enabled. Should be
   * used in place of standard parent::setUp('moduleA', 'moduleB') call.
   *
   * @param $set
   *  Which set of modules to load. Can be one of:
   *    'all': (default) All Merci modules, including UI.
   *    'ui': All API and UI modules.
   *    'api': Just API modules.
   *    'dependencies': Common dependencies required by many Merci API and UI
   *      modules.
   * @param $other_modules
   *  Array of modules to include in addition to the sets loaded by $set
   */
  protected function setUpHelper($set = 'all', array $other_modules = array()) {
    $dependencies = array(
      // API
      'commerce',
      'commerce_ui',
      'commerce_line_item',
      'commerce_price',
      'commerce_product',
      'commerce_product_ui',
      'commerce_product_reference',
      'ctools',
      'entity',
      'field',
      'field_ui',
      'field_sql_storage',
      'list',
      'taxonomy',
      'date',
      'date_api',
      'date_popup',
      'entityreference',
      'viewfield',
      'views',
    );
    $api = array(
      'merci_core',
      'merci_line_item',
    );
    $ui = array(
      'merci_line_item_ui',
      'merci_reservation',
      'merci_restrictions',
      'merci_permissions',
      'merci_printable_contract',
    );

    // Final module list
    $modules = array();

    // Cascade down the list and add sets
    switch ($set) {
      case 'all':
      case 'ui':
        $modules = array_merge($ui, $modules);
      case 'api':
        $modules = array_merge($api, $modules);
      case 'dependencies':
        $modules = array_merge($dependencies, $modules);
        break;
    }

    // Bring in modules specified by caller
    $modules = array_merge($modules, $other_modules);
    return $modules;
  }

  /**
   * Helper function to get different combinations of permission sets.
   *
   * @param $set
   *  Can be a single string (from the following) or can be an array containing
   *  multiple values that should be merged:
   *    'site admin': Admin permissions for Drupal core modules
   *    'store admin': All commerce "administer X" permissions
   */
  protected function permissionBuilder($sets) {
    if (is_string($sets)) {
      $sets = array(
        $sets,
      );
    }
    $site_admin = array(
      'administer blocks',
      'administer comments',
      'access dashboard',
      'administer filters',
      'administer image styles',
      'administer menu',
      'administer content types',
      'administer nodes',
      'bypass node access',
      'administer url aliases',
      'administer search',
      'administer modules',
      'administer site configuration',
      'administer themes',
      'administer software updates',
      'administer actions',
      'access administration pages',
      'access site in maintenance mode',
      'access site reports',
      'block IP addresses',
      'administer taxonomy',
      'administer permissions',
      'administer users',
      'administer commerce_product entities',
      'configure store',
    );
    $merci_admin = array(
      'access administration pages',
      'administer MERCI',
      //'administer all merci hours',
      'administer merci line item types',
      'administer merci line items',
      'administer merci_reservation types',
      'administer all merci restrictions',
      // TODO tests not based on commerce.
      'configure store',
      'administer line items',
      'administer line item types',
      'administer commerce_product entities',
      'administer product types',
      'administer rules',
    );
    $merci_operator = array(
      'administer merci line items',
      'create any merci line item',
      'override merci permissions',
      'create merci_reservation entities',
      'view merci_reservation entities',
      'edit any merci_reservation entities',
      'view any commerce_product entity',
    );
    $merci_customer = array(
      'create merci_reservation entities',
      'view merci_reservation entities',
      'edit own merci_reservation entities',
      'view any commerce_product entity',
      'create own merci line item',
    );
    $final_permissions = array();
    foreach ($sets as $set) {
      switch ($set) {
        case 'site admin':
          $final_permissions = array_unique($site_admin);
          break;
        case 'merci admin':
          $final_permissions = array_unique($merci_admin);
          break;
        case 'merci operator':
          $final_permissions = array_unique($merci_operator);
          break;
        case 'merci customer':
          $final_permissions = array_unique($merci_customer);
          break;
      }
    }
    return $final_permissions;
  }

  /**
   * Wrapper to easily create users from arrays returned by permissionBuilder().
   *
   * @param $set
   *  See permissionBuilder() function
   * @return
   *  A user with the permissions returned from permissionBuilder().
   */
  protected function createUserWithPermissionHelper($set) {
    $permissions = $this
      ->permissionBuilder($set);
    $user = $this
      ->drupalCreateUser($permissions);
    return $user;
  }

  /**
   * Returns a site administrator user. Only has permissions for administering
   * modules in Drupal core.
   */
  protected function createSiteAdmin() {
    return $this
      ->createUserWithPermissionHelper('site admin');
  }

  /**
   * Returns a store administrator user. Only has permissions for administering
   * Merci modules.
   */
  protected function createMerciAdmin() {
    return $this
      ->createUserWithPermissionHelper('merci admin');
  }

  /**
   * Returns a customer. It's a regular user with some Merci
   * permissions as access to checkout.
   */
  protected function createMerciOperator() {
    return $this
      ->createUserWithPermissionHelper('merci operator');
  }

  /**
   * Returns a customer. It's a regular user with some Merci
   * permissions as access to checkout.
   */
  protected function createMerciCustomer() {
    return $this
      ->createUserWithPermissionHelper('merci customer');
  }

  /**
   * Creates a dummy product type for use with other tests.
   *
   * @return
   *  A product type.
   *  FALSE if the appropiate modules were not available.
   */
  public function createDummyProductType($type = 'product_type', $name = 'Product Type', $description = '', $help = '', $append_random = TRUE) {
    if (module_exists('commerce_product_ui')) {
      if ($append_random) {
        $type = $type . '_' . $this
          ->randomName(20 - strlen($type) - 1);
        $name = $name . ' ' . $this
          ->randomName(40 - strlen($name) - 1);
        $description = $description . ' ' . $this
          ->randomString(128);
        $help = $help . ' ' . $this
          ->randomString(128);
      }
      $new_product_type = commerce_product_ui_product_type_new();
      $new_product_type['type'] = $type;
      $new_product_type['name'] = $name;
      $new_product_type['description'] = $description;
      $new_product_type['help'] = $help;
      $new_product_type['is_new'] = TRUE;
      $save_result = commerce_product_ui_product_type_save($new_product_type);
      if ($save_result === FALSE) {
        return FALSE;
      }
      return $new_product_type;
    }
    else {
      return FALSE;
    }
  }

  /**
   * Creates a dummy product for use with other tests.
   *
   * @param $type_given
   *  Optional. The product type to base this product on. Defaults to 'product'.
   * @return
   *  A product type with most of it's basic fields set random values.
   *  FALSE if the appropiate modules were not available.
   */
  public function createDummyProduct($sku = '', $title = '', $amount = -1, $currency_code = 'USD', $uid = 1, $type_given = 'merci_resource') {
    if (module_exists('commerce_product')) {
      $new_product = commerce_product_new($type_given);
      $new_product->sku = empty($sku) ? $this
        ->randomName(10) : $sku;
      $new_product->title = empty($title) ? $this
        ->randomName(10) : $title;
      $new_product->uid = $uid;
      $new_product->commerce_price[LANGUAGE_NONE][0]['amount'] = $amount < 0 ? rand(2, 500) : $amount;
      $new_product->commerce_price[LANGUAGE_NONE][0]['currency_code'] = 'USD';
      $new_product->field_quantity[LANGUAGE_NONE][0]['value'] = '1';
      commerce_product_save($new_product);
      return $new_product;
    }
    else {
      return FALSE;
    }
  }

  /**
   * Create a dummy product display content type.
   *
   * @param $type
   *  Machine name of the content type to create. Also used for human readable
   *  name to keep things simple.
   * @param $attach_product_reference_field
   *  If TRUE, automatically add a product reference field to the new content
   *  type.
   * @param $field_name
   *  Only used if $attach_product_reference_field is TRUE. Sets the name for
   *  the field instance to attach. Creates the field if it doesn't exist.
   * @param $cardinality_reference_field
   *  Only used if $attach_product_reference_field is TRUE. Sets the
   *  cardinality for the field instance to attach.
   * @return
   *  An object for the content type.
   * @see attachProductReferenceField()
   */
  public function createDummyProductDisplayContentType($type = 'product_display', $attach_product_reference_field = TRUE, $field_name = 'field_product', $cardinality_reference_field = 1) {

    // If the specified node type already exists, return it now.
    if ($content_type = node_type_load($type)) {
      return $content_type;
    }
    $content_type = array(
      'type' => $type,
      'name' => $type,
      // Don't use a human readable name here to keep it simple.
      'base' => 'node_content',
      'description' => 'Use <em>product displays</em> to display products for sale to your customers.',
      'custom' => 1,
      'modified' => 1,
      'locked' => 0,
    );
    $content_type = node_type_set_defaults($content_type);
    node_type_save($content_type);
    node_add_body_field($content_type);
    $this
      ->pass("Created content type: {$type}");
    if ($attach_product_reference_field) {

      // Maybe $instance should be returned as well
      $instance = $this
        ->attachProductReferenceField($type, $field_name, $cardinality_reference_field);
    }
    return $content_type;
  }

  /**
   * Create a dummy order in a given status.
   *
   * @param $uid
   * 	 ID of the user that owns the order.
   * @param $products
   *  	Array of products that are going to be added to the order: keys are
   *    product ids, values are the quantity of products to add.
   * @param $status
   * 	 Status of the order
   *
   * @return
   *   A commerce order object in the given status.
   */
  public function createDummyLineItem($uid = 1, $products = array(), $dates = array()) {

    // If there aren't any products to add to the order, create one.
    if (empty($products)) {
      $product = $this
        ->createDummyProduct('PROD-01', 'Product One', -1, 'USD', $uid);
      $products[$product->product_id] = rand(1, 10);
    }
    if (empty($dates)) {
      $dates = array(
        'value' => date('Y-m-d H:i:s'),
        'value2' => date('Y-m-d H:i:s', time() + 3600),
        'timezone' => 'America/Los Angeles',
        'timezone_db' => 'UTC',
        'data_type' => 'datetime',
      );
    }
    $default_values = array(
      'type' => 'merci_line_item',
    );
    $line_item = entity_create('merci_line_item', $default_values);
    $wrapper = entity_metadata_wrapper('merci_line_item', $line_item);

    // TODO support for multiple products.
    reset($products);
    $wrapper->{MERCI_RESOURCE_REFERENCE}
      ->set(key($products));
    $wrapper->{MERCI_CHECKOUT_DATES}
      ->set($dates);
    $wrapper
      ->save();
    $this
      ->verbose(print_r($wrapper
      ->value(), TRUE));
    return $wrapper
      ->value();
  }

  /**
   * Create a dummy order in a given status.
   *
   * @param $uid
   * 	 ID of the user that owns the order.
   * @param $products
   *  	Array of products that are going to be added to the order: keys are
   *    product ids, values are the quantity of products to add.
   * @param $status
   * 	 Status of the order
   *
   * @return
   *   A commerce order object in the given status.
   */
  public function createDummyReservation($uid = 1, $products = array(), $status = 'cart', $customer_profile_id = NULL) {

    // If there aren't any products to add to the order, create one.
    if (empty($products)) {
      $product = $this
        ->createDummyProduct('PROD-01', 'Product One', -1, 'USD', $uid);
      $products[$product->product_id] = rand(1, 10);
    }

    // Create a new shopping cart order by adding the products to it.
    foreach ($products as $product_id => $quantity) {
      if ($product = commerce_product_load($product_id)) {
        $line_item = commerce_product_line_item_new($product, $quantity);
        $line_item = commerce_cart_product_add($uid, $line_item);
      }
    }

    // Load the order for returning it.
    $order = commerce_cart_order_load($uid);
    if (!empty($customer_profile_id)) {
      $order->commerce_customer_billing[LANGUAGE_NONE][0]['profile_id'] = $customer_profile_id;
    }

    // If the order should be in a different status, update it.
    if ($status != 'cart') {
      $order = commerce_order_status_update($order, $status, TRUE);
    }
    commerce_order_save($order);
    return $order;
  }

  /**
   * Attach a product reference field to a given content type. Creates the field
   * if the given name doesn't already exist. Automatically sets the display
   * formatters to be the "add to cart form" for the teaser and full modes.
   *
   * @param $content_type
   *  Name of the content type that should have a field instance attached.
   * @param $field_name
   *  Only used if $attach_product_reference_field is TRUE. Sets the name for
   *  the field instance to attach. Creates the field if it doesn't exist.
   * @return
   *  An object containing the field instance that was created.
   * @see createDummyProductDisplayContentType()
   */
  public function attachProductReferenceField($content_type = 'product_display', $field_name = 'field_product', $cardinality = 1) {
    if (module_exists('commerce_product')) {

      // Check if the field has already been created.
      $field_info = field_info_field($field_name);
      if (empty($field_info)) {

        // Add a product reference field to the product display node type
        $field = array(
          'field_name' => $field_name,
          'type' => 'commerce_product_reference',
          'cardinality' => $cardinality,
          'translatable' => FALSE,
        );
        field_create_field($field);
        $this
          ->pass("New field created: {$field_name}");
      }
      else {
        debug("NOTE: attachProductReferenceField attempting to create field <code>{$field_name}</code> that already exists. This is fine and this message is just for your information.");
      }

      // Check that this instance doesn't already exist
      $instance = field_info_instance('node', $field_name, $content_type);
      if (empty($insance)) {

        // Add an instance of the field to the given content type
        $instance = array(
          'field_name' => $field_name,
          'entity_type' => 'node',
          'label' => 'Product',
          'bundle' => $content_type,
          'description' => 'Choose a product to display for sale.',
          'required' => TRUE,
          'widget' => array(
            'type' => 'options_select',
          ),
          'display' => array(
            'default' => array(
              'label' => 'hidden',
              'type' => 'commerce_cart_add_to_cart_form',
            ),
            'teaser' => array(
              'label' => 'hidden',
              'type' => 'commerce_cart_add_to_cart_form',
            ),
          ),
        );
        field_create_instance($instance);
        $this
          ->pass("Create field instance of field <code>{$field_name}</code> on content type <code>{$content_type}</code>");
      }
      else {
        $this
          ->fail("Test Develoepr: You attempted to create a field that already exists. Field: {$field_name} -- Content Type: {$content_type}");
      }
      return $instance;
    }
    else {
      $this
        ->fail('Cannot create product reference field because Product module is not enabled.');
    }
  }

  /**
   * Creates a product display node with an associated product.
   *
   * @param $product_ids
   *  Array of product IDs to use for the product reference field.
   * @param $title
   *  Optional title for the product node. Will default to a random name.
   * @param $product_display_content_type
   *  Machine name for the product display content type to use for creating the
   *  node. Defaults to 'product_display'.
   * @param $product_ref_field_name
   *  Machine name for the product reference field on this product display
   *  content type. Defaults to 'field_product'.
   * @return
   *  The newly saved $node object.
   */
  public function createDummyProductNode($product_ids, $title = '', $product_display_content_type = 'product_display', $product_ref_field_name = 'field_product') {
    if (module_exists('commerce_product')) {
      if (empty($title)) {
        $title = $this
          ->randomString(10);
      }
      $node = (object) array(
        'type' => $product_display_content_type,
      );
      node_object_prepare($node);
      $node->uid = 1;
      $node->title = $title;
      foreach ($product_ids as $product_id) {
        $node->{$product_ref_field_name}[LANGUAGE_NONE][]['product_id'] = $product_id;
      }
      node_save($node);
      return $node;
    }
    else {
      $this
        ->fail(t('Cannot use use createProductNode because the product module is not enabled.'));
    }
  }

  /**
   * Create a full product node without worrying about the earlier steps in
   * the process.
   *
   * @param $count
   *  Number of product nodes to create. Each one will have a new product
   *  entity associated with it. SKUs will be like PROD-n. Titles will be
   *  like 'Product #n'. Price will be 10*n. Counting begins at 1.
   * @return
   *  An array of product node objects.
   */
  public function createDummyProductNodeBatch($count) {
    $this
      ->createDummyProductDisplayContentType();
    $product_nodes = array();
    for ($i = 1; $i < $count; $i++) {
      $sku = "PROD-{$i}";
      $title = "Product #{$i}";
      $price = $i * 10;
      $product = $this
        ->createDummyProduct($sku, $title, $price);
      $product_node = $this
        ->createDummyProductNode(array(
        $product->product_id,
      ), $title);
      $product_nodes[$i] = $product_node;
    }
    return $product_nodes;
  }

  // =============== Helper functions ===============

  /**
   * Checks if a group of modules is enabled.
   *
   * @param $module_name
   *  Array of module names to check (without the .module extension)
   * @return
   *  TRUE if all of the modules are enabled.
   */
  protected function modulesUp($module_names) {
    if (is_string($module_names)) {
      $module_names = array(
        $module_names,
      );
    }
    foreach ($module_names as $module_name) {
      if (!module_exists($module_name)) {
        return FALSE;
      }
    }
    return TRUE;
  }

  /**
   * Generate random valid information for Address information.
   */
  protected function generateAddressInformation() {
    $address_info['name_line'] = $this
      ->randomName();
    $address_info['thoroughfare'] = $this
      ->randomName();
    $address_info['locality'] = $this
      ->randomName();
    $address_info['postal_code'] = rand(00, 99999);
    $address_info['administrative_area'] = 'KY';
    return $address_info;
  }

  /**
   * Generate a random valid email
   *
   * @param string $type
   *  Domain type
   *
   * @return string
   *  Valid email
   */
  protected function generateEmail($type = 'com') {
    return $this
      ->randomName() . '@' . $this
      ->randomName() . '.' . $type;
  }

  /**
   * Assertions for Drupal Merci.
   */

  /**
   *	Asserts that a product has been created.
   *
   * @param $product
   *  A full loaded commerce_product object.
   * @param $user
   * 	User that access the admin pages. Optional, if not informed, the check
   * 	is done with the store admin.
   */
  public function assertProductCreated($product, $user = NULL) {

    // Check if the product is not empty and reload it from database.
    $this
      ->assertFalse(empty($product), t('Product object is not empty'));
    $product = commerce_product_load($product->product_id);
    $this
      ->assertFalse(empty($product), t('Product object is correctly loaded from database'));

    // Access to the admin page for the product and check if the product is there.
    if (empty($user)) {
      $user = $this
        ->createMerciAdmin();
    }
    $this
      ->drupalLogin($user);
    $this
      ->drupalGet('admin/commerce/products/' . $product->product_id);
    $this
      ->assertFieldById('edit-sku', $product->sku, t('When editing the product in the administration interface, the SKU is informed correctly'));
    $this
      ->assertFieldById('edit-title', $product->title, t('When editing the product in the administration interface, the Title is informed correctly'));
  }
  function fieldUIAddNewField($bundle_path, $initial_edit, $field_edit = array(), $instance_edit = array()) {

    // Use 'test_field' field type by default.
    $initial_edit += array(
      'fields[_add_new_field][type]' => 'test_field',
      'fields[_add_new_field][widget_type]' => 'test_field_widget',
    );
    $label = $initial_edit['fields[_add_new_field][label]'];
    $field_name = $initial_edit['fields[_add_new_field][field_name]'];

    // First step : 'Add new field' on the 'Manage fields' page.
    $this
      ->drupalPost("{$bundle_path}/fields", $initial_edit, t('Save'));
    $this
      ->assertRaw(t('These settings apply to the %label field everywhere it is used.', array(
      '%label' => $label,
    )), 'Field settings page was displayed.');

    // Second step : 'Field settings' form.
    $this
      ->drupalPost(NULL, $field_edit, t('Save field settings'));
    $this
      ->assertRaw(t('Updated field %label field settings.', array(
      '%label' => $label,
    )), 'Redirected to instance and widget settings page.');

    // Third step : 'Instance settings' form.
    $this
      ->drupalPost(NULL, $instance_edit, t('Save settings'));
    $this
      ->assertRaw(t('Saved %label configuration.', array(
      '%label' => $label,
    )), 'Redirected to "Manage fields" page.');

    // Check that the field appears in the overview form.
    $this
      ->assertFieldByXPath('//table[@id="field-overview"]//td[1]', $label, 'Field was created and appears in the overview page.');
  }

}

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::setUp protected function Sets up a Drupal site for running functional and integration tests. 303
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
MerciBaseTestCase::assertProductCreated public function Asserts that a product has been created.
MerciBaseTestCase::attachProductReferenceField public function Attach a product reference field to a given content type. Creates the field if the given name doesn't already exist. Automatically sets the display formatters to be the "add to cart form" for the teaser and full modes.
MerciBaseTestCase::createDummyLineItem public function Create a dummy order in a given status.
MerciBaseTestCase::createDummyProduct public function Creates a dummy product for use with other tests.
MerciBaseTestCase::createDummyProductDisplayContentType public function Create a dummy product display content type.
MerciBaseTestCase::createDummyProductNode public function Creates a product display node with an associated product.
MerciBaseTestCase::createDummyProductNodeBatch public function Create a full product node without worrying about the earlier steps in the process.
MerciBaseTestCase::createDummyProductType public function Creates a dummy product type for use with other tests.
MerciBaseTestCase::createDummyReservation public function Create a dummy order in a given status.
MerciBaseTestCase::createMerciAdmin protected function Returns a store administrator user. Only has permissions for administering Merci modules.
MerciBaseTestCase::createMerciCustomer protected function Returns a customer. It's a regular user with some Merci permissions as access to checkout.
MerciBaseTestCase::createMerciOperator protected function Returns a customer. It's a regular user with some Merci permissions as access to checkout.
MerciBaseTestCase::createSiteAdmin protected function Returns a site administrator user. Only has permissions for administering modules in Drupal core.
MerciBaseTestCase::createUserWithPermissionHelper protected function Wrapper to easily create users from arrays returned by permissionBuilder().
MerciBaseTestCase::fieldUIAddNewField function
MerciBaseTestCase::generateAddressInformation protected function Generate random valid information for Address information.
MerciBaseTestCase::generateEmail protected function Generate a random valid email
MerciBaseTestCase::modulesUp protected function Checks if a group of modules is enabled.
MerciBaseTestCase::permissionBuilder protected function Helper function to get different combinations of permission sets.
MerciBaseTestCase::setUpHelper protected function Helper function to determine which modules should be enabled. Should be used in place of standard parent::setUp('moduleA', 'moduleB') call.