BackdropWebTestCase::backdropGetHeader |
core/modules/simpletest/backdrop_web_test_case.php |
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… |
BackdropWebTestCase::backdropGetContent |
core/modules/simpletest/backdrop_web_test_case.php |
Gets the current raw HTML of requested page. |
BackdropWebTestCase::backdropGetAJAX |
core/modules/simpletest/backdrop_web_test_case.php |
Retrieve a Backdrop path or an absolute path and JSON decode the result. |
BackdropWebTestCase::backdropGet |
core/modules/simpletest/backdrop_web_test_case.php |
Retrieves a Backdrop path or an absolute path. |
BackdropWebTestCase::backdropCreateUser |
core/modules/simpletest/backdrop_web_test_case.php |
Create a user with a given set of permissions. |
BackdropWebTestCase::backdropCreateRole |
core/modules/simpletest/backdrop_web_test_case.php |
Creates a role with specified permissions. |
BackdropWebTestCase::backdropCreateNode |
core/modules/simpletest/backdrop_web_test_case.php |
Creates a node based on default settings. |
BackdropWebTestCase::backdropCreateContentType |
core/modules/simpletest/backdrop_web_test_case.php |
Creates a custom content type based on default settings. |
BackdropWebTestCase::backdropCompareFiles |
core/modules/simpletest/backdrop_web_test_case.php |
Compare two files based on size and file name. |
BackdropWebTestCase::assertWatchdogMessage |
core/modules/simpletest/backdrop_web_test_case.php |
Verifies that a watchdog message has been entered. |
BackdropWebTestCase::assertUrl |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the internal browser's URL matches the given path. |
BackdropWebTestCase::assertUniqueTextHelper |
core/modules/simpletest/backdrop_web_test_case.php |
Helper for assertUniqueText and assertNoUniqueText. |
BackdropWebTestCase::assertUniqueText |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the text is found ONLY ONCE on the text version of the page. |
BackdropWebTestCase::assertTitle |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the page title is the given string. |
BackdropWebTestCase::assertThemeOutput |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts themed output. |
BackdropWebTestCase::assertTextHelper |
core/modules/simpletest/backdrop_web_test_case.php |
Helper for assertText and assertNoText. |
BackdropWebTestCase::assertText |
core/modules/simpletest/backdrop_web_test_case.php |
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. |
BackdropWebTestCase::assertResponse |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts the page responds with the specified response code. |
BackdropWebTestCase::assertRaw |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the raw text IS found on the loaded page, fail otherwise. Raw text
refers to the raw HTML that the page generated. |
BackdropWebTestCase::assertPattern |
core/modules/simpletest/backdrop_web_test_case.php |
Will trigger a pass if the Perl regex pattern is found in the raw content. |
BackdropWebTestCase::assertOptionSelected |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a select option in the current page is checked. |
BackdropWebTestCase::assertOption |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a select option in the current page exists. |
BackdropWebTestCase::assertNoUniqueText |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the text is found MORE THAN ONCE on the text version of the page. |
BackdropWebTestCase::assertNoTitle |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if the page title is not the given string. |
BackdropWebTestCase::assertNoText |
core/modules/simpletest/backdrop_web_test_case.php |
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. |
BackdropWebTestCase::assertNoResponse |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts the page did not return the specified response code. |
BackdropWebTestCase::assertNoRaw |
core/modules/simpletest/backdrop_web_test_case.php |
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. |
BackdropWebTestCase::assertNoPattern |
core/modules/simpletest/backdrop_web_test_case.php |
Will trigger a pass if the perl regex pattern is not present in raw content. |
BackdropWebTestCase::assertNoOptionSelected |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a select option in the current page is not checked. |
BackdropWebTestCase::assertNoOption |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a select option in the current page does not exist. |
BackdropWebTestCase::assertNoLinkByHref |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if a link containing a given href (part) is not found. |
BackdropWebTestCase::assertNoLink |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if a link with the specified label is not found. |
BackdropWebTestCase::assertNoFieldChecked |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a checkbox field in the current page is not checked. |
BackdropWebTestCase::assertNoFieldByXPath |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field does not exist in the current page by the given XPath. |
BackdropWebTestCase::assertNoFieldByName |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field does not exist with the given name and value. |
BackdropWebTestCase::assertNoFieldById |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field does not exist with the given id and value. |
BackdropWebTestCase::assertNoField |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field does not exist with the given name or id. |
BackdropWebTestCase::assertNoDuplicateIds |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that each HTML ID is used for just a single element. |
BackdropWebTestCase::assertMailString |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that the most recently sent email message has the string in it. |
BackdropWebTestCase::assertMailPattern |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that the most recently sent email message has the pattern in it. |
BackdropWebTestCase::assertMail |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that the most recently sent email message has the given value. |
BackdropWebTestCase::assertLinkByHref |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if a link containing a given href (part) is found. |
BackdropWebTestCase::assertLink |
core/modules/simpletest/backdrop_web_test_case.php |
Pass if a link with the specified label is found, and optional with the
specified index. |
BackdropWebTestCase::assertFieldChecked |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a checkbox field in the current page is checked. |
BackdropWebTestCase::assertFieldByXPath |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field exists in the current page by the given XPath. |
BackdropWebTestCase::assertFieldByName |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field exists in the current page with the given name and value. |
BackdropWebTestCase::assertFieldById |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field exists in the current page with the given id and value. |
BackdropWebTestCase::assertField |
core/modules/simpletest/backdrop_web_test_case.php |
Asserts that a field exists with the given name or id. |
BackdropUpdaterInterface::postUpdate |
core/includes/updater.inc |
Actions to run after an update has occurred. |
BackdropUpdaterInterface::postInstall |
core/includes/updater.inc |
Actions to run after an install has occurred. |