Mensaje de error

Warning: count(): Parameter must be an array or an object that implements Countable en _api_make_match_member_link() (línea 1230 de /home/u295177857/domains/app01.inkastattoonewjersey.com/public_html/profiles/drupalapi/modules/contrib/api/api.formatting.inc).

simpletest.test

Tests for simpletest.module.

Archivo

drupal-7.x/modules/simpletest/simpletest.test
View source
  1. <?php
  2. /**
  3. * @file
  4. * Tests for simpletest.module.
  5. */
  6. class SimpleTestFunctionalTest extends DrupalWebTestCase {
  7. /**
  8. * The results array that has been parsed by getTestResults().
  9. */
  10. protected $childTestResults;
  11. /**
  12. * Store the test ID from each test run for comparison, to ensure they are
  13. * incrementing.
  14. */
  15. protected $test_ids = array();
  16. public static function getInfo() {
  17. return array(
  18. 'name' => 'SimpleTest functionality',
  19. '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.",
  20. 'group' => 'SimpleTest'
  21. );
  22. }
  23. function setUp() {
  24. if (!$this->inCURL()) {
  25. parent::setUp('simpletest');
  26. // Create and login user
  27. $admin_user = $this->drupalCreateUser(array('administer unit tests'));
  28. $this->drupalLogin($admin_user);
  29. }
  30. else {
  31. parent::setUp('non_existent_module');
  32. }
  33. }
  34. /**
  35. * Test the internal browsers functionality.
  36. */
  37. function testInternalBrowser() {
  38. global $conf;
  39. if (!$this->inCURL()) {
  40. $this->drupalGet('node');
  41. $this->assertTrue($this->drupalGetHeader('Date'), 'An HTTP header was received.');
  42. $this->assertTitle(t('Welcome to @site-name | @site-name', array('@site-name' => variable_get('site_name', 'Drupal'))), 'Site title matches.');
  43. $this->assertNoTitle('Foo', 'Site title does not match.');
  44. // Make sure that we are locked out of the installer when prefixing
  45. // using the user-agent header. This is an important security check.
  46. global $base_url;
  47. $this->drupalGet($base_url . '/install.php', array('external' => TRUE));
  48. $this->assertResponse(403, 'Cannot access install.php with a "simpletest" user-agent header.');
  49. $user = $this->drupalCreateUser();
  50. $this->drupalLogin($user);
  51. $headers = $this->drupalGetHeaders(TRUE);
  52. $this->assertEqual(count($headers), 2, 'There was one intermediate request.');
  53. $this->assertTrue(strpos($headers[0][':status'], '302') !== FALSE, 'Intermediate response code was 302.');
  54. $this->assertFalse(empty($headers[0]['location']), 'Intermediate request contained a Location header.');
  55. $this->assertEqual($this->getUrl(), $headers[0]['location'], 'HTTP redirect was followed');
  56. $this->assertFalse($this->drupalGetHeader('Location'), 'Headers from intermediate request were reset.');
  57. $this->assertResponse(200, 'Response code from intermediate request was reset.');
  58. // Test the maximum redirection option.
  59. $this->drupalLogout();
  60. $edit = array(
  61. 'name' => $user->name,
  62. 'pass' => $user->pass_raw
  63. );
  64. variable_set('simpletest_maximum_redirects', 1);
  65. $this->drupalPost('user?destination=user/logout', $edit, t('Log in'));
  66. $headers = $this->drupalGetHeaders(TRUE);
  67. $this->assertEqual(count($headers), 2, 'Simpletest stopped following redirects after the first one.');
  68. }
  69. }
  70. /**
  71. * Test validation of the User-Agent header we use to perform test requests.
  72. */
  73. function testUserAgentValidation() {
  74. if (!$this->inCURL()) {
  75. global $base_url;
  76. $simpletest_path = $base_url . '/' . drupal_get_path('module', 'simpletest');
  77. $HTTP_path = $simpletest_path .'/tests/http.php?q=node';
  78. $https_path = $simpletest_path .'/tests/https.php?q=node';
  79. // Generate a valid simpletest User-Agent to pass validation.
  80. $this->assertTrue(preg_match('/simpletest\d+/', $this->databasePrefix, $matches), 'Database prefix contains simpletest prefix.');
  81. $test_ua = drupal_generate_test_ua($matches[0]);
  82. $this->additionalCurlOptions = array(CURLOPT_USERAGENT => $test_ua);
  83. // Test pages only available for testing.
  84. $this->drupalGet($HTTP_path);
  85. $this->assertResponse(200, 'Requesting http.php with a legitimate simpletest User-Agent returns OK.');
  86. $this->drupalGet($https_path);
  87. $this->assertResponse(200, 'Requesting https.php with a legitimate simpletest User-Agent returns OK.');
  88. // Now slightly modify the HMAC on the header, which should not validate.
  89. $this->additionalCurlOptions = array(CURLOPT_USERAGENT => $test_ua . 'X');
  90. $this->drupalGet($HTTP_path);
  91. $this->assertResponse(403, 'Requesting http.php with a bad simpletest User-Agent fails.');
  92. $this->drupalGet($https_path);
  93. $this->assertResponse(403, 'Requesting https.php with a bad simpletest User-Agent fails.');
  94. // Use a real User-Agent and verify that the special files http.php and
  95. // https.php can't be accessed.
  96. $this->additionalCurlOptions = array(CURLOPT_USERAGENT => 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12');
  97. $this->drupalGet($HTTP_path);
  98. $this->assertResponse(403, 'Requesting http.php with a normal User-Agent fails.');
  99. $this->drupalGet($https_path);
  100. $this->assertResponse(403, 'Requesting https.php with a normal User-Agent fails.');
  101. }
  102. }
  103. /**
  104. * Make sure that tests selected through the web interface are run and
  105. * that the results are displayed correctly.
  106. */
  107. function testWebTestRunner() {
  108. $this->pass = t('SimpleTest pass.');
  109. $this->fail = t('SimpleTest fail.');
  110. $this->valid_permission = 'access content';
  111. $this->invalid_permission = 'invalid permission';
  112. if ($this->inCURL()) {
  113. // Only run following code if this test is running itself through a CURL request.
  114. $this->stubTest();
  115. }
  116. else {
  117. // Run twice so test_ids can be accumulated.
  118. for ($i = 0; $i < 2; $i++) {
  119. // Run this test from web interface.
  120. $this->drupalGet('admin/config/development/testing');
  121. $edit = array();
  122. $edit['SimpleTestFunctionalTest'] = TRUE;
  123. $this->drupalPost(NULL, $edit, t('Run tests'));
  124. // Parse results and confirm that they are correct.
  125. $this->getTestResults();
  126. $this->confirmStubTestResults();
  127. }
  128. // Regression test for #290316.
  129. // Check that test_id is incrementing.
  130. $this->assertTrue($this->test_ids[0] != $this->test_ids[1], 'Test ID is incrementing.');
  131. }
  132. }
  133. /**
  134. * Test to be run and the results confirmed.
  135. */
  136. function stubTest() {
  137. $this->pass($this->pass);
  138. $this->fail($this->fail);
  139. $this->drupalCreateUser(array($this->valid_permission));
  140. $this->drupalCreateUser(array($this->invalid_permission));
  141. $this->pass(t('Test ID is @id.', array('@id' => $this->testId)));
  142. // Generates a warning.
  143. $i = 1 / 0;
  144. // Call an assert function specific to that class.
  145. $this->assertNothing();
  146. // Generates a warning inside a PHP function.
  147. array_key_exists(NULL, NULL);
  148. debug('Foo', 'Debug');
  149. }
  150. /**
  151. * Assert nothing.
  152. */
  153. function assertNothing() {
  154. $this->pass("This is nothing.");
  155. }
  156. /**
  157. * Confirm that the stub test produced the desired results.
  158. */
  159. function confirmStubTestResults() {
  160. $this->assertAssertion(t('Enabled modules: %modules', array('%modules' => 'non_existent_module')), 'Other', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->setUp()');
  161. $this->assertAssertion($this->pass, 'Other', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  162. $this->assertAssertion($this->fail, 'Other', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  163. $this->assertAssertion(t('Created permissions: @perms', array('@perms' => $this->valid_permission)), 'Role', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  164. $this->assertAssertion(t('Invalid permission %permission.', array('%permission' => $this->invalid_permission)), 'Role', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  165. // Check that a warning is caught by simpletest.
  166. $this->assertAssertion('Division by zero', 'Warning', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  167. // Check that the backtracing code works for specific assert function.
  168. $this->assertAssertion('This is nothing.', 'Other', 'Pass', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  169. // Check that errors that occur inside PHP internal functions are correctly reported.
  170. // The exact error message differs between PHP versions so we check only
  171. // the function name 'array_key_exists'.
  172. $this->assertAssertion('array_key_exists', 'Warning', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  173. $this->assertAssertion("Debug: 'Foo'", 'Debug', 'Fail', 'simpletest.test', 'SimpleTestFunctionalTest->stubTest()');
  174. $this->assertEqual('6 passes, 5 fails, 2 exceptions, and 1 debug message', $this->childTestResults['summary'], 'Stub test summary is correct');
  175. $this->test_ids[] = $test_id = $this->getTestIdFromResults();
  176. $this->assertTrue($test_id, 'Found test ID in results.');
  177. }
  178. /**
  179. * Fetch the test id from the test results.
  180. */
  181. function getTestIdFromResults() {
  182. foreach ($this->childTestResults['assertions'] as $assertion) {
  183. if (preg_match('@^Test ID is ([0-9]*)\.$@', $assertion['message'], $matches)) {
  184. return $matches[1];
  185. }
  186. }
  187. return NULL;
  188. }
  189. /**
  190. * Assert that an assertion with the specified values is displayed
  191. * in the test results.
  192. *
  193. * @param string $message Assertion message.
  194. * @param string $type Assertion type.
  195. * @param string $status Assertion status.
  196. * @param string $file File where the assertion originated.
  197. * @param string $functuion Function where the assertion originated.
  198. * @return Assertion result.
  199. */
  200. function assertAssertion($message, $type, $status, $file, $function) {
  201. $message = trim(strip_tags($message));
  202. $found = FALSE;
  203. foreach ($this->childTestResults['assertions'] as $assertion) {
  204. if ((strpos($assertion['message'], $message) !== FALSE) &&
  205. $assertion['type'] == $type &&
  206. $assertion['status'] == $status &&
  207. $assertion['file'] == $file &&
  208. $assertion['function'] == $function) {
  209. $found = TRUE;
  210. break;
  211. }
  212. }
  213. return $this->assertTrue($found, format_string('Found assertion {"@message", "@type", "@status", "@file", "@function"}.', array('@message' => $message, '@type' => $type, '@status' => $status, "@file" => $file, "@function" => $function)));
  214. }
  215. /**
  216. * Get the results from a test and store them in the class array $results.
  217. */
  218. function getTestResults() {
  219. $results = array();
  220. if ($this->parse()) {
  221. if ($fieldset = $this->getResultFieldSet()) {
  222. // Code assumes this is the only test in group.
  223. $results['summary'] = $this->asText($fieldset->div->div[1]);
  224. $results['name'] = $this->asText($fieldset->legend);
  225. $results['assertions'] = array();
  226. $tbody = $fieldset->div->table->tbody;
  227. foreach ($tbody->tr as $row) {
  228. $assertion = array();
  229. $assertion['message'] = $this->asText($row->td[0]);
  230. $assertion['type'] = $this->asText($row->td[1]);
  231. $assertion['file'] = $this->asText($row->td[2]);
  232. $assertion['line'] = $this->asText($row->td[3]);
  233. $assertion['function'] = $this->asText($row->td[4]);
  234. $ok_url = file_create_url('misc/watchdog-ok.png');
  235. $assertion['status'] = ($row->td[5]->img['src'] == $ok_url) ? 'Pass' : 'Fail';
  236. $results['assertions'][] = $assertion;
  237. }
  238. }
  239. }
  240. $this->childTestResults = $results;
  241. }
  242. /**
  243. * Get the fieldset containing the results for group this test is in.
  244. */
  245. function getResultFieldSet() {
  246. $fieldsets = $this->xpath('//fieldset');
  247. $info = $this->getInfo();
  248. foreach ($fieldsets as $fieldset) {
  249. if ($this->asText($fieldset->legend) == $info['name']) {
  250. return $fieldset;
  251. }
  252. }
  253. return FALSE;
  254. }
  255. /**
  256. * Extract the text contained by the element.
  257. *
  258. * @param $element
  259. * Element to extract text from.
  260. * @return
  261. * Extracted text.
  262. */
  263. function asText(SimpleXMLElement $element) {
  264. if (!is_object($element)) {
  265. return $this->fail('The element is not an element.');
  266. }
  267. return trim(html_entity_decode(strip_tags($element->asXML())));
  268. }
  269. /**
  270. * Check if the test is being run from inside a CURL request.
  271. */
  272. function inCURL() {
  273. return (bool) drupal_valid_test_ua();
  274. }
  275. }
  276. /**
  277. * Test internal testing framework browser.
  278. */
  279. class SimpleTestBrowserTestCase extends DrupalWebTestCase {
  280. public static function getInfo() {
  281. return array(
  282. 'name' => 'SimpleTest browser',
  283. 'description' => 'Test the internal browser of the testing framework.',
  284. 'group' => 'SimpleTest',
  285. );
  286. }
  287. function setUp() {
  288. parent::setUp();
  289. variable_set('user_register', USER_REGISTER_VISITORS);
  290. }
  291. /**
  292. * Test DrupalWebTestCase::getAbsoluteUrl().
  293. */
  294. function testGetAbsoluteUrl() {
  295. // Testbed runs with Clean URLs disabled, so disable it here.
  296. variable_set('clean_url', 0);
  297. $url = 'user/login';
  298. $this->drupalGet($url);
  299. $absolute = url($url, array('absolute' => TRUE));
  300. $this->assertEqual($absolute, $this->url, 'Passed and requested URL are equal.');
  301. $this->assertEqual($this->url, $this->getAbsoluteUrl($this->url), 'Requested and returned absolute URL are equal.');
  302. $this->drupalPost(NULL, array(), t('Log in'));
  303. $this->assertEqual($absolute, $this->url, 'Passed and requested URL are equal.');
  304. $this->assertEqual($this->url, $this->getAbsoluteUrl($this->url), 'Requested and returned absolute URL are equal.');
  305. $this->clickLink('Create new account');
  306. $url = 'user/register';
  307. $absolute = url($url, array('absolute' => TRUE));
  308. $this->assertEqual($absolute, $this->url, 'Passed and requested URL are equal.');
  309. $this->assertEqual($this->url, $this->getAbsoluteUrl($this->url), 'Requested and returned absolute URL are equal.');
  310. }
  311. /**
  312. * Tests XPath escaping.
  313. */
  314. function testXPathEscaping() {
  315. $testpage = <<< EOF
  316. <html>
  317. <body>
  318. <a href="link1">A "weird" link, just to bother the dumb "XPath 1.0"</a>
  319. <a href="link2">A second "even more weird" link, in memory of George O'Malley</a>
  320. </body>
  321. </html>
  322. EOF;
  323. $this->drupalSetContent($testpage);
  324. // Matches the first link.
  325. $urls = $this->xpath('//a[text()=:text]', array(':text' => 'A "weird" link, just to bother the dumb "XPath 1.0"'));
  326. $this->assertEqual($urls[0]['href'], 'link1', 'Match with quotes.');
  327. $urls = $this->xpath('//a[text()=:text]', array(':text' => 'A second "even more weird" link, in memory of George O\'Malley'));
  328. $this->assertEqual($urls[0]['href'], 'link2', 'Match with mixed single and double quotes.');
  329. }
  330. }
  331. class SimpleTestMailCaptureTestCase extends DrupalWebTestCase {
  332. /**
  333. * Implement getInfo().
  334. */
  335. public static function getInfo() {
  336. return array(
  337. 'name' => 'SimpleTest e-mail capturing',
  338. 'description' => 'Test the SimpleTest e-mail capturing logic, the assertMail assertion and the drupalGetMails function.',
  339. 'group' => 'SimpleTest',
  340. );
  341. }
  342. /**
  343. * Test to see if the wrapper function is executed correctly.
  344. */
  345. function testMailSend() {
  346. // Create an e-mail.
  347. $subject = $this->randomString(64);
  348. $body = $this->randomString(128);
  349. $message = array(
  350. 'id' => 'drupal_mail_test',
  351. 'headers' => array('Content-type'=> 'text/html'),
  352. 'subject' => $subject,
  353. 'to' => 'foobar@example.com',
  354. 'body' => $body,
  355. );
  356. // Before we send the e-mail, drupalGetMails should return an empty array.
  357. $captured_emails = $this->drupalGetMails();
  358. $this->assertEqual(count($captured_emails), 0, 'The captured e-mails queue is empty.', 'E-mail');
  359. // Send the e-mail.
  360. $response = drupal_mail_system('simpletest', 'drupal_mail_test')->mail($message);
  361. // Ensure that there is one e-mail in the captured e-mails array.
  362. $captured_emails = $this->drupalGetMails();
  363. $this->assertEqual(count($captured_emails), 1, 'One e-mail was captured.', 'E-mail');
  364. // Assert that the e-mail was sent by iterating over the message properties
  365. // and ensuring that they are captured intact.
  366. foreach ($message as $field => $value) {
  367. $this->assertMail($field, $value, format_string('The e-mail was sent and the value for property @field is intact.', array('@field' => $field)), 'E-mail');
  368. }
  369. // Send additional e-mails so more than one e-mail is captured.
  370. for ($index = 0; $index < 5; $index++) {
  371. $message = array(
  372. 'id' => 'drupal_mail_test_' . $index,
  373. 'headers' => array('Content-type'=> 'text/html'),
  374. 'subject' => $this->randomString(64),
  375. 'to' => $this->randomName(32) . '@example.com',
  376. 'body' => $this->randomString(512),
  377. );
  378. drupal_mail_system('drupal_mail_test', $index)->mail($message);
  379. }
  380. // There should now be 6 e-mails captured.
  381. $captured_emails = $this->drupalGetMails();
  382. $this->assertEqual(count($captured_emails), 6, 'All e-mails were captured.', 'E-mail');
  383. // Test different ways of getting filtered e-mails via drupalGetMails().
  384. $captured_emails = $this->drupalGetMails(array('id' => 'drupal_mail_test'));
  385. $this->assertEqual(count($captured_emails), 1, 'Only one e-mail is returned when filtering by id.', 'E-mail');
  386. $captured_emails = $this->drupalGetMails(array('id' => 'drupal_mail_test', 'subject' => $subject));
  387. $this->assertEqual(count($captured_emails), 1, 'Only one e-mail is returned when filtering by id and subject.', 'E-mail');
  388. $captured_emails = $this->drupalGetMails(array('id' => 'drupal_mail_test', 'subject' => $subject, 'from' => 'this_was_not_used@example.com'));
  389. $this->assertEqual(count($captured_emails), 0, 'No e-mails are returned when querying with an unused from address.', 'E-mail');
  390. // Send the last e-mail again, so we can confirm that the drupalGetMails-filter
  391. // correctly returns all e-mails with a given property/value.
  392. drupal_mail_system('drupal_mail_test', $index)->mail($message);
  393. $captured_emails = $this->drupalGetMails(array('id' => 'drupal_mail_test_4'));
  394. $this->assertEqual(count($captured_emails), 2, 'All e-mails with the same id are returned when filtering by id.', 'E-mail');
  395. }
  396. }
  397. /**
  398. * Test Folder creation
  399. */
  400. class SimpleTestFolderTestCase extends DrupalWebTestCase {
  401. public static function getInfo() {
  402. return array(
  403. 'name' => 'Testing SimpleTest setUp',
  404. 'description' => "This test will check SimpleTest's treatment of hook_install during setUp. Image module is used for test.",
  405. 'group' => 'SimpleTest',
  406. );
  407. }
  408. function setUp() {
  409. return parent::setUp('image');
  410. }
  411. function testFolderSetup() {
  412. $directory = file_default_scheme() . '://styles';
  413. $this->assertTrue(file_prepare_directory($directory, FALSE), 'Directory created.');
  414. }
  415. }
  416. /**
  417. * Test required modules for tests.
  418. */
  419. class SimpleTestMissingDependentModuleUnitTest extends DrupalUnitTestCase {
  420. public static function getInfo() {
  421. return array(
  422. 'name' => 'Testing dependent module test',
  423. 'description' => 'This test should not load since it requires a module that is not found.',
  424. 'group' => 'SimpleTest',
  425. 'dependencies' => array('simpletest_missing_module'),
  426. );
  427. }
  428. /**
  429. * Ensure that this test will not be loaded despite its dependency.
  430. */
  431. function testFail() {
  432. $this->fail(t('Running test with missing required module.'));
  433. }
  434. }
  435. /**
  436. * Tests a test case that does not run parent::setUp() in its setUp() method.
  437. *
  438. * If a test case does not call parent::setUp(), running
  439. * DrupalTestCase::tearDown() would destroy the main site's database tables.
  440. * Therefore, we ensure that tests which are not set up properly are skipped.
  441. *
  442. * @see DrupalTestCase
  443. */
  444. class SimpleTestBrokenSetUp extends DrupalWebTestCase {
  445. public static function getInfo() {
  446. return array(
  447. 'name' => 'Broken SimpleTest method',
  448. 'description' => 'Tests a test case that does not call parent::setUp().',
  449. 'group' => 'SimpleTest'
  450. );
  451. }
  452. function setUp() {
  453. // If the test is being run from the main site, set up normally.
  454. if (!drupal_valid_test_ua()) {
  455. parent::setUp('simpletest');
  456. // Create and log in user.
  457. $admin_user = $this->drupalCreateUser(array('administer unit tests'));
  458. $this->drupalLogin($admin_user);
  459. }
  460. // If the test is being run from within simpletest, set up the broken test.
  461. else {
  462. $this->pass(t('The test setUp() method has been run.'));
  463. // Don't call parent::setUp(). This should trigger an error message.
  464. }
  465. }
  466. function tearDown() {
  467. // If the test is being run from the main site, tear down normally.
  468. if (!drupal_valid_test_ua()) {
  469. parent::tearDown();
  470. }
  471. else {
  472. // If the test is being run from within simpletest, output a message.
  473. $this->pass(t('The tearDown() method has run.'));
  474. }
  475. }
  476. /**
  477. * Runs this test case from within the simpletest child site.
  478. */
  479. function testBreakSetUp() {
  480. // If the test is being run from the main site, run it again from the web
  481. // interface within the simpletest child site.
  482. if (!drupal_valid_test_ua()) {
  483. $edit['SimpleTestBrokenSetUp'] = TRUE;
  484. $this->drupalPost('admin/config/development/testing', $edit, t('Run tests'));
  485. // Verify that the broken test and its tearDown() method are skipped.
  486. $this->assertRaw(t('The test setUp() method has been run.'));
  487. $this->assertRaw(t('The test cannot be executed because it has not been set up properly.'));
  488. $this->assertNoRaw(t('The test method has run.'));
  489. $this->assertNoRaw(t('The tearDown() method has run.'));
  490. }
  491. // If the test is being run from within simpletest, output a message.
  492. else {
  493. $this->pass(t('The test method has run.'));
  494. }
  495. }
  496. }
  497. /**
  498. * Verifies that tests bundled with installation profile modules are found.
  499. */
  500. class SimpleTestInstallationProfileModuleTestsTestCase extends DrupalWebTestCase {
  501. /**
  502. * Use the Testing profile.
  503. *
  504. * The Testing profile contains drupal_system_listing_compatible_test.test,
  505. * which attempts to:
  506. * - run tests using the Minimal profile (which does not contain the
  507. * drupal_system_listing_compatible_test.module)
  508. * - but still install the drupal_system_listing_compatible_test.module
  509. * contained in the Testing profile.
  510. *
  511. * @see DrupalSystemListingCompatibleTestCase
  512. */
  513. protected $profile = 'testing';
  514. public static function getInfo() {
  515. return array(
  516. 'name' => 'Installation profile module tests',
  517. 'description' => 'Verifies that tests bundled with installation profile modules are found.',
  518. 'group' => 'SimpleTest',
  519. );
  520. }
  521. function setUp() {
  522. parent::setUp(array('simpletest'));
  523. $this->admin_user = $this->drupalCreateUser(array('administer unit tests'));
  524. $this->drupalLogin($this->admin_user);
  525. }
  526. /**
  527. * Tests existence of test case located in an installation profile module.
  528. */
  529. function testInstallationProfileTests() {
  530. $this->drupalGet('admin/config/development/testing');
  531. $this->assertText('Installation profile module tests helper');
  532. $edit = array(
  533. 'DrupalSystemListingCompatibleTestCase' => TRUE,
  534. );
  535. $this->drupalPost(NULL, $edit, t('Run tests'));
  536. $this->assertText('DrupalSystemListingCompatibleTestCase test executed.');
  537. }
  538. }
  539. /**
  540. * Verifies that tests in other installation profiles are not found.
  541. *
  542. * @see SimpleTestInstallationProfileModuleTestsTestCase
  543. */
  544. class SimpleTestOtherInstallationProfileModuleTestsTestCase extends DrupalWebTestCase {
  545. /**
  546. * Use the Minimal profile.
  547. *
  548. * The Testing profile contains drupal_system_listing_compatible_test.test,
  549. * which should not be found.
  550. *
  551. * @see SimpleTestInstallationProfileModuleTestsTestCase
  552. * @see DrupalSystemListingCompatibleTestCase
  553. */
  554. protected $profile = 'minimal';
  555. public static function getInfo() {
  556. return array(
  557. 'name' => 'Other Installation profiles',
  558. 'description' => 'Verifies that tests in other installation profiles are not found.',
  559. 'group' => 'SimpleTest',
  560. );
  561. }
  562. function setUp() {
  563. parent::setUp(array('simpletest'));
  564. $this->admin_user = $this->drupalCreateUser(array('administer unit tests'));
  565. $this->drupalLogin($this->admin_user);
  566. }
  567. /**
  568. * Tests that tests located in another installation profile do not appear.
  569. */
  570. function testOtherInstallationProfile() {
  571. $this->drupalGet('admin/config/development/testing');
  572. $this->assertNoText('Installation profile module tests helper');
  573. }
  574. }
  575. /**
  576. * Verifies that tests in other installation profiles are not found.
  577. *
  578. * @see SimpleTestInstallationProfileModuleTestsTestCase
  579. */
  580. class SimpleTestDiscoveryTestCase extends DrupalWebTestCase {
  581. /**
  582. * Use the Testing profile.
  583. *
  584. * The Testing profile contains drupal_system_listing_compatible_test.test,
  585. * which attempts to:
  586. * - run tests using the Minimal profile (which does not contain the
  587. * drupal_system_listing_compatible_test.module)
  588. * - but still install the drupal_system_listing_compatible_test.module
  589. * contained in the Testing profile.
  590. *
  591. * @see DrupalSystemListingCompatibleTestCase
  592. */
  593. protected $profile = 'testing';
  594. public static function getInfo() {
  595. return array(
  596. 'name' => 'Discovery of test classes',
  597. 'description' => 'Verifies that tests classes are discovered and can be autoloaded (class_exists).',
  598. 'group' => 'SimpleTest',
  599. );
  600. }
  601. function setUp() {
  602. parent::setUp(array('simpletest'));
  603. $this->admin_user = $this->drupalCreateUser(array('administer unit tests'));
  604. $this->drupalLogin($this->admin_user);
  605. }
  606. /**
  607. * Test discovery of PSR-0 test classes.
  608. */
  609. function testDiscoveryFunctions() {
  610. if (version_compare(PHP_VERSION, '5.3') < 0) {
  611. // Don't expect PSR-0 tests to be discovered on older PHP versions.
  612. return;
  613. }
  614. // TODO: What if we have cached values? Do we need to force a cache refresh?
  615. $classes_all = simpletest_test_get_all();
  616. foreach (array(
  617. 'Drupal\\simpletest\\Tests\\PSR0WebTest',
  618. 'Drupal\\psr_0_test\\Tests\\ExampleTest',
  619. ) as $class) {
  620. $this->assert(!empty($classes_all['SimpleTest'][$class]), t('Class @class must be discovered by simpletest_test_get_all().', array('@class' => $class)));
  621. }
  622. }
  623. /**
  624. * Tests existence of test cases.
  625. */
  626. function testDiscovery() {
  627. $this->drupalGet('admin/config/development/testing');
  628. // Tests within enabled modules.
  629. // (without these, this test wouldn't happen in the first place, so this is
  630. // a bit pointless. We still run it for proof-of-concept.)
  631. // This one is defined in system module.
  632. $this->assertText('Drupal error handlers');
  633. // This one is defined in simpletest module.
  634. $this->assertText('Discovery of test classes');
  635. // Tests within disabled modules.
  636. if (version_compare(PHP_VERSION, '5.3') < 0) {
  637. // Don't expect PSR-0 tests to be discovered on older PHP versions.
  638. return;
  639. }
  640. // This one is provided by simpletest itself via PSR-0.
  641. $this->assertText('PSR0 web test');
  642. $this->assertText('PSR0 example test: PSR-0 in disabled modules.');
  643. $this->assertText('PSR0 example test: PSR-0 in nested subfolders.');
  644. // Test each test individually.
  645. foreach (array(
  646. 'Drupal\\psr_0_test\\Tests\\ExampleTest',
  647. 'Drupal\\psr_0_test\\Tests\\Nested\\NestedExampleTest',
  648. ) as $class) {
  649. $this->drupalGet('admin/config/development/testing');
  650. $edit = array($class => TRUE);
  651. $this->drupalPost(NULL, $edit, t('Run tests'));
  652. $this->assertText('The test run finished', t('Test @class must finish.', array('@class' => $class)));
  653. $this->assertText('1 pass, 0 fails, and 0 exceptions', t('Test @class must pass.', array('@class' => $class)));
  654. }
  655. }
  656. }

Classes

Nombreorden descendente Descripción
SimpleTestBrokenSetUp Tests a test case that does not run parent::setUp() in its setUp() method.
SimpleTestBrowserTestCase Test internal testing framework browser.
SimpleTestDiscoveryTestCase Verifies that tests in other installation profiles are not found.
SimpleTestFolderTestCase Test Folder creation
SimpleTestFunctionalTest
SimpleTestInstallationProfileModuleTestsTestCase Verifies that tests bundled with installation profile modules are found.
SimpleTestMailCaptureTestCase
SimpleTestMissingDependentModuleUnitTest Test required modules for tests.
SimpleTestOtherInstallationProfileModuleTestsTestCase Verifies that tests in other installation profiles are not found.