View source
<?php
class SimpleTestFunctionalTest extends DrupalWebTestCase {
protected $childTestResults;
protected $test_ids = array();
public static function getInfo() {
return array(
'name' => 'SimpleTest functionality',
'description' => 'Test SimpleTest\'s web interface: check that the intended tests were
run and ensure that test reports display the intended results. Also
test SimpleTest\'s internal browser and API\'s both explicitly and
implicitly.',
'group' => 'SimpleTest',
);
}
function setUp() {
if (!$this
->inCURL()) {
parent::setUp('simpletest');
$admin_user = $this
->drupalCreateUser(array(
'administer unit tests',
));
$this
->drupalLogin($admin_user);
}
else {
parent::setUp();
}
}
function testInternalBrowser() {
global $conf;
if (!$this
->inCURL()) {
$this
->drupalGet('node');
$this
->assertTrue($this
->drupalGetHeader('Date'), t('An HTTP header was received.'));
$this
->assertTitle(variable_get('site_name', 'Drupal'), t('Site title matches.'));
$this
->assertNoTitle('Foo', t('Site title does not match.'));
global $base_url;
$this
->drupalGet($base_url . '/install.php', array(
'external' => TRUE,
));
$this
->assertResponse(403, 'Cannot access install.php with a "simpletest" user-agent header.');
$user = $this
->drupalCreateUser();
$this
->drupalLogin($user);
$headers = $this
->drupalGetHeaders(TRUE);
$this
->assertEqual(count($headers), 2, t('There was one intermediate request.'));
$this
->assertTrue(strpos($headers[0][':status'], '302') !== FALSE, t('Intermediate response code was 302.'));
$this
->assertFalse(empty($headers[0]['location']), t('Intermediate request contained a Location header.'));
$this
->assertEqual($this
->getUrl(), $headers[0]['location'], t('HTTP redirect was followed'));
$this
->assertFalse($this
->drupalGetHeader('Location'), t('Headers from intermediate request were reset.'));
$this
->assertResponse(200, t('Response code from intermediate request was reset.'));
$this
->drupalLogout();
$edit = array(
'name' => $user->name,
'pass' => $user->pass_raw,
);
variable_set('simpletest_maximum_redirects', 1);
$this
->drupalPost('user', $edit, t('Log in'), array(
'query' => array(
'destination' => 'logout',
),
));
$headers = $this
->drupalGetHeaders(TRUE);
$this
->assertEqual(count($headers), 2, t('Simpletest stopped following redirects after the first one.'));
}
}
function testWebTestRunner() {
$this->pass = t('SimpleTest pass.');
$this->fail = t('SimpleTest fail.');
$this->valid_permission = 'access content';
$this->invalid_permission = 'invalid permission';
if ($this
->inCURL()) {
$this
->stubTest();
}
else {
for ($i = 0; $i < 2; $i++) {
$this
->drupalGet('admin/build/testing');
$edit = array();
$edit['SimpleTestFunctionalTest'] = TRUE;
$this
->drupalPost(NULL, $edit, t('Run tests'));
$this
->getTestResults();
$this
->confirmStubTestResults();
}
$this
->assertTrue($this->test_ids[0] != $this->test_ids[1], t('Test ID is incrementing.'));
}
}
function stubTest() {
$this
->pass($this->pass);
$this
->fail($this->fail);
$this
->drupalCreateUser(array(
$this->valid_permission,
));
$this
->drupalCreateUser(array(
$this->invalid_permission,
));
$this
->pass(t('Test ID is @id.', array(
'@id' => $this->testId,
)));
$i = 1 / 0;
$this
->assertNothing();
array_key_exists(NULL, NULL);
debug('Foo', 'Debug');
}
function assertNothing() {
$this
->pass("This is nothing.");
}
function confirmStubTestResults() {
$this
->assertAssertion($this->pass, 'Other', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion($this->fail, 'Other', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion(t('Created permissions: @perms', array(
'@perms' => $this->valid_permission,
)), 'Role', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion(t('Invalid permission %permission.', array(
'%permission' => $this->invalid_permission,
)), 'Role', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion('Division by zero', 'Warning', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion('This is nothing.', 'Other', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion('array_key_exists', 'Warning', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertAssertion("Debug: 'Foo'", 'Debug', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
$this
->assertEqual('8 passes, 2 fails, 2 exceptions, and 1 debug message', $this->childTestResults['summary'], 'Stub test summary is correct');
$this->test_ids[] = $test_id = $this
->getTestIdFromResults();
$this
->assertTrue($test_id, t('Found test ID in results.'));
}
function getTestIdFromResults() {
foreach ($this->childTestResults['assertions'] as $assertion) {
if (preg_match('@^Test ID is ([0-9]*)\\.$@', $assertion['message'], $matches)) {
return $matches[1];
}
}
return NULL;
}
function assertAssertion($message, $type, $status, $file, $function) {
$message = trim(strip_tags($message));
$found = FALSE;
foreach ($this->childTestResults['assertions'] as $assertion) {
if (strpos($assertion['message'], $message) !== FALSE && $assertion['type'] == $type && $assertion['status'] == $status && $assertion['file'] == $file && $assertion['function'] == $function) {
$found = TRUE;
break;
}
}
return $this
->assertTrue($found, t('Found assertion {"@message", "@type", "@status", "@file", "@function"}.', array(
'@message' => $message,
'@type' => $type,
'@status' => $status,
"@file" => $file,
"@function" => $function,
)));
}
function getTestResults() {
$results = array();
if ($this
->parse()) {
if ($fieldset = $this
->getResultFieldSet()) {
$results['summary'] = $this
->asText($fieldset->div[1]);
$results['name'] = $this
->asText($fieldset->legend);
$results['assertions'] = array();
$tbody = $fieldset->table->tbody;
foreach ($tbody->tr as $row) {
$assertion = array();
$assertion['message'] = $this
->asText($row->td[0]);
$assertion['type'] = $this
->asText($row->td[1]);
$assertion['file'] = $this
->asText($row->td[2]);
$assertion['line'] = $this
->asText($row->td[3]);
$assertion['function'] = $this
->asText($row->td[4]);
$ok_url = base_path() . 'misc/watchdog-ok.png';
$assertion['status'] = $row->td[5]->img['src'] == $ok_url ? 'Pass' : 'Fail';
$results['assertions'][] = $assertion;
}
}
}
$this->childTestResults = $results;
}
function getResultFieldSet() {
$fieldsets = $this
->xpath('//fieldset');
$info = $this
->getInfo();
foreach ($fieldsets as $fieldset) {
if ($this
->asText($fieldset->legend) == $info['name']) {
return $fieldset;
}
}
return FALSE;
}
function asText(SimpleXMLElement $element) {
if (!is_object($element)) {
return $this
->fail('The element is not an element.');
}
return trim(html_entity_decode(strip_tags($element
->asXML())));
}
function inCURL() {
return isset($_SERVER['HTTP_USER_AGENT']) && preg_match("/^simpletest\\d+/", $_SERVER['HTTP_USER_AGENT']);
}
}
class SimpleTestBrowserTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'SimpleTest browser',
'description' => 'Test the internal browser of the testing framework.',
'group' => 'SimpleTest',
);
}
function setUp() {
parent::setUp();
}
function testGetAbsoluteUrl() {
variable_set('clean_url', 0);
$url = 'user/login';
$this
->drupalGet($url);
$absolute = url($url, array(
'absolute' => TRUE,
));
$this
->assertEqual($absolute, $this->url, t('Passed and requested URL are equal.'));
$this
->assertEqual($this->url, $this
->getAbsoluteUrl($this->url), t('Requested and returned absolute URL are equal.'));
$this
->drupalPost(NULL, array(), t('Log in'));
$this
->assertEqual($absolute, $this->url, t('Passed and requested URL are equal.'));
$this
->assertEqual($this->url, $this
->getAbsoluteUrl($this->url), t('Requested and returned absolute URL are equal.'));
$this
->clickLink('Create new account');
$url = 'user/register';
$absolute = url($url, array(
'absolute' => TRUE,
));
$this
->assertEqual($absolute, $this->url, t('Passed and requested URL are equal.'));
$this
->assertEqual($this->url, $this
->getAbsoluteUrl($this->url), t('Requested and returned absolute URL are equal.'));
}
function testXPathEscaping() {
$testpage = <<<EOF
<html>
<body>
<a href="link1">A "weird" link, just to bother the dumb "XPath 1.0"</a>
<a href="link2">A second "even more weird" link, in memory of George O'Malley</a>
</body>
</html>
EOF;
$this
->drupalSetContent($testpage);
$urls = $this
->xpath('//a[text()=:text]', array(
':text' => 'A "weird" link, just to bother the dumb "XPath 1.0"',
));
$this
->assertEqual($urls[0]['href'], 'link1', 'Match with quotes.');
$urls = $this
->xpath('//a[text()=:text]', array(
':text' => 'A second "even more weird" link, in memory of George O\'Malley',
));
$this
->assertEqual($urls[0]['href'], 'link2', 'Match with mixed single and double quotes.');
}
}
class SimpleTestMailCaptureTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'SimpleTest e-mail capturing',
'description' => 'Test the SimpleTest e-mail capturing logic, the assertMail assertion and the drupalGetMails function.',
'group' => 'SimpleTest',
);
}
function testMailSend() {
$subject = $this
->randomString(64);
$body = $this
->randomString(128);
$message = array(
'id' => 'drupal_mail_test',
'headers' => array(
'Content-type' => 'text/html',
),
'subject' => $subject,
'to' => 'foobar@example.com',
'body' => $body,
);
$captured_emails = $this
->drupalGetMails();
$this
->assertEqual(count($captured_emails), 0, t('The captured e-mails queue is empty.'), t('E-mail'));
$response = drupal_mail('simpletest', 'drupal_mail_test', $message['to'], language_default(), $message, NULL, TRUE);
$captured_emails = $this
->drupalGetMails();
$this
->assertEqual(count($captured_emails), 1, t('One e-mail was captured.'), t('E-mail'));
foreach ($message as $field => $value) {
$this
->assertMail($field, $value, t('The e-mail was sent and the value for property @field is intact.', array(
'@field' => $field,
)), t('E-mail'));
}
for ($index = 0; $index < 5; $index++) {
$message = array(
'id' => 'drupal_mail_test_' . $index,
'headers' => array(
'Content-type' => 'text/html',
),
'subject' => $this
->randomString(64),
'to' => $this
->randomName(32) . '@example.com',
'body' => $this
->randomString(512),
);
$response = drupal_mail('simpletest', 'drupal_mail_test', $message['to'], language_default(), $message, NULL, TRUE);
}
$captured_emails = $this
->drupalGetMails();
$this
->assertEqual(count($captured_emails), 6, t('All e-mails were captured.'), t('E-mail'));
$captured_emails = $this
->drupalGetMails(array(
'id' => 'drupal_mail_test',
));
$this
->assertEqual(count($captured_emails), 1, t('Only one e-mail is returned when filtering by id.'), t('E-mail'));
$captured_emails = $this
->drupalGetMails(array(
'id' => 'drupal_mail_test',
'subject' => $subject,
));
$this
->assertEqual(count($captured_emails), 1, t('Only one e-mail is returned when filtering by id and subject.'), t('E-mail'));
$captured_emails = $this
->drupalGetMails(array(
'id' => 'drupal_mail_test',
'subject' => $subject,
'from' => 'this_was_not_used@example.com',
));
$this
->assertEqual(count($captured_emails), 0, t('No e-mails are returned when querying with an unused from address.'), t('E-mail'));
$response = drupal_mail('simpletest', $index, $message['to'], language_default(), $message, NULL, TRUE);
$captured_emails = $this
->drupalGetMails(array(
'id' => 'drupal_mail_test_4',
));
$this
->assertEqual(count($captured_emails), 2, t('All e-mails with the same id are returned when filtering by id.'), t('E-mail'));
}
}
class SimpleTestFolderTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Testing SimpleTest setUp',
'description' => "This test will check SimpleTest's treatment of hook_install during setUp.",
'group' => 'SimpleTest',
);
}
function setUp() {
parent::setUp(array(
'simpletest',
));
}
function testFolderSetup() {
$path = file_directory_path() . '/simpletest';
$this
->assertTrue(file_check_directory($path, FALSE), "Directory {$path} created.");
}
}
class SimpleTestMissingDependentModuleUnitTest extends DrupalUnitTestCase {
public static function getInfo() {
return array(
'name' => 'Testing dependent module test',
'description' => 'This test should not load since it requires a module that is not found.',
'group' => 'SimpleTest',
'dependencies' => array(
'simpletest_missing_module',
),
);
}
function testFail() {
$this
->fail(t('Running test with missing required module.'));
}
}