protected function DrupalWebTestCase::drupalSetContent in SimpleTest 7.2
Same name and namespace in other branches
- 6.2 drupal_web_test_case.php \DrupalWebTestCase::drupalSetContent()
- 7 drupal_web_test_case.php \DrupalWebTestCase::drupalSetContent()
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.
A good example would be when testing drupal_http_request(). After fetching the page the content can be set and page elements can be checked to ensure that the function worked properly.
3 calls to DrupalWebTestCase::drupalSetContent()
- DrupalWebTestCase::curlExec in ./
drupal_web_test_case.php - Initializes and executes a cURL request.
- DrupalWebTestCase::drupalPostAJAX in ./
drupal_web_test_case.php - Execute an Ajax submission.
- SimpleTestURLTestCase::testXPathEscaping in ./
simpletest.test - Tests XPath escaping.
File
- ./
drupal_web_test_case.php, line 2679 - Provides DrupalTestCase, DrupalUnitTestCase, and DrupalWebTestCase classes.
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function drupalSetContent($content, $url = 'internal:') {
$this->content = $content;
$this->url = $url;
$this->plainTextContent = FALSE;
$this->elements = FALSE;
$this->drupalSettings = array();
if (preg_match('/jQuery\\.extend\\(Drupal\\.settings, (.*?)\\);/', $content, $matches)) {
$this->drupalSettings = drupal_json_decode($matches[1]);
}
}