skipClasses[__CLASS__] = TRUE; $this->classLoader = require DRUPAL_ROOT . '/autoload.php'; } /** * Checks to see whether a block appears on the page. * * @param \Drupal\block\Entity\Block $block * The block entity to find on the page. */ protected function assertBlockAppears(Block $block) { $result = $this->findBlockInstance($block); $this->assertTrue(!empty($result), format_string('Ensure the block @id appears on the page', ['@id' => $block->id()])); } /** * Checks to see whether a block does not appears on the page. * * @param \Drupal\block\Entity\Block $block * The block entity to find on the page. */ protected function assertNoBlockAppears(Block $block) { $result = $this->findBlockInstance($block); $this->assertFalse(!empty($result), format_string('Ensure the block @id does not appear on the page', ['@id' => $block->id()])); } /** * Find a block instance on the page. * * @param \Drupal\block\Entity\Block $block * The block entity to find on the page. * * @return array * The result from the xpath query. */ protected function findBlockInstance(Block $block) { return $this->xpath('//div[@id = :id]', [':id' => 'block-' . $block->id()]); } /** * Log in a user with the internal browser. * * If a user is already logged in, then the current user is logged out before * logging in the specified user. * * Please note that neither the current user nor the passed-in user object is * populated with data of the logged in user. If you need full access to the * user object after logging in, it must be updated manually. If you also need * access to the plain-text password of the user (set by drupalCreateUser()), * e.g. to log in the same user again, then it must be re-assigned manually. * For example: * @code * // Create a user. * $account = $this->drupalCreateUser(array()); * $this->drupalLogin($account); * // Load real user object. * $pass_raw = $account->pass_raw; * $account = User::load($account->id()); * $account->pass_raw = $pass_raw; * @endcode * * @param \Drupal\Core\Session\AccountInterface $account * User object representing the user to log in. * * @see drupalCreateUser() */ protected function drupalLogin(AccountInterface $account) { if ($this->loggedInUser) { $this->drupalLogout(); } $edit = [ 'name' => $account->getUsername(), 'pass' => $account->pass_raw ]; $this->drupalPostForm('user/login', $edit, t('Log in')); // @see WebTestBase::drupalUserIsLoggedIn() if (isset($this->sessionId)) { $account->session_id = $this->sessionId; } $pass = $this->assert($this->drupalUserIsLoggedIn($account), format_string('User %name successfully logged in.', ['%name' => $account->getUsername()]), 'User login'); if ($pass) { $this->loggedInUser = $account; $this->container->get('current_user')->setAccount($account); } } /** * Returns whether a given user account is logged in. * * @param \Drupal\user\UserInterface $account * The user account object to check. */ protected function drupalUserIsLoggedIn($account) { $logged_in = FALSE; if (isset($account->session_id)) { $session_handler = $this->container->get('session_handler.storage'); $logged_in = (bool) $session_handler->read($account->session_id); } return $logged_in; } /** * Logs a user out of the internal browser and confirms. * * Confirms logout by checking the login page. */ protected function drupalLogout() { // Make a request to the logout page, and redirect to the user page, the // idea being if you were properly logged out you should be seeing a login // screen. $this->drupalGet('user/logout', ['query' => ['destination' => 'user/login']]); $this->assertResponse(200, 'User was logged out.'); $pass = $this->assertField('name', 'Username field found.', 'Logout'); $pass = $pass && $this->assertField('pass', 'Password field found.', 'Logout'); if ($pass) { // @see WebTestBase::drupalUserIsLoggedIn() unset($this->loggedInUser->session_id); $this->loggedInUser = FALSE; $this->container->get('current_user')->setAccount(new AnonymousUserSession()); } } /** * Sets up a Drupal site for running functional and integration tests. * * Installs Drupal with the installation profile specified in * \Drupal\simpletest\WebTestBase::$profile into the prefixed database. * * Afterwards, installs any additional modules specified in the static * \Drupal\simpletest\WebTestBase::$modules property of each class in the * class hierarchy. * * After installation all caches are flushed and several configuration values * are reset to the values of the parent site executing the test, since the * default values may be incompatible with the environment in which tests are * being executed. */ protected function setUp() { // Set an explicit time zone to not rely on the system one, which may vary // from setup to setup. The Australia/Sydney time zone is chosen so all // tests are run using an edge case scenario (UTC+10 and DST). This choice // is made to prevent time zone related regressions and reduce the // fragility of the testing system in general. This is also set in config in // \Drupal\simpletest\WebTestBase::initConfig(). date_default_timezone_set('Australia/Sydney'); // Preserve original batch for later restoration. $this->setBatch(); // Initialize user 1 and session name. $this->initUserSession(); // Prepare the child site settings. $this->prepareSettings(); // Execute the non-interactive installer. $this->doInstall(); // Import new settings.php written by the installer. $this->initSettings(); // Initialize the request and container post-install. $container = $this->initKernel(\Drupal::request()); // Initialize and override certain configurations. $this->initConfig($container); // Collect modules to install. $this->installModulesFromClassProperty($container); // Restore the original batch. $this->restoreBatch(); // Reset/rebuild everything. $this->rebuildAll(); } /** * Preserve the original batch, and instantiate the test batch. */ protected function setBatch() { // When running tests through the Simpletest UI (vs. on the command line), // Simpletest's batch conflicts with the installer's batch. Batch API does // not support the concept of nested batches (in which the nested is not // progressive), so we need to temporarily pretend there was no batch. // Backup the currently running Simpletest batch. $this->originalBatch = batch_get(); // Reset the static batch to remove Simpletest's batch operations. $batch = &batch_get(); $batch = []; } /** * Restore the original batch. * * @see ::setBatch */ protected function restoreBatch() { // Restore the original Simpletest batch. $batch = &batch_get(); $batch = $this->originalBatch; } /** * Queues custom translations to be written to settings.php. * * Use WebTestBase::writeCustomTranslations() to apply and write the queued * translations. * * @param string $langcode * The langcode to add translations for. * @param array $values * Array of values containing the untranslated string and its translation. * For example: * @code * array( * '' => array('Sunday' => 'domingo'), * 'Long month name' => array('March' => 'marzo'), * ); * @endcode * Pass an empty array to remove all existing custom translations for the * given $langcode. */ protected function addCustomTranslations($langcode, array $values) { // If $values is empty, then the test expects all custom translations to be // cleared. if (empty($values)) { $this->customTranslations[$langcode] = []; } // Otherwise, $values are expected to be merged into previously passed // values, while retaining keys that are not explicitly set. else { foreach ($values as $context => $translations) { foreach ($translations as $original => $translation) { $this->customTranslations[$langcode][$context][$original] = $translation; } } } } /** * Writes custom translations to the test site's settings.php. * * Use TestBase::addCustomTranslations() to queue custom translations before * calling this method. */ protected function writeCustomTranslations() { $settings = []; foreach ($this->customTranslations as $langcode => $values) { $settings_key = 'locale_custom_strings_' . $langcode; // Update in-memory settings directly. $this->settingsSet($settings_key, $values); $settings['settings'][$settings_key] = (object) [ 'value' => $values, 'required' => TRUE, ]; } // Only rewrite settings if there are any translation changes to write. if (!empty($settings)) { $this->writeSettings($settings); } } /** * Cleans up after testing. * * Deletes created files and temporary files directory, deletes the tables * created by setUp(), and resets the database prefix. */ protected function tearDown() { // Destroy the testing kernel. if (isset($this->kernel)) { $this->kernel->shutdown(); } parent::tearDown(); // Ensure that the maximum meta refresh count is reset. $this->maximumMetaRefreshCount = NULL; // Ensure that internal logged in variable and cURL options are reset. $this->loggedInUser = FALSE; $this->additionalCurlOptions = []; // Close the CURL handler and reset the cookies array used for upgrade // testing so test classes containing multiple tests are not polluted. $this->curlClose(); $this->curlCookies = []; $this->cookies = []; } /** * Initializes the cURL connection. * * If the simpletest_httpauth_credentials variable is set, this function will * add HTTP authentication headers. This is necessary for testing sites that * are protected by login credentials from public access. * See the description of $curl_options for other options. */ protected function curlInitialize() { global $base_url; if (!isset($this->curlHandle)) { $this->curlHandle = curl_init(); // Some versions/configurations of cURL break on a NULL cookie jar, so // supply a real file. if (empty($this->cookieFile)) { $this->cookieFile = $this->publicFilesDirectory . '/cookie.jar'; } $curl_options = [ CURLOPT_COOKIEJAR => $this->cookieFile, CURLOPT_URL => $base_url, CURLOPT_FOLLOWLOCATION => FALSE, CURLOPT_RETURNTRANSFER => TRUE, // Required to make the tests run on HTTPS. CURLOPT_SSL_VERIFYPEER => FALSE, // Required to make the tests run on HTTPS. CURLOPT_SSL_VERIFYHOST => FALSE, CURLOPT_HEADERFUNCTION => [&$this, 'curlHeaderCallback'], CURLOPT_USERAGENT => $this->databasePrefix, // Disable support for the @ prefix for uploading files. CURLOPT_SAFE_UPLOAD => TRUE, ]; if (isset($this->httpAuthCredentials)) { $curl_options[CURLOPT_HTTPAUTH] = $this->httpAuthMethod; $curl_options[CURLOPT_USERPWD] = $this->httpAuthCredentials; } // curl_setopt_array() returns FALSE if any of the specified options // cannot be set, and stops processing any further options. $result = curl_setopt_array($this->curlHandle, $this->additionalCurlOptions + $curl_options); if (!$result) { throw new \UnexpectedValueException('One or more cURL options could not be set.'); } } // We set the user agent header on each request so as to use the current // time and a new uniqid. curl_setopt($this->curlHandle, CURLOPT_USERAGENT, drupal_generate_test_ua($this->databasePrefix)); } /** * Initializes and executes a cURL request. * * @param $curl_options * An associative array of cURL options to set, where the keys are constants * defined by the cURL library. For a list of valid options, see * http://php.net/manual/function.curl-setopt.php * @param $redirect * FALSE if this is an initial request, TRUE if this request is the result * of a redirect. * * @return * The content returned from the call to curl_exec(). * * @see curlInitialize() */ protected function curlExec($curl_options, $redirect = FALSE) { $this->curlInitialize(); if (!empty($curl_options[CURLOPT_URL])) { // cURL incorrectly handles URLs with a fragment by including the // fragment in the request to the server, causing some web servers // to reject the request citing "400 - Bad Request". To prevent // this, we strip the fragment from the request. // TODO: Remove this for Drupal 8, since fixed in curl 7.20.0. if (strpos($curl_options[CURLOPT_URL], '#')) { $original_url = $curl_options[CURLOPT_URL]; $curl_options[CURLOPT_URL] = strtok($curl_options[CURLOPT_URL], '#'); } } $url = empty($curl_options[CURLOPT_URL]) ? curl_getinfo($this->curlHandle, CURLINFO_EFFECTIVE_URL) : $curl_options[CURLOPT_URL]; if (!empty($curl_options[CURLOPT_POST])) { // This is a fix for the Curl library to prevent Expect: 100-continue // headers in POST requests, that may cause unexpected HTTP response // codes from some webservers (like lighttpd that returns a 417 error // code). It is done by setting an empty "Expect" header field that is // not overwritten by Curl. $curl_options[CURLOPT_HTTPHEADER][] = 'Expect:'; } $cookies = []; if (!empty($this->curlCookies)) { $cookies = $this->curlCookies; } foreach ($this->extractCookiesFromRequest(\Drupal::request()) as $cookie_name => $values) { foreach ($values as $value) { $cookies[] = $cookie_name . '=' . $value; } } // Merge additional cookies in. if (!empty($cookies)) { $curl_options += [ CURLOPT_COOKIE => '', ]; // Ensure any existing cookie data string ends with the correct separator. if (!empty($curl_options[CURLOPT_COOKIE])) { $curl_options[CURLOPT_COOKIE] = rtrim($curl_options[CURLOPT_COOKIE], '; ') . '; '; } $curl_options[CURLOPT_COOKIE] .= implode('; ', $cookies) . ';'; } curl_setopt_array($this->curlHandle, $this->additionalCurlOptions + $curl_options); if (!$redirect) { // Reset headers, the session ID and the redirect counter. $this->sessionId = NULL; $this->headers = []; $this->redirectCount = 0; } $content = curl_exec($this->curlHandle); $status = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE); // cURL incorrectly handles URLs with fragments, so instead of // letting cURL handle redirects we take of them ourselves to // to prevent fragments being sent to the web server as part // of the request. // TODO: Remove this for Drupal 8, since fixed in curl 7.20.0. if (in_array($status, [300, 301, 302, 303, 305, 307]) && $this->redirectCount < $this->maximumRedirects) { if ($this->drupalGetHeader('location')) { $this->redirectCount++; $curl_options = []; $curl_options[CURLOPT_URL] = $this->drupalGetHeader('location'); $curl_options[CURLOPT_HTTPGET] = TRUE; return $this->curlExec($curl_options, TRUE); } } $this->setRawContent($content); $this->url = isset($original_url) ? $original_url : curl_getinfo($this->curlHandle, CURLINFO_EFFECTIVE_URL); $message_vars = [ '@method' => !empty($curl_options[CURLOPT_NOBODY]) ? 'HEAD' : (empty($curl_options[CURLOPT_POSTFIELDS]) ? 'GET' : 'POST'), '@url' => isset($original_url) ? $original_url : $url, '@status' => $status, '@length' => format_size(strlen($this->getRawContent())) ]; $message = SafeMarkup::format('@method @url returned @status (@length).', $message_vars); $this->assertTrue($this->getRawContent() !== FALSE, $message, 'Browser'); return $this->getRawContent(); } /** * Reads headers and registers errors received from the tested site. * * @param $curlHandler * The cURL handler. * @param $header * An header. * * @see _drupal_log_error() */ protected function curlHeaderCallback($curlHandler, $header) { // Header fields can be extended over multiple lines by preceding each // extra line with at least one SP or HT. They should be joined on receive. // Details are in RFC2616 section 4. if ($header[0] == ' ' || $header[0] == "\t") { // Normalize whitespace between chucks. $this->headers[] = array_pop($this->headers) . ' ' . trim($header); } else { $this->headers[] = $header; } // Errors are being sent via X-Drupal-Assertion-* headers, // generated by _drupal_log_error() in the exact form required // by \Drupal\simpletest\WebTestBase::error(). if (preg_match('/^X-Drupal-Assertion-[0-9]+: (.*)$/', $header, $matches)) { // Call \Drupal\simpletest\WebTestBase::error() with the parameters from // the header. call_user_func_array([&$this, 'error'], unserialize(urldecode($matches[1]))); } // Save cookies. if (preg_match('/^Set-Cookie: ([^=]+)=(.+)/', $header, $matches)) { $name = $matches[1]; $parts = array_map('trim', explode(';', $matches[2])); $value = array_shift($parts); $this->cookies[$name] = ['value' => $value, 'secure' => in_array('secure', $parts)]; if ($name === $this->getSessionName()) { if ($value != 'deleted') { $this->sessionId = $value; } else { $this->sessionId = NULL; } } } // This is required by cURL. return strlen($header); } /** * Close the cURL handler and unset the handler. */ protected function curlClose() { if (isset($this->curlHandle)) { curl_close($this->curlHandle); unset($this->curlHandle); } } /** * Returns whether the test is being executed from within a test site. * * Mainly used by recursive tests (i.e. to test the testing framework). * * @return bool * TRUE if this test was instantiated in a request within the test site, * FALSE otherwise. * * @see \Drupal\Core\DrupalKernel::bootConfiguration() */ protected function isInChildSite() { return DRUPAL_TEST_IN_CHILD_SITE; } /** * Retrieves a Drupal path or an absolute path. * * @param \Drupal\Core\Url|string $path * Drupal path or URL to load into internal browser * @param $options * Options to be forwarded to the url generator. * @param $headers * An array containing additional HTTP request headers, each formatted as * "name: value". * * @return string * The retrieved HTML string, also available as $this->getRawContent() */ protected function drupalGet($path, array $options = [], array $headers = []) { // We re-using a CURL connection here. If that connection still has certain // options set, it might change the GET into a POST. Make sure we clear out // previous options. $out = $this->curlExec([CURLOPT_HTTPGET => TRUE, CURLOPT_URL => $this->buildUrl($path, $options), CURLOPT_NOBODY => FALSE, CURLOPT_HTTPHEADER => $headers]); // Ensure that any changes to variables in the other thread are picked up. $this->refreshVariables(); // Replace original page output with new output from redirected page(s). if ($new = $this->checkForMetaRefresh()) { $out = $new; // We are finished with all meta refresh redirects, so reset the counter. $this->metaRefreshCount = 0; } if ($path instanceof Url) { $path = $path->setAbsolute()->toString(TRUE)->getGeneratedUrl(); } $verbose = 'GET request to: ' . $path . '
Ending URL: ' . $this->getUrl(); if ($this->dumpHeaders) { $verbose .= '
Headers:
' . Html::escape(var_export(array_map('trim', $this->headers), TRUE)) . '
'; } $verbose .= '
' . $out; $this->verbose($verbose); return $out; } /** * Retrieves a Drupal path or an absolute path and JSON decodes the result. * * @param \Drupal\Core\Url|string $path * Drupal path or URL to request AJAX from. * @param array $options * Array of URL options. * @param array $headers * Array of headers. Eg array('Accept: application/vnd.drupal-ajax'). * * @return array * Decoded json. */ protected function drupalGetJSON($path, array $options = [], array $headers = []) { return Json::decode($this->drupalGetWithFormat($path, 'json', $options, $headers)); } /** * Retrieves a Drupal path or an absolute path for a given format. * * @param \Drupal\Core\Url|string $path * Drupal path or URL to request given format from. * @param string $format * The wanted request format. * @param array $options * Array of URL options. * @param array $headers * Array of headers. * * @return mixed * The result of the request. */ protected function drupalGetWithFormat($path, $format, array $options = [], array $headers = []) { $options += ['query' => ['_format' => $format]]; return $this->drupalGet($path, $options, $headers); } /** * Requests a path or URL in drupal_ajax format and JSON-decodes the response. * * @param \Drupal\Core\Url|string $path * Drupal path or URL to request from. * @param array $options * Array of URL options. * @param array $headers * Array of headers. * * @return array * Decoded JSON. */ protected function drupalGetAjax($path, array $options = [], array $headers = []) { if (!isset($options['query'][MainContentViewSubscriber::WRAPPER_FORMAT])) { $options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] = 'drupal_ajax'; } return Json::decode($this->drupalGetXHR($path, $options, $headers)); } /** * Requests a Drupal path or an absolute path as if it is a XMLHttpRequest. * * @param \Drupal\Core\Url|string $path * Drupal path or URL to request from. * @param array $options * Array of URL options. * @param array $headers * Array of headers. * * @return string * The retrieved content. */ protected function drupalGetXHR($path, array $options = [], array $headers = []) { $headers[] = 'X-Requested-With: XMLHttpRequest'; return $this->drupalGet($path, $options, $headers); } /** * Executes a form submission. * * It will be done as usual POST request with SimpleBrowser. * * @param \Drupal\Core\Url|string $path * Location of the post form. Either a Drupal path or an absolute path or * NULL to post to the current page. For multi-stage forms you can set the * path to NULL and have it post to the last received page. Example: * * @code * // First step in form. * $edit = array(...); * $this->drupalPostForm('some_url', $edit, t('Save')); * * // Second step in form. * $edit = array(...); * $this->drupalPostForm(NULL, $edit, t('Save')); * @endcode * @param $edit * Field data in an associative array. Changes the current input fields * (where possible) to the values indicated. * * When working with form tests, the keys for an $edit element should match * the 'name' parameter of the HTML of the form. For example, the 'body' * field for a node has the following HTML: * @code * * @endcode * When testing this field using an $edit parameter, the code becomes: * @code * $edit["body[0][value]"] = 'My test value'; * @endcode * * A checkbox can be set to TRUE to be checked and should be set to FALSE to * be unchecked. Multiple select fields can be tested using 'name[]' and * setting each of the desired values in an array: * @code * $edit = array(); * $edit['name[]'] = array('value1', 'value2'); * @endcode * @param $submit * Value of the submit button whose click is to be emulated. For example, * t('Save'). The processing of the request depends on this value. For * example, a form may have one button with the value t('Save') and another * button with the value t('Delete'), and execute different code depending * on which one is clicked. * * This function can also be called to emulate an Ajax submission. In this * case, this value needs to be an array with the following keys: * - path: A path to submit the form values to for Ajax-specific processing. * - triggering_element: If the value for the 'path' key is a generic Ajax * processing path, this needs to be set to the name of the element. If * the name doesn't identify the element uniquely, then this should * instead be an array with a single key/value pair, corresponding to the * element name and value. The \Drupal\Core\Form\FormAjaxResponseBuilder * uses this to find the #ajax information for the element, including * which specific callback to use for processing the request. * * This can also be set to NULL in order to emulate an Internet Explorer * submission of a form with a single text field, and pressing ENTER in that * textfield: under these conditions, no button information is added to the * POST data. * @param $options * Options to be forwarded to the url generator. * @param $headers * An array containing additional HTTP request headers, each formatted as * "name: value". * @param $form_html_id * (optional) HTML ID of the form to be submitted. On some pages * there are many identical forms, so just using the value of the submit * button is not enough. For example: 'trigger-node-presave-assign-form'. * Note that this is not the Drupal $form_id, but rather the HTML ID of the * form, which is typically the same thing but with hyphens replacing the * underscores. * @param $extra_post * (optional) A string of additional data to append to the POST submission. * This can be used to add POST data for which there are no HTML fields, as * is done by drupalPostAjaxForm(). This string is literally appended to the * POST data, so it must already be urlencoded and contain a leading "&" * (e.g., "&extra_var1=hello+world&extra_var2=you%26me"). */ protected function drupalPostForm($path, $edit, $submit, array $options = [], array $headers = [], $form_html_id = NULL, $extra_post = NULL) { if (is_object($submit)) { // Cast MarkupInterface objects to string. $submit = (string) $submit; } if (is_array($edit)) { $edit = $this->castSafeStrings($edit); } $submit_matches = FALSE; $ajax = is_array($submit); if (isset($path)) { $this->drupalGet($path, $options); } if ($this->parse()) { $edit_save = $edit; // Let's iterate over all the forms. $xpath = "//form"; if (!empty($form_html_id)) { $xpath .= "[@id='" . $form_html_id . "']"; } $forms = $this->xpath($xpath); foreach ($forms as $form) { // We try to set the fields of this form as specified in $edit. $edit = $edit_save; $post = []; $upload = []; $submit_matches = $this->handleForm($post, $edit, $upload, $ajax ? NULL : $submit, $form); $action = isset($form['action']) ? $this->getAbsoluteUrl((string) $form['action']) : $this->getUrl(); if ($ajax) { if (empty($submit['path'])) { throw new \Exception('No #ajax path specified.'); } $action = $this->getAbsoluteUrl($submit['path']); // Ajax callbacks verify the triggering element if necessary, so while // we may eventually want extra code that verifies it in the // handleForm() function, it's not currently a requirement. $submit_matches = TRUE; } // We post only if we managed to handle every field in edit and the // submit button matches. if (!$edit && ($submit_matches || !isset($submit))) { $post_array = $post; if ($upload) { foreach ($upload as $key => $file) { if (is_array($file) && count($file)) { // There seems to be no way via php's API to cURL to upload // several files with the same post field name. However, Drupal // still sees array-index syntax in a similar way. for ($i = 0; $i < count($file); $i++) { $postfield = str_replace('[]', '', $key) . '[' . $i . ']'; $file_path = $this->container->get('file_system')->realpath($file[$i]); $post[$postfield] = curl_file_create($file_path); } } else { $file = $this->container->get('file_system')->realpath($file); if ($file && is_file($file)) { $post[$key] = curl_file_create($file); } } } } else { $post = $this->serializePostValues($post) . $extra_post; } $out = $this->curlExec([CURLOPT_URL => $action, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => $post, CURLOPT_HTTPHEADER => $headers]); // Ensure that any changes to variables in the other thread are picked // up. $this->refreshVariables(); // Replace original page output with new output from redirected // page(s). if ($new = $this->checkForMetaRefresh()) { $out = $new; } if ($path instanceof Url) { $path = $path->toString(); } $verbose = 'POST request to: ' . $path; $verbose .= '
Ending URL: ' . $this->getUrl(); if ($this->dumpHeaders) { $verbose .= '
Headers:
' . Html::escape(var_export(array_map('trim', $this->headers), TRUE)) . '
'; } $verbose .= '
Fields: ' . highlight_string('' . $out; $this->verbose($verbose); return $out; } } // We have not found a form which contained all fields of $edit. foreach ($edit as $name => $value) { $this->fail(SafeMarkup::format('Failed to set field @name to @value', ['@name' => $name, '@value' => $value])); } if (!$ajax && isset($submit)) { $this->assertTrue($submit_matches, format_string('Found the @submit button', ['@submit' => $submit])); } $this->fail(format_string('Found the requested form fields at @path', ['@path' => ($path instanceof Url) ? $path->toString() : $path])); } } /** * Executes an Ajax form submission. * * This executes a POST as ajax.js does. The returned JSON data is used to * update $this->content via drupalProcessAjaxResponse(). It also returns * the array of AJAX commands received. * * @param \Drupal\Core\Url|string $path * Location of the form containing the Ajax enabled element to test. Can be * either a Drupal path or an absolute path or NULL to use the current page. * @param $edit * Field data in an associative array. Changes the current input fields * (where possible) to the values indicated. * @param $triggering_element * The name of the form element that is responsible for triggering the Ajax * functionality to test. May be a string or, if the triggering element is * a button, an associative array where the key is the name of the button * and the value is the button label. i.e.) array('op' => t('Refresh')). * @param $ajax_path * (optional) Override the path set by the Ajax settings of the triggering * element. * @param $options * (optional) Options to be forwarded to the url generator. * @param $headers * (optional) An array containing additional HTTP request headers, each * formatted as "name: value". Forwarded to drupalPostForm(). * @param $form_html_id * (optional) HTML ID of the form to be submitted, use when there is more * than one identical form on the same page and the value of the triggering * element is not enough to identify the form. Note this is not the Drupal * ID of the form but rather the HTML ID of the form. * @param $ajax_settings * (optional) An array of Ajax settings which if specified will be used in * place of the Ajax settings of the triggering element. * * @return * An array of Ajax commands. * * @see drupalPostForm() * @see drupalProcessAjaxResponse() * @see ajax.js */ protected function drupalPostAjaxForm($path, $edit, $triggering_element, $ajax_path = NULL, array $options = [], array $headers = [], $form_html_id = NULL, $ajax_settings = NULL) { // Get the content of the initial page prior to calling drupalPostForm(), // since drupalPostForm() replaces $this->content. if (isset($path)) { // Avoid sending the wrapper query argument to drupalGet so we can fetch // the form and populate the internal WebTest values. $get_options = $options; unset($get_options['query'][MainContentViewSubscriber::WRAPPER_FORMAT]); $this->drupalGet($path, $get_options); } $content = $this->content; $drupal_settings = $this->drupalSettings; // Provide a default value for the wrapper envelope. $options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] = isset($options['query'][MainContentViewSubscriber::WRAPPER_FORMAT]) ? $options['query'][MainContentViewSubscriber::WRAPPER_FORMAT] : 'drupal_ajax'; // Get the Ajax settings bound to the triggering element. if (!isset($ajax_settings)) { if (is_array($triggering_element)) { $xpath = '//*[@name="' . key($triggering_element) . '" and @value="' . current($triggering_element) . '"]'; } else { $xpath = '//*[@name="' . $triggering_element . '"]'; } if (isset($form_html_id)) { $xpath = '//form[@id="' . $form_html_id . '"]' . $xpath; } $element = $this->xpath($xpath); $element_id = (string) $element[0]['id']; $ajax_settings = $drupal_settings['ajax'][$element_id]; } // Add extra information to the POST data as ajax.js does. $extra_post = []; if (isset($ajax_settings['submit'])) { foreach ($ajax_settings['submit'] as $key => $value) { $extra_post[$key] = $value; } } $extra_post[AjaxResponseSubscriber::AJAX_REQUEST_PARAMETER] = 1; $extra_post += $this->getAjaxPageStatePostData(); // Now serialize all the $extra_post values, and prepend it with an '&'. $extra_post = '&' . $this->serializePostValues($extra_post); // Unless a particular path is specified, use the one specified by the // Ajax settings. if (!isset($ajax_path)) { if (isset($ajax_settings['url'])) { // In order to allow to set for example the wrapper envelope query // parameter we need to get the system path again. $parsed_url = UrlHelper::parse($ajax_settings['url']); $options['query'] = $parsed_url['query'] + $options['query']; $options += ['fragment' => $parsed_url['fragment']]; // We know that $parsed_url['path'] is already with the base path // attached. $ajax_path = preg_replace( '/^' . preg_quote(base_path(), '/') . '/', '', $parsed_url['path'] ); } } if (empty($ajax_path)) { throw new \Exception('No #ajax path specified.'); } $ajax_path = $this->container->get('unrouted_url_assembler')->assemble('base://' . $ajax_path, $options); // Submit the POST request. $return = Json::decode($this->drupalPostForm(NULL, $edit, ['path' => $ajax_path, 'triggering_element' => $triggering_element], $options, $headers, $form_html_id, $extra_post)); if ($this->assertAjaxHeader) { $this->assertIdentical($this->drupalGetHeader('X-Drupal-Ajax-Token'), '1', 'Ajax response header found.'); } // Change the page content by applying the returned commands. if (!empty($ajax_settings) && !empty($return)) { $this->drupalProcessAjaxResponse($content, $return, $ajax_settings, $drupal_settings); } $verbose = 'AJAX POST request to: ' . $path; $verbose .= '
AJAX controller path: ' . $ajax_path; $verbose .= '
Ending URL: ' . $this->getUrl(); $verbose .= '
' . $this->content; $this->verbose($verbose); return $return; } /** * Processes an AJAX response into current content. * * This processes the AJAX response as ajax.js does. It uses the response's * JSON data, an array of commands, to update $this->content using equivalent * DOM manipulation as is used by ajax.js. * It does not apply custom AJAX commands though, because emulation is only * implemented for the AJAX commands that ship with Drupal core. * * @param string $content * The current HTML content. * @param array $ajax_response * An array of AJAX commands. * @param array $ajax_settings * An array of AJAX settings which will be used to process the response. * @param array $drupal_settings * An array of settings to update the value of drupalSettings for the * currently-loaded page. * * @see drupalPostAjaxForm() * @see ajax.js */ protected function drupalProcessAjaxResponse($content, array $ajax_response, array $ajax_settings, array $drupal_settings) { // ajax.js applies some defaults to the settings object, so do the same // for what's used by this function. $ajax_settings += [ 'method' => 'replaceWith', ]; // DOM can load HTML soup. But, HTML soup can throw warnings, suppress // them. $dom = new \DOMDocument(); @$dom->loadHTML($content); // XPath allows for finding wrapper nodes better than DOM does. $xpath = new \DOMXPath($dom); foreach ($ajax_response as $command) { // Error messages might be not commands. if (!is_array($command)) { continue; } switch ($command['command']) { case 'settings': $drupal_settings = NestedArray::mergeDeepArray([$drupal_settings, $command['settings']], TRUE); break; case 'insert': $wrapperNode = NULL; // When a command doesn't specify a selector, use the // #ajax['wrapper'] which is always an HTML ID. if (!isset($command['selector'])) { $wrapperNode = $xpath->query('//*[@id="' . $ajax_settings['wrapper'] . '"]')->item(0); } // @todo Ajax commands can target any jQuery selector, but these are // hard to fully emulate with XPath. For now, just handle 'head' // and 'body', since these are used by the Ajax renderer. elseif (in_array($command['selector'], ['head', 'body'])) { $wrapperNode = $xpath->query('//' . $command['selector'])->item(0); } if ($wrapperNode) { // ajax.js adds an enclosing DIV to work around a Safari bug. $newDom = new \DOMDocument(); // DOM can load HTML soup. But, HTML soup can throw warnings, // suppress them. @$newDom->loadHTML('
' . $command['data'] . '
'); // Suppress warnings thrown when duplicate HTML IDs are encountered. // This probably means we are replacing an element with the same ID. $newNode = @$dom->importNode($newDom->documentElement->firstChild->firstChild, TRUE); $method = isset($command['method']) ? $command['method'] : $ajax_settings['method']; // The "method" is a jQuery DOM manipulation function. Emulate // each one using PHP's DOMNode API. switch ($method) { case 'replaceWith': $wrapperNode->parentNode->replaceChild($newNode, $wrapperNode); break; case 'append': $wrapperNode->appendChild($newNode); break; case 'prepend': // If no firstChild, insertBefore() falls back to // appendChild(). $wrapperNode->insertBefore($newNode, $wrapperNode->firstChild); break; case 'before': $wrapperNode->parentNode->insertBefore($newNode, $wrapperNode); break; case 'after': // If no nextSibling, insertBefore() falls back to // appendChild(). $wrapperNode->parentNode->insertBefore($newNode, $wrapperNode->nextSibling); break; case 'html': foreach ($wrapperNode->childNodes as $childNode) { $wrapperNode->removeChild($childNode); } $wrapperNode->appendChild($newNode); break; } } break; // @todo Add suitable implementations for these commands in order to // have full test coverage of what ajax.js can do. case 'remove': break; case 'changed': break; case 'css': break; case 'data': break; case 'restripe': break; case 'add_css': break; case 'update_build_id': $buildId = $xpath->query('//input[@name="form_build_id" and @value="' . $command['old'] . '"]')->item(0); if ($buildId) { $buildId->setAttribute('value', $command['new']); } break; } } $content = $dom->saveHTML(); $this->setRawContent($content); $this->setDrupalSettings($drupal_settings); } /** * Perform a POST HTTP request. * * @param string|\Drupal\Core\Url $path * Drupal path or absolute path where the request should be POSTed. * @param string $accept * The value for the "Accept" header. Usually either 'application/json' or * 'application/vnd.drupal-ajax'. * @param array $post * The POST data. When making a 'application/vnd.drupal-ajax' request, the * Ajax page state data should be included. Use getAjaxPageStatePostData() * for that. * @param array $options * (optional) Options to be forwarded to the url generator. The 'absolute' * option will automatically be enabled. * * @return * The content returned from the call to curl_exec(). * * @see WebTestBase::getAjaxPageStatePostData() * @see WebTestBase::curlExec() */ protected function drupalPost($path, $accept, array $post, $options = []) { return $this->curlExec([ CURLOPT_URL => $this->buildUrl($path, $options), CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => $this->serializePostValues($post), CURLOPT_HTTPHEADER => [ 'Accept: ' . $accept, 'Content-Type: application/x-www-form-urlencoded', ], ]); } /** * Performs a POST HTTP request with a specific format. * * @param string|\Drupal\Core\Url $path * Drupal path or absolute path where the request should be POSTed. * @param string $format * The request format. * @param array $post * The POST data. When making a 'application/vnd.drupal-ajax' request, the * Ajax page state data should be included. Use getAjaxPageStatePostData() * for that. * @param array $options * (optional) Options to be forwarded to the url generator. The 'absolute' * option will automatically be enabled. * * @return string * The content returned from the call to curl_exec(). * * @see WebTestBase::drupalPost * @see WebTestBase::getAjaxPageStatePostData() * @see WebTestBase::curlExec() */ protected function drupalPostWithFormat($path, $format, array $post, $options = []) { $options['query']['_format'] = $format; return $this->drupalPost($path, '', $post, $options); } /** * Get the Ajax page state from drupalSettings and prepare it for POSTing. * * @return array * The Ajax page state POST data. */ protected function getAjaxPageStatePostData() { $post = []; $drupal_settings = $this->drupalSettings; if (isset($drupal_settings['ajaxPageState']['theme'])) { $post['ajax_page_state[theme]'] = $drupal_settings['ajaxPageState']['theme']; } if (isset($drupal_settings['ajaxPageState']['theme_token'])) { $post['ajax_page_state[theme_token]'] = $drupal_settings['ajaxPageState']['theme_token']; } if (isset($drupal_settings['ajaxPageState']['libraries'])) { $post['ajax_page_state[libraries]'] = $drupal_settings['ajaxPageState']['libraries']; } return $post; } /** * Serialize POST HTTP request values. * * Encode according to application/x-www-form-urlencoded. Both names and * values needs to be urlencoded, according to * http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1 * * @param array $post * The array of values to be POSTed. * * @return string * The serialized result. */ protected function serializePostValues($post = []) { foreach ($post as $key => $value) { $post[$key] = urlencode($key) . '=' . urlencode($value); } return implode('&', $post); } /** * Transforms a nested array into a flat array suitable for WebTestBase::drupalPostForm(). * * @param array $values * A multi-dimensional form values array to convert. * * @return array * The flattened $edit array suitable for WebTestBase::drupalPostForm(). */ protected function translatePostValues(array $values) { $edit = []; // The easiest and most straightforward way to translate values suitable for // WebTestBase::drupalPostForm() is to actually build the POST data string // and convert the resulting key/value pairs back into a flat array. $query = http_build_query($values); foreach (explode('&', $query) as $item) { list($key, $value) = explode('=', $item); $edit[urldecode($key)] = urldecode($value); } return $edit; } /** * Checks 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. * * @return * Either the new page content or FALSE. */ protected function checkForMetaRefresh() { if (strpos($this->getRawContent(), 'parse() && (!isset($this->maximumMetaRefreshCount) || $this->metaRefreshCount < $this->maximumMetaRefreshCount)) { $refresh = $this->xpath('//meta[@http-equiv="Refresh"]'); if (!empty($refresh)) { // Parse the content attribute of the meta tag for the format: // "[delay]: URL=[page_to_redirect_to]". if (preg_match('/\d+;\s*URL=(?.*)/i', $refresh[0]['content'], $match)) { $this->metaRefreshCount++; return $this->drupalGet($this->getAbsoluteUrl(Html::decodeEntities($match['url']))); } } } return FALSE; } /** * Retrieves only the headers for a Drupal path or an absolute path. * * @param $path * Drupal path or URL to load into internal browser * @param $options * Options to be forwarded to the url generator. * @param $headers * An array containing additional HTTP request headers, each formatted as * "name: value". * * @return * The retrieved headers, also available as $this->getRawContent() */ protected function drupalHead($path, array $options = [], array $headers = []) { $options['absolute'] = TRUE; $url = $this->buildUrl($path, $options); $out = $this->curlExec([CURLOPT_NOBODY => TRUE, CURLOPT_URL => $url, CURLOPT_HTTPHEADER => $headers]); // Ensure that any changes to variables in the other thread are picked up. $this->refreshVariables(); if ($this->dumpHeaders) { $this->verbose('GET request to: ' . $path . '
Ending URL: ' . $this->getUrl() . '
Headers:
' . Html::escape(var_export(array_map('trim', $this->headers), TRUE)) . '
'); } return $out; } /** * Handles form input related to drupalPostForm(). * * Ensure that the specified fields exist and attempt to create POST data in * the correct manner for the particular field type. * * @param $post * Reference to array of post values. * @param $edit * Reference to array of edit values to be checked against the form. * @param $submit * Form submit button value. * @param $form * Array of form elements. * * @return * Submit value matches a valid submit input in the form. */ protected function handleForm(&$post, &$edit, &$upload, $submit, $form) { // Retrieve the form elements. $elements = $form->xpath('.//input[not(@disabled)]|.//textarea[not(@disabled)]|.//select[not(@disabled)]'); $submit_matches = FALSE; foreach ($elements as $element) { // SimpleXML objects need string casting all the time. $name = (string) $element['name']; // This can either be the type of or the name of the tag itself // for