class AcquiaLiftWebTestReports in Acquia Lift Connector 7
Same name and namespace in other branches
- 7.2 tests/acquia_lift.test \AcquiaLiftWebTestReports
Hierarchy
- class \DrupalTestCase
- class \DrupalWebTestCase
- class \AcquiaLiftWebTestBase
- class \AcquiaLiftWebTestReports
- class \AcquiaLiftWebTestBase
- class \DrupalWebTestCase
Expanded class hierarchy of AcquiaLiftWebTestReports
File
- tests/
acquia_lift.test, line 2123 - Integration tests for Acquia Lift module.
View source
class AcquiaLiftWebTestReports extends AcquiaLiftWebTestBase {
public static function getInfo() {
return array(
'name' => t('Acquia Lift Web Tests - Reporting'),
'description' => t('Tests the reporting functionality for Acquia Lift.'),
'group' => t('Personalize'),
);
}
public function testConversionReportAjaxEndpoint() {
$this
->drupalLogin($this->managerUser);
$agent = $this
->createTestAgent(array(), TRUE, FALSE);
$agent_name = $agent
->getMachineName();
// Set the agent to read report data from the test file.
$path = drupal_get_path('module', 'acquia_lift');
variable_set("acquia_lift_report_source_" . $agent_name, "/" . $path . '/tests/test_reports.json');
// Call the conversion report endpoint.
$first_osid = 'osid-1';
$report = $this
->drupalGet('acquia_lift/reports/conversion', array(
'query' => array(
'campaign' => $agent_name,
'decision' => $first_osid,
),
));
$report = drupal_json_decode($report);
$pattern = '/class="lift-statistic-category"/';
preg_match($pattern, $report, $matches);
$this
->assertEqual(count($matches), 1, 'Only one category of results returned.');
$pattern = '/(<table)/';
preg_match($pattern, $report, $matches);
$this
->assertEqual(count($matches), 2, 'Only two tables returned.');
$pattern = '/data-acquia-lift-campaign=\\"([a-z0-9\\_\\-]+)\\"/';
preg_match($pattern, $report, $matches);
$this
->assertEqual($matches[1], $agent_name, 'Campaign name was passed in tabular data.');
$pattern = '/data-acquia-lift-decision-name=\\"([a-z0-9\\_\\-]+)\\"/';
preg_match($pattern, $report, $matches);
$this
->assertEqual($matches[1], $first_osid, 'Decision name was passed in tabular data.');
}
public function testReadReportsFromFile() {
$this
->drupalLogin($this->managerUser);
$first_agent = 'new-test-agent';
$second_agent = 'second-test-agent';
$control_rate = 10;
$explore_rate = 30;
$this
->createTestAgent(array(
'name' => $first_agent,
'control_rate' => $control_rate,
'explore_rate' => $explore_rate,
));
// Our second agent will continu to read reports from the API when our first switches
// to reading from a file.
$this
->createTestAgent(array(
'name' => $second_agent,
'control_rate' => $control_rate,
'explore_rate' => $explore_rate,
));
$test_data = array();
// Set each agent up with an option set with 2 options, and a goal, and set it to
// running.
$option_sets = array();
foreach (array(
$first_agent,
$second_agent,
) as $i => $agent_name) {
list($option_set, $new_queue_items) = $this
->createOptionSet($i, array(
'agent' => $agent_name,
'plugin' => 'type1',
'option_ids' => array(
'option-1',
'option-2',
),
));
$option_sets[] = $option_set;
$osid = $option_set->osid;
// Add a goal.
personalize_goal_save($agent_name, 'new-goal', 1);
// We need to bypass the personalize_agent_set_status() function because it
// does the verification check, which would fail.
variable_set(_personalize_agent_get_status_variable($agent_name), PERSONALIZE_STATUS_RUNNING);
// Set the started time of the agent to now.
$agent = personalize_agent_load($agent_name);
$started = time();
$agent->started = $started;
personalize_agent_save($agent);
$report_start_date = 1407499650;
// Test to ensure that an initial report at this point returns no data.
AcquiaLiftAPI::setTestInstance();
$agent_instance = personalize_agent_load_agent($first_agent);
$report = $agent_instance
->buildCampaignReports(array(
'decision' => 'osid-' . $option_sets[0]->osid,
'start' => $report_start_date,
));
$this
->assertFalse($report['#has_data'], 'Report has no data.');
// Add some test data so that calls to get reports for this agent will
// return basic reports.
$test_data = array_merge_recursive($test_data, array(
// We need to replicate this test agent on the server so that the errors()
// check will pass.
'agents' => array(
array(
'code' => $agent_name,
),
),
'points' => array(
$agent_name => array(
$osid,
),
),
'decisions' => array(
$agent_name => array(
$osid => array(
$osid,
),
),
),
'choices' => array(
$agent_name => array(
$osid => array(
$osid => array(
'option-1',
'option-2',
),
),
),
),
'goals' => array(
$agent_name => array(
// This goal should get deleted upon sync.
'new-goal',
),
),
// Now add the reports.
'reports' => array(
$agent_name => array(
'confidence' => AcquiaLiftTestReports::getBasicConfidenceReport($agent_name),
'targeting-features' => AcquiaLiftTestReports::getBasicTargetingReport($agent_name),
'learning' => array(),
'agent-status' => AcquiaLiftTestReports::getBasicStatusReport($agent_name),
'context-filters' => AcquiaLiftTestReports::getBasicContextFilters(),
),
),
));
}
variable_set('acquia_lift_web_test_data', $test_data);
$this
->resetAll();
AcquiaLiftAPI::setTestInstance();
$agent_instance = personalize_agent_load_agent($first_agent);
// We use the date that the test report was created.
$report = $agent_instance
->buildCampaignReports(array(
'decision' => 'osid-' . $option_sets[0]->osid,
'start' => $report_start_date,
));
$this
->assertFalse($report['#has_data'], 'Empty reports have no data to show.');
// The experiment report should show that Option A has a 0% conversion rate.
$this
->assertEqual("Option A", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data']);
$this
->assertEqual("Control", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data-acquia-lift-variation-label']);
$this
->assertEqual("0%", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][2]['data']);
// The report for the second agent will be identical
$agent_instance = personalize_agent_load_agent($second_agent);
$report = $agent_instance
->buildCampaignReports(array(
'decision' => 'osid-' . $option_sets[0]->osid,
'start' => $report_start_date,
));
$this
->assertEqual("Option A", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data']);
$this
->assertEqual("Control", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data-acquia-lift-variation-label']);
$this
->assertEqual("0%", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][2]['data']);
$agent_instance = NULL;
$this
->resetAll();
// Now set the first agent to use a report from a file.
$path = drupal_get_path('module', 'acquia_lift');
variable_set("acquia_lift_report_source_{$first_agent}", "/" . $path . '/tests/test_reports.json');
$agent_instance = personalize_agent_load_agent($first_agent);
$report = $agent_instance
->buildCampaignReports(array(
'decision' => 'osid-' . $option_sets[0]->osid,
'start' => $report_start_date,
));
$this
->assertTrue($report['#has_data'], 'Report data file indicates data to show.');
// Now the experiment report should show that Option A has a conversion rate of .19%
$this
->assertEqual("osid-76:Option A", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data']);
$this
->assertEqual("Control", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data-acquia-lift-variation-label']);
$this
->assertEqual("0.19%", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][2]['data']);
// The "Winner" flag should appear in the third option's last column, but
// nowhere else.
$this
->assertEqual('<span class="lift-winner">Winner</span>', $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][2]['data'][5]);
foreach (array(
0,
1,
3,
4,
) as $variation_index) {
$this
->assertEqual('', $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][$variation_index]['data'][5]);
}
// The report for the second agent should still show the basic report data.
$agent_instance = personalize_agent_load_agent($second_agent);
$report = $agent_instance
->buildCampaignReports(array(
'decision' => 'osid-' . $option_sets[0]->osid,
'start' => $report_start_date,
));
$this
->assertFalse($report['#has_data'], 'Empty report data still indicates no data to show.');
$this
->assertEqual("Option A", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data']);
$this
->assertEqual("Control", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][0]['data-acquia-lift-variation-label']);
$this
->assertEqual("0%", $report['experiment']['reports']['conversion']['reports']['summary']['summary_holder']['summary_table']['#rows'][0]['data'][2]['data']);
}
function testReportEndDate() {
$this
->drupalLogin($this->managerUser);
module_load_include('inc', 'acquia_lift', 'acquia_lift.admin');
$agent_name = 'new-test-agent';
$control_rate = 10;
$explore_rate = 30;
$this
->createTestAgent(array(
'name' => $agent_name,
'control_rate' => $control_rate,
'explore_rate' => $explore_rate,
));
// Set the agent up with an option set with 2 options, and a goal, and set it to
// running.
list($option_set, $new_queue_items) = $this
->createOptionSet(0, array(
'agent' => $agent_name,
'plugin' => 'type1',
'option_ids' => array(
'option-1',
'option-2',
),
));
$osid = $option_set->osid;
// Add a goal.
personalize_goal_save($agent_name, 'new-goal', 1);
// We need to bypass the personalize_agent_set_status() function because it
// does the verification check, which would fail.
variable_set(_personalize_agent_get_status_variable($agent_name), PERSONALIZE_STATUS_RUNNING);
// Set the started time of the agent to 48 hours ago.
$agent = personalize_agent_load($agent_name);
$started = time() - 48 * 60 * 60;
$agent->started = $started;
personalize_agent_save($agent);
// We need to replicate this test agent on the server so that the errors()
// check will pass.
$test_data = array(
'agents' => array(
array(
'code' => $agent_name,
),
),
'points' => array(
$agent_name => array(
$osid,
),
),
'decisions' => array(
$agent_name => array(
$osid => array(
$osid,
),
),
),
'choices' => array(
$agent_name => array(
$osid => array(
$osid => array(
'option-1',
'option-2',
),
),
),
),
'goals' => array(
$agent_name => array(
// This goal should get deleted upon sync.
'new-goal',
),
),
'reports' => array(
$agent_name => array(
'confidence' => AcquiaLiftTestReports::getBasicConfidenceReport($agent_name),
'targeting-features' => AcquiaLiftTestReports::getBasicTargetingReport($agent_name),
'learning' => array(),
'agent-status' => AcquiaLiftTestReports::getBasicStatusReport($agent_name),
'context-filters' => AcquiaLiftTestReports::getBasicContextFilters(),
),
),
);
variable_set('acquia_lift_web_test_data', $test_data);
$this
->resetAll();
DummyAcquiaLiftHttpClient::clearLoggedRequests();
AcquiaLiftAPI::setTestInstance();
$agent_instance = personalize_agent_load_agent($agent_name);
$form_state = array();
$agent_data = personalize_agent_load($agent_name);
// We call the report generating function and then check the request made to the
// Lift API.
acquia_lift_report_custom(array(), $form_state, $agent_instance, $agent_data, $option_set);
$requests = DummyAcquiaLiftHttpClient::getLoggedRequests();
$start_date = date('Y-m-d', $started);
$now = time();
$end_date = date('Y-m-d', $now);
$confidence_report_uri = $requests[0]['uri'];
$pattern = "/http\\:\\/\\/api\\.example\\.com\\/test\\-owner\\-code\\/{$agent_name}\\/report\\/confidence\\/{$start_date}\\/(\\d{4}\\-\\d{2}\\-\\d{2})/";
$matches = array();
preg_match($pattern, $confidence_report_uri, $matches);
$this
->assertEqual($end_date, $matches[1]);
// Now set the campaign to completed
personalize_agent_set_status($agent_name, PERSONALIZE_STATUS_COMPLETED);
// Specify the completed time as yesterday.
$yesterday = $now - 24 * 60 * 60;
variable_set(_personalize_agent_get_stoptime_variable($agent_name), $yesterday);
$this
->resetAll();
// Clear the logged requests.
DummyAcquiaLiftHttpClient::clearLoggedRequests();
// Again call the report generating function and then check the request made to the
// Lift API. The end date should be different
acquia_lift_report_custom(array(), $form_state, $agent_instance, $agent_data, $option_set);
$requests = DummyAcquiaLiftHttpClient::getLoggedRequests();
$start_date = date('Y-m-d', $started);
$confidence_report_uri = $requests[0]['uri'];
$pattern = "/http\\:\\/\\/api\\.example\\.com\\/test\\-owner\\-code\\/{$agent_name}\\/report\\/confidence\\/{$start_date}\\/(\\d{4}\\-\\d{2}\\-\\d{2})/";
$matches = array();
preg_match($pattern, $confidence_report_uri, $matches);
$this
->assertEqual(date('Y-m-d', $yesterday), $matches[1]);
}
function testPerGoalReport() {
AcquiaLiftAPI::setTestInstance();
$agent = $this
->createTestAgent();
$this
->resetAll();
DummyAcquiaLiftHttpClient::clearLoggedRequests();
// Call the conversion report specifying a particular goal.
$agent
->buildConversionReport(array(
'goal' => 'user_login',
));
$requests = DummyAcquiaLiftHttpClient::getLoggedRequests();
$this
->assertEqual(2, count($requests));
$agent_name = $agent
->getMachineName();
$date = date('Y-m-d');
// Confirm that the report requests made include the goal in the parameters.
$summary_url = "http://api.example.com/test-owner-code/{$agent_name}/report/confidence/{$date}/{$date}?features=&apikey=test-admin-key&confidence-measure=0.95&aggregated-over-dates=true&goal=user_login&policies=explore";
$detail_url = "http://api.example.com/test-owner-code/{$agent_name}/report/confidence/{$date}/{$date}?features=&apikey=test-admin-key&confidence-measure=0.95&aggregated-over-dates=false&goal=user_login&policies=explore";
$this
->assertEqual($summary_url, $requests[0]['uri']);
$this
->assertEqual($detail_url, $requests[1]['uri']);
}
public function testReportDates() {
$this
->drupalLogin($this->managerUser);
AcquiaLiftAPI::setTestInstance();
$agents = array(
'first-agent' => array(
'num_options' => 2,
'num_days' => 12,
),
'second-agent' => array(
'num_options' => 2,
'num_days' => 30,
),
);
module_load_include('inc', 'acquia_lift', 'acquia_lift.admin');
$now = time();
foreach ($agents as $agent_name => &$agent_info) {
$agent_instance = $this
->createTestAgent(array(
'name' => $agent_name,
), TRUE, FALSE);
$agent_name = $agent_instance
->getMachineName();
$this
->createOptionSet(0, array(
'plugin' => 'some_plugin',
'agent' => $agent_name,
'num_options' => $agent_info['num_options'],
));
personalize_goal_save($agent_name, 'user_login', 1);
variable_set(_personalize_agent_get_status_variable($agent_name), PERSONALIZE_STATUS_RUNNING);
$agent = personalize_agent_load($agent_name);
$started = $now;
$agent->started = $started - $agent_info['num_days'] * 86400;
personalize_agent_save($agent);
$agent_info['report_dates'] = acquia_lift_get_report_dates_for_agent($agent);
}
// Now check that the report dates are properly adjusted for each agent.
// The first agent should show the complete history, i.e. 12 days.
$this
->assertEqual(array(
date('Y-m-d', $now - 12 * 86400),
date('Y-m-d', $now),
), $agents['first-agent']['report_dates']);
// The second agent has been runnign for 60 days but should only show 14.
$this
->assertEqual(array(
date('Y-m-d', $now - 14 * 86400),
date('Y-m-d', $now),
), $agents['second-agent']['report_dates']);
// Now set the max days to 30 instead of 14.
variable_set('acquia_lift_report_max_days', 30);
$this
->resetAll();
foreach ($agents as $agent_name => &$agent_info) {
$agent = personalize_agent_load($agent_name);
$agent_info['report_dates'] = acquia_lift_get_report_dates_for_agent($agent);
}
// The first agent should still show the complete history, i.e. 12 days.
$this
->assertEqual(array(
date('Y-m-d', $now - 12 * 86400),
date('Y-m-d', $now),
), $agents['first-agent']['report_dates']);
// The second agent should now also show the complete history, i.e. 30 days.
$this
->assertEqual(array(
date('Y-m-d', $now - 30 * 86400),
date('Y-m-d', $now),
), $agents['second-agent']['report_dates']);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AcquiaLiftWebTestBase:: |
protected | property | ||
AcquiaLiftWebTestBase:: |
protected | property | The string to use as the admin API key. | |
AcquiaLiftWebTestBase:: |
protected | property | The string to use as the owner code. | |
AcquiaLiftWebTestBase:: |
protected | property | The string to use as the runtime API key. | |
AcquiaLiftWebTestBase:: |
protected | property | The string to use as the admin API URL. | |
AcquiaLiftWebTestBase:: |
protected | property | ||
AcquiaLiftWebTestBase:: |
protected | property | ||
AcquiaLiftWebTestBase:: |
protected | function | Asserts that the expected items are in the queue. | |
AcquiaLiftWebTestBase:: |
protected | function | Helper method to configure an Acquia Lift account. | |
AcquiaLiftWebTestBase:: |
protected | function | ||
AcquiaLiftWebTestBase:: |
protected | function | Creates the required number of custom blocks. | |
AcquiaLiftWebTestBase:: |
protected | function | Help function to create and test queue creation of Personalize Agent | |
AcquiaLiftWebTestBase:: |
protected | function | Creates a user profile field which can be used for targeting. | |
AcquiaLiftWebTestBase:: |
protected | function | Helper method to move buttons names to one pace to simplify it's maintaining | |
AcquiaLiftWebTestBase:: |
public | function |
Sets up a Drupal site for running functional and integration tests. Overrides DrupalWebTestCase:: |
1 |
AcquiaLiftWebTestBase:: |
public | function |
Delete created files and temporary files directory, delete the tables created by setUp(),
and reset the database prefix. Overrides DrupalWebTestCase:: |
|
AcquiaLiftWebTestReports:: |
public static | function | ||
AcquiaLiftWebTestReports:: |
public | function | ||
AcquiaLiftWebTestReports:: |
function | |||
AcquiaLiftWebTestReports:: |
public | function | ||
AcquiaLiftWebTestReports:: |
public | function | ||
AcquiaLiftWebTestReports:: |
function | |||
DrupalTestCase:: |
protected | property | Assertions thrown in that test case. | |
DrupalTestCase:: |
protected | property | The database prefix of this test run. | |
DrupalTestCase:: |
protected | property | The original file directory, before it was changed for testing purposes. | |
DrupalTestCase:: |
public | property | Current results of this test case. | |
DrupalTestCase:: |
protected | property | Flag to indicate whether the test has been set up. | |
DrupalTestCase:: |
protected | property | ||
DrupalTestCase:: |
protected | property | ||
DrupalTestCase:: |
protected | property | This class is skipped when looking for the source of an assertion. | |
DrupalTestCase:: |
protected | property | The test run ID. | |
DrupalTestCase:: |
protected | property | Time limit for the test. | |
DrupalTestCase:: |
public | property | Whether to cache the installation part of the setUp() method. | |
DrupalTestCase:: |
public | property | Whether to cache the modules installation part of the setUp() method. | |
DrupalTestCase:: |
protected | property | URL to the verbose output file directory. | |
DrupalTestCase:: |
protected | function | Internal helper: stores the assert. | |
DrupalTestCase:: |
protected | function | Check to see if two values are equal. | |
DrupalTestCase:: |
protected | function | Check to see if a value is false (an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
protected | function | Check to see if two values are identical. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not equal. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not identical. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not false (not an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
public static | function | Delete an assertion record by message ID. | |
DrupalTestCase:: |
protected | function | Fire an error assertion. | 1 |
DrupalTestCase:: |
public | function | Handle errors during test runs. | 1 |
DrupalTestCase:: |
protected | function | Handle exceptions. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always negative. | |
DrupalTestCase:: |
public static | function | Converts a list of possible parameters into a stack of permutations. | |
DrupalTestCase:: |
protected | function | Cycles through backtrace until the first non-assertion method is found. | |
DrupalTestCase:: |
public static | function | Returns the database connection to the site running Simpletest. | |
DrupalTestCase:: |
public static | function | Store an assertion from outside the testing context. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always positive. | |
DrupalTestCase:: |
public static | function | Generates a random string containing letters and numbers. | |
DrupalTestCase:: |
public static | function | Generates a random string of ASCII characters of codes 32 to 126. | |
DrupalTestCase:: |
public | function | Run all tests in this class. | |
DrupalTestCase:: |
protected | function | Logs a verbose message in a text file. | |
DrupalWebTestCase:: |
protected | property | Additional cURL options. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The current cookie file used by cURL. | |
DrupalWebTestCase:: |
protected | property | The cookies of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The handle of the current cURL connection. | |
DrupalWebTestCase:: |
protected | property | The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The parsed version of the page. | |
DrupalWebTestCase:: |
protected | property | Whether the files were copied to the test files directory. | |
DrupalWebTestCase:: |
protected | property | The headers of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | HTTP authentication credentials (<username>:<password>). | |
DrupalWebTestCase:: |
protected | property | HTTP authentication method | |
DrupalWebTestCase:: |
protected | property | The current user logged in using the internal browser. | |
DrupalWebTestCase:: |
protected | property | The original shutdown handlers array, before it was cleaned for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The original user, before it was changed to a clean uid = 1 for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser (plain text version). | |
DrupalWebTestCase:: |
protected | property | The profile to install as a basis for testing. | 20 |
DrupalWebTestCase:: |
protected | property | The number of redirects followed during the handling of a request. | |
DrupalWebTestCase:: |
protected | property | The current session ID, if available. | |
DrupalWebTestCase:: |
protected | property | The current session name, if available. | |
DrupalWebTestCase:: |
protected | property | The URL currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists with the given name or ID. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given ID and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is found, and optional with the specified index. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is found. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the given value. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the pattern in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the string in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name or ID. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field doesn't exist or its value doesn't match, by XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is not found. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is not found. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the perl regex pattern is not present in raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page did not return the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is NOT found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is not the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found MORE THAN ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the Perl regex pattern is found in the raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page responds with the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text IS found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Helper for assertText and assertNoText. | |
DrupalWebTestCase:: |
protected | function | Asserts themed output. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found ONLY ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
DrupalWebTestCase:: |
protected | function | Pass if the internal browser's URL matches the given path. | |
DrupalWebTestCase:: |
protected | function | Builds an XPath query. | |
DrupalWebTestCase:: |
protected | function | Changes the database connection to the prefixed one. | |
DrupalWebTestCase:: |
protected | function | Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive. | |
DrupalWebTestCase:: |
protected | function | Check to make sure that the array of permissions are valid. | |
DrupalWebTestCase:: |
protected | function | Follows a link by name. | |
DrupalWebTestCase:: |
protected | function | Helper function: construct an XPath for the given set of attributes and value. | |
DrupalWebTestCase:: |
protected | function | Copy the setup cache from/to another table and files directory. | |
DrupalWebTestCase:: |
protected | function | Runs cron in the Drupal installed by Simpletest. | |
DrupalWebTestCase:: |
protected | function | Close the cURL handler and unset the handler. | |
DrupalWebTestCase:: |
protected | function | Initializes and executes a cURL request. | |
DrupalWebTestCase:: |
protected | function | Reads headers and registers errors received from the tested site. | |
DrupalWebTestCase:: |
protected | function | Initializes the cURL connection. | |
DrupalWebTestCase:: |
protected | function | Compare two files based on size and file name. | |
DrupalWebTestCase:: |
protected | function | Creates a custom content type based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a node based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a role with specified permissions. | |
DrupalWebTestCase:: |
protected | function | Create a user with a given set of permissions. | |
DrupalWebTestCase:: |
protected | function | Retrieves a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Retrieve a Drupal path or an absolute path and JSON decode the result. | |
DrupalWebTestCase:: |
protected | function | Gets the current raw HTML of requested page. | |
DrupalWebTestCase:: |
protected | function | Gets the value of an HTTP response header. If multiple requests were required to retrieve the page, only the headers from the last request will be checked by default. However, if TRUE is passed as the second argument, all requests will be processed… | |
DrupalWebTestCase:: |
protected | function | Gets the HTTP response headers of the requested page. Normally we are only interested in the headers returned by the last request. However, if a page is redirected or HTTP authentication is in use, multiple requests will be required to retrieve the… | |
DrupalWebTestCase:: |
protected | function | Gets an array containing all e-mails sent during this test case. | |
DrupalWebTestCase:: |
function | Get a node from the database based on its title. | ||
DrupalWebTestCase:: |
protected | function | Gets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Get a list files that can be used in tests. | |
DrupalWebTestCase:: |
protected | function | Generate a token for the currently logged in user. | |
DrupalWebTestCase:: |
protected | function | Retrieves only the headers for a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Log in a user with the internal browser. | |
DrupalWebTestCase:: |
protected | function | ||
DrupalWebTestCase:: |
protected | function | Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser. | |
DrupalWebTestCase:: |
protected | function | Execute an Ajax submission. | |
DrupalWebTestCase:: |
protected | function | Sets the raw HTML content. This can be useful when a page has been fetched outside of the internal browser and assertions need to be made on the returned page. | |
DrupalWebTestCase:: |
protected | function | Sets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Takes a path and returns an absolute path. | |
DrupalWebTestCase:: |
protected | function | Get all option elements, including nested options, in a select. | |
DrupalWebTestCase:: |
protected | function | Get the selected value from a select field. | |
DrupalWebTestCase:: |
protected | function | Returns the cache key used for the setup caching. | |
DrupalWebTestCase:: |
protected | function | Get the current URL from the cURL handler. | |
DrupalWebTestCase:: |
protected | function | Handle form input related to drupalPost(). Ensure that the specified fields exist and attempt to create POST data in the correct manner for the particular field type. | |
DrupalWebTestCase:: |
protected | function | Copies the cached tables and files for a cached installation setup. | |
DrupalWebTestCase:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
DrupalWebTestCase:: |
protected | function | Preload the registry from the testing site. | |
DrupalWebTestCase:: |
protected | function | Generates a database prefix for running tests. | |
DrupalWebTestCase:: |
protected | function | Prepares the current environment for running the test. | |
DrupalWebTestCase:: |
protected | function | Recursively copy one directory to another. | |
DrupalWebTestCase:: |
protected | function | Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. | 1 |
DrupalWebTestCase:: |
protected | function | Reset all data structures after having enabled new modules. | |
DrupalWebTestCase:: |
protected | function | Store the installation setup to a cache. | |
DrupalWebTestCase:: |
protected | function | Outputs to verbose the most recent $count emails sent. | |
DrupalWebTestCase:: |
protected | function | Perform an xpath search on the contents of the internal browser. The search is relative to the root element (HTML tag normally) of the page. | |
DrupalWebTestCase:: |
function |
Constructor for DrupalWebTestCase. Overrides DrupalTestCase:: |
1 |