You are here

class NotificationsContentTests in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 tests/notifications_content.test \NotificationsContentTests
  2. 6 tests/notifications_content.test \NotificationsContentTests
  3. 6.2 tests/notifications_content.test \NotificationsContentTests
  4. 7 tests/notifications_content.test \NotificationsContentTests

Class for testing notifications module. Tests basic API functions

Notes:

  • An exception (PHP warning) is thrown when content module (cck) is enabled, nothing to worry about.

Hierarchy

Expanded class hierarchy of NotificationsContentTests

File

tests/notifications_content.test, line 9

View source
class NotificationsContentTests extends DrupalWebTestCase {
  function getInfo() {
    return array(
      'name' => 'Notifications Content',
      'group' => 'Notifications',
      'description' => 'Content Notifications API functions',
    );
  }
  function setUp() {
    parent::setUp('token', 'autoload', 'messaging', 'messaging_debug', 'messaging_template', 'notifications', 'notifications_content', 'notifications_ui', 'comment');

    // Set some defaults
    // Default send interval will be: immediately
    variable_set('notifications_default_send_interval', 0);
    variable_set('notifications_default_send_method', 'debug');
  }

  // Enable all UI optional pages
  function enableUIPages($enable = TRUE) {
    $settings = array_keys(notifications_subscription_types());
    variable_set('notifications_ui_types', $enable ? $settings : array());
    variable_set('notifications_ui_user', $enable ? array(
      'page',
      'create',
    ) : array());
  }

  // Enable content Subscriptions for all
  function enableSubscriptionTypes($enable = TRUE) {
    $settings = array_keys(notifications_subscription_types());
    variable_set('notifications_content_type', $enable ? $settings : array());
  }

  /**
   * Check all user pages before and after enabling permissions
   */
  function testNotificationsUserPages() {
    $this
      ->enableSubscriptionTypes();
    $this
      ->enableUIPages(0);
    $user = $this
      ->drupalCreateUser($this
      ->listPermissions());
    $this
      ->drupalLogin($user);
    $prefix = 'user/' . $user->uid . '/notifications';
    $test_pages = array(
      "{$prefix}/thread" => 'Thread overview page',
      "{$prefix}/add/thread" => 'Add thread subscription',
      "{$prefix}/nodetype" => 'Node type overview',
      "{$prefix}/add/nodetype" => 'Add node type subscription',
      "{$prefix}/author" => 'Author overview page',
      "{$prefix}/add/author" => 'Add author subscription',
    );

    // Test UI api function
    foreach (array(
      'thread',
      'nodetype',
      'author',
    ) as $type) {
      $this
        ->assertFalse(notifications_ui_access_page($type, $user), 'No permission for account page: ' . $type);
      $this
        ->assertFalse(notifications_ui_access_user_add($user, $type), 'No permission for adding type: ' . $type);
    }

    // First we shouldn't be able to access any of them
    foreach ($test_pages as $path => $name) {
      $this
        ->drupalGet($path);
      $this
        ->assertResponse(403, 'User cannot access the page: ' . $name);
    }
    $this
      ->enableUIPages();

    // Now we should be able to access all of them
    // Test UI api function
    foreach (array(
      'page',
      'create',
    ) as $type) {
      $this
        ->assertTrue(notifications_ui_user_options($type), 'Enabled user page: ' . $type);
    }
    foreach (array(
      'thread',
      'nodetype',
      'author',
    ) as $type) {
      $this
        ->assertTrue(notifications_ui_subscription_type($type), 'Enabled subscription type: ' . $type);
      $this
        ->assertTrue(notifications_ui_access_page($type, $user), 'Permission for account page: ' . $type);
      $this
        ->assertTrue(notifications_ui_access_user_add($user, $type), 'Permission for adding type: ' . $type);
    }
    foreach ($test_pages as $path => $name) {
      $this
        ->drupalGet($path);
      $this
        ->assertResponse(200, 'User can access the page: ' . $name);
    }
  }

  /**
   * Play with creating, retrieving, deleting a pair subscriptions
   */
  function testNotificationsContent() {

    // Create a new content-type for subscribing to
    $ctype = $this
      ->drupalCreateContentType();

    // Enable this content type for thread/author/type subscriptions
    variable_set('notifications_content_type', array(
      'thread',
      'nodetype',
      'author',
    ));

    // Enable all UI pages
    $this
      ->enableUIPages();
    $this
      ->enableSubscriptionTypes();

    // Author and node for testing, will be admin
    $author = $this
      ->drupalCreateUser();
    $node = $this
      ->drupalCreateNode(array(
      'title' => 'Notifications ' . $this
        ->randomName(),
      'body' => 'This is a test node for content subscriptions.',
      'type' => $ctype->type,
      'uid' => $author->uid,
      'status' => 1,
    ));
    $subs_thread = new Stdclass();
    $subs_thread->type = 'thread';
    $subs_thread->event_type = 'node';
    $subs_thread->fields['nid'] = $node->nid;

    // Check generic info hooks with some random values
    $this
      ->assertEqual(notifications_subscription_types('thread', 'event_type'), 'node', 'Types hook retrieves right value.');
    $event_type = notifications_event_types('node', 'update');
    $this
      ->assertEqual($event_type['digest'], array(
      'node',
      'nid',
    ), 'Event types hook retrieves right value.');

    // Try permissions with anonymous user
    $user = drupal_anonymous_user();
    $this
      ->assertEqual(notifications_user_allowed('subscription', $user, $subs_thread), FALSE, 'Subscription not allowed for anonymous user');

    // Create an authorized user and try permissions
    $user = $this
      ->drupalCreateUser($this
      ->listPermissions());
    $this
      ->assertEqual(notifications_user_allowed('subscription', $user, $subs_thread), TRUE, 'Subscription is allowed for user with the right permissions');
    $this
      ->drupalLogin($user);

    // Check unsubscribe page, no subscriptions yet
    $this
      ->drupalGet('notifications/unsubscribe/uid/' . $user->uid);
    $this
      ->assertText("You don't have any subscription on this site.", 'Unsubscribe page showing no subscriptions');

    // Check content type page before and after enabling this content type
    $allowed = notifications_content_types();
    $this
      ->assertEqual(isset($allowed[$ctype->type]), TRUE, 'Subscriptions are allowed for the new content type');
    $allowed[$ctype->type] = 0;

    // Enable this content type for thread/author subscriptions
    variable_set('notifications_content_type', array(
      'thread',
      'author',
    ));
    $this
      ->drupalGet('user/' . $user->uid . '/notifications/nodetype');
    $this
      ->assertNoText($ctype->name, 'User account subscriptions doesn\'t show content type.');
    $allowed[$ctype->type] = $ctype->type;

    // Enable this content type for thread/author/type subscriptions
    variable_set('notifications_content_type', array(
      'thread',
      'nodetype',
      'author',
    ));
    $this
      ->drupalGet('user/' . $user->uid . '/notifications/nodetype');
    $this
      ->assertText($ctype->name, 'User account subscriptions shows content type.');

    // Create a real thread subscription for a user
    $link = notifications_get_link('subscribe', array(
      'uid' => $user->uid,
      'type' => 'thread',
      'fields' => array(
        'nid' => $node->nid,
      ),
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText('Confirm your subscription', 'Thread subscription: Subscriptions confirmation page is shown');
    $this
      ->assertRaw(t('Thread'), 'Confirmation page titles are ok');
    $this
      ->assertRaw($node->title, 'Confirmation page parameters are ok');
    $this
      ->drupalPost($link['href'], array(), 'Subscribe');
    $this
      ->assertText('Your subscription was activated', 'Confirmation message is displayed');

    // Retrieve the subscription from the database
    $subs = notifications_user_get_subscriptions($user->uid, 'node', $node->nid, $node);
    $this
      ->assertEqual(count($subs), 1, 'The thread subscription has been actually created.');
    $subscription = array_shift($subs);

    // Try unsubscribe & subscribe again with signed links
    $link = notifications_get_link('unsubscribe', array(
      'sid' => $subscription->sid,
      'confirm' => FALSE,
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText(t('Your subscription has been removed.'), 'Thread subscription successfully removed with signed link');
    $link = notifications_get_link('subscribe', array(
      'uid' => $user->uid,
      'type' => 'thread',
      'fields' => array(
        'nid' => $node->nid,
      ),
      'confirm' => FALSE,
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText(t('Your subscription was activated.'), 'Created thread subscription with signed link');

    // Retrieve the subscription from the database
    $subs = notifications_user_get_subscriptions($user->uid, 'node', $node->nid, $node, TRUE);
    $this
      ->assertEqual(count($subs), 1, 'The thread subscription has been actually created.');
    $subscription = array_shift($subs);

    // Create content type subscription
    $link = notifications_get_link('subscribe', array(
      'uid' => $user->uid,
      'type' => 'nodetype',
      'fields' => array(
        'type' => $node->type,
      ),
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText(t('Confirm your subscription'), 'Content type: Subscriptions confirmation page is shown');
    $this
      ->assertRaw(t('Content type'), 'Confirmation page titles are ok');
    $this
      ->assertRaw($ctype->name, 'Confirmation page parameters are ok');
    $this
      ->drupalPost($link['href'], array(), 'Subscribe');
    $this
      ->assertText(t('Your subscription was activated'), 'Confirmation message is displayed');

    // Create subscription for content posted by author
    $link = notifications_get_link('subscribe', array(
      'uid' => $user->uid,
      'type' => 'author',
      'fields' => array(
        'author' => $author->uid,
      ),
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText(t('Confirm your subscription'), 'Author: Subscriptions confirmation page is shown');
    $this
      ->assertRaw(t('Author'), 'Confirmation page titles are ok');
    $this
      ->assertRaw($author->name, 'Confirmation page parameters are ok');
    $this
      ->drupalPost($link['href'], array(), 'Subscribe');
    $this
      ->assertText(t('Your subscription was activated'), 'Confirmation message is displayed');

    // Check subscriptions actually being created
    $subs = notifications_user_get_subscriptions($user->uid, 'node', $node->nid, $node, TRUE);
    $this
      ->assertEqual(count($subs), 3, 'The 3 subscriptions have actually been created');

    // Check user account pages
    $this
      ->drupalGet('user/' . $user->uid . '/notifications');
    $this
      ->assertText(t('Thread'), 'User account overview shows threads.');
    $this
      ->assertText(t('Content type'), 'User account overview shows content type.');
    $this
      ->assertText(t('Author'), 'User account overview shows author.');
    $this
      ->drupalGet('user/' . $user->uid . '/notifications/thread');
    $this
      ->assertText($node->title, 'User account subscriptions shows threads.');
    $this
      ->drupalGet('user/' . $user->uid . '/notifications/author');
    $this
      ->assertText($author->name, 'User account subscriptions shows author.');

    //$this->assertTrue(FALSE, $this->drupalGetContent());

    // Make sure we have some queueing before going on
    variable_set('notifications_send_immediate', 0);
    variable_set('notifications_sendself', 1);

    // Enable for update events, disble for comments
    $events['node']['update'] = 1;
    variable_set('notifications_events', $events);

    // Trigger a node update event, with node unpublished
    $node = node_load($node->nid, NULL, TRUE);
    $node->body .= 'Updated.';
    node_save($node);

    // Check queued notifications. We should have three queued notifs at the end
    $count = $this
      ->countUserRows('notifications_queue', $user->uid);
    $this
      ->assertEqual($count, 3, 'We have the right number of rows in queue: ' . $count);

    // Disable notifications for updates and try again
    $events['node']['update'] = 0;
    variable_set('notifications_events', $events);

    // Trigger a node update event
    $node = node_load($node->nid, NULL, TRUE);
    $node->body .= 'Updated.';
    node_save($node);

    // Check queued notifications. We should have three queued notifs at the end
    $count = db_result(db_query("SELECT COUNT(*) FROM {notifications_queue} WHERE uid = %d", $user->uid));
    $this
      ->assertEqual($count, 3, 'Disabling notifications for node updates worked, we have the right number of rows in queue: ' . $count);

    // Check queued events, these should be cleaned at the end
    $count = db_result(db_query("SELECT COUNT(*) FROM {notifications_event}"));
    $this
      ->assertEqual($count, 1, 'The right number of events are stored:' . $count);

    // Get messages from queue. After de-duping there should be only one.
    include_once drupal_get_path('module', 'notifications') . '/notifications.cron.inc';
    $send_method = notifications_user_setting('send_method', $user);
    $send_interval = notifications_user_setting('send_interval', $user);

    // Update this part of the test, pull function is obsolete

    //$queued = notifications_process_pull($send_method, array($user->uid));

    //$this->assertEqual(count($queued), 1, 'Messages for this event have been queued.');

    // Simulate real queue processing and check queue has been cleaned.
    $max_sqid = notifications_process_prepare();
    $this
      ->assertEqual($max_sqid > 0, TRUE, 'Cleanup and queue prepare.');

    // Dirty trick for processing only these rows
    db_query("UPDATE {notifications_queue} SET module = 'notificationstesting' WHERE uid = %d", $user->uid);
    notifications_process_queue($send_interval, $max_sqid);

    //$count = db_result(db_query("SELECT count(*) FROM {notifications_queue} WHERE uid = %d", $user->uid));
    $this
      ->assertEqual($this
      ->countUserRows('notifications_queue', $user->uid), 0, 'All rows in queue have been processed.');

    // Check event counters
    $count = db_result(db_query("SELECT count(*) FROM {notifications_event} WHERE counter = 0"));
    $this
      ->assertEqual($count, 1, 'The event counters have been updated:' . $count);

    // Check unsubscribe from all page, with confirmation and with direct link
    $link = notifications_get_link('unsubscribe', array(
      'uid' => $user->uid,
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText('Are you sure you want to remove all your subscriptions on this site?', 'Unsubscribe all page showing up.');
    $link = notifications_get_link('unsubscribe', array(
      'uid' => $user->uid,
      'confirm' => FALSE,
    ));
    $this
      ->drupalGet($link['href'], $link['options']);
    $this
      ->assertText('All your subscriptions have been removed.', 'Subscriptions removed with signed url.');
    $this
      ->assertEqual($this
      ->countUserRows('notifications', $user->uid), 0, 'The subscriptions have been actually removed.');

    // Clean up events and test content update workflow: publish node and publish comment
    db_query("DELETE FROM {notifications_event}");
    db_query("DELETE FROM {notifications_queue}");
    variable_del('notifications_events');

    // Create unpublished node and subscribe to content type
    $subscription = array(
      'type' => 'nodetype',
      'uid' => $user->uid,
      'fields' => array(
        'type' => $ctype->type,
      ),
    );
    notifications_save_subscription($subscription);
    $node = $this
      ->drupalCreateNode(array(
      'title' => 'Notifications ' . $this
        ->randomName(),
      'body' => 'This is a test node for content subscriptions.',
      'type' => $ctype->type,
      'uid' => $author->uid,
      'status' => 0,
    ));

    // There should be no events and nothing in the queue
    $this
      ->assertRowCount('notifications_event', 0);
    $this
      ->assertRowCount('notifications_queue', 0);

    // Publish the node, we get event and notification
    $node->status = 1;
    node_save($node);
    $this
      ->assertRowCount('notifications_event', 1);
    $this
      ->assertRowCount('notifications_queue', 1);

    // Create unpublished comment, should produce nothing
    $comment = array(
      'subject' => 'Test comment subject',
      'comment' => 'Test comment',
      'uid' => $author->uid,
      'nid' => $node->nid,
      'status' => COMMENT_NOT_PUBLISHED,
      'cid' => 0,
      'pid' => 0,
      'format' => FILTER_FORMAT_DEFAULT,
    );
    $cid = comment_save($comment);
    $this
      ->assertTrue($cid, 'Successfully created comment: ' . $cid);
    $this
      ->assertRowCount('notifications_event', 1);
    $this
      ->assertRowCount('notifications_queue', 1);

    // Now publish comment and check again
    $comment = (array) _comment_load($cid);
    $comment['status'] = COMMENT_PUBLISHED;
    comment_save($comment);
    $this
      ->assertRowCount('notifications_event', 2);
    $this
      ->assertRowCount('notifications_queue', 2);
  }
  function countUserRows($table, $uid = NULL) {
    return db_result(db_query("SELECT COUNT(*) FROM {" . $table . "} WHERE uid = %d", $uid));
  }

  // Helper. Asserts the right number of rows in table
  function assertRowCount($table, $target, $message = 'We have the right number of rows in table') {
    $count = db_result(db_query("SELECT COUNT(*) FROM {" . $table . "}"));
    $this
      ->assertEqual($count, $target, $message . " ({$table}, {$target} = {$count})");
  }
  function listPermissions() {
    return array(
      'access content',
      'maintain own subscriptions',
      'subscribe to content',
      'subscribe to content type',
      'subscribe to author',
    );
  }

  // Helper option for debugging
  function printDebug($data) {
    $string = is_array($data) || is_object($data) ? print_r($data, TRUE) : $data;
    $this
      ->assertTrue(FALSE, 'DEBUG: ' . $string);
  }

}

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::$originalPrefix protected property The original database prefix, before it was changed for testing purposes.
DrupalTestCase::$results public property Current results of this test case.
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::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.
DrupalTestCase::errorHandler public function Handle errors during test runs.
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::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 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::$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::$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.
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 does not exist in the current page by the given 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::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::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::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 Internal helper function; Create a role with specified permissions.
DrupalWebTestCase::drupalCreateUser protected function Create a user with a given set of permissions. The permissions correspond to the names given on the privileges page.
DrupalWebTestCase::drupalGet protected function Retrieves a Drupal path or an absolute path.
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::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::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::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
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.
DrupalWebTestCase::resetAll protected function Reset all data structures after having enabled new modules.
DrupalWebTestCase::tearDown protected function Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix.
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
NotificationsContentTests::assertRowCount function
NotificationsContentTests::countUserRows function
NotificationsContentTests::enableSubscriptionTypes function
NotificationsContentTests::enableUIPages function
NotificationsContentTests::getInfo function
NotificationsContentTests::listPermissions function
NotificationsContentTests::printDebug function
NotificationsContentTests::setUp function Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix.… Overrides DrupalWebTestCase::setUp
NotificationsContentTests::testNotificationsContent function Play with creating, retrieving, deleting a pair subscriptions
NotificationsContentTests::testNotificationsUserPages function Check all user pages before and after enabling permissions