12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532 |
- <?php
- namespace Drupal\KernelTests;
- use Drupal\Component\Serialization\Json;
- use Drupal\Component\Utility\Html;
- use Drupal\Component\Render\FormattableMarkup;
- use Drupal\Component\Utility\Xss;
- use Drupal\Core\Render\RenderContext;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\CssSelector\CssSelectorConverter;
- /**
- * Provides test methods to assert content.
- */
- trait AssertContentTrait {
- /**
- * The current raw content.
- *
- * @var string
- */
- protected $content;
- /**
- * The plain-text content of raw $content (text nodes).
- *
- * @var string
- */
- protected $plainTextContent;
- /**
- * The drupalSettings value from the current raw $content.
- *
- * Variable drupalSettings refers to the drupalSettings JavaScript variable.
- *
- * @var array
- */
- protected $drupalSettings;
- /**
- * The XML structure parsed from the current raw $content.
- *
- * @var \SimpleXMLElement
- */
- protected $elements;
- /**
- * Gets the current raw content.
- */
- protected function getRawContent() {
- return $this->content;
- }
- /**
- * Sets the raw content (e.g. HTML).
- *
- * @param string $content
- * The raw content to set.
- */
- protected function setRawContent($content) {
- $this->content = $content;
- $this->plainTextContent = NULL;
- $this->elements = NULL;
- $this->drupalSettings = [];
- if (preg_match('@<script type="application/json" data-drupal-selector="drupal-settings-json">([^<]*)</script>@', $content, $matches)) {
- $this->drupalSettings = Json::decode($matches[1]);
- }
- }
- /**
- * Retrieves the plain-text content from the current raw content.
- */
- protected function getTextContent() {
- if (!isset($this->plainTextContent)) {
- $raw_content = $this->getRawContent();
- // Strip everything between the HEAD tags.
- $raw_content = preg_replace('@<head>(.+?)</head>@si', '', $raw_content);
- $this->plainTextContent = Xss::filter($raw_content, []);
- }
- return $this->plainTextContent;
- }
- /**
- * Removes all white-space between HTML tags from the raw content.
- *
- * White-space is only removed if there are no non-white-space characters
- * between HTML tags.
- *
- * Use this (once) after performing an operation that sets new raw content,
- * and when you want to use e.g. assertText() but ignore potential white-space
- * caused by HTML output templates.
- */
- protected function removeWhiteSpace() {
- $this->content = preg_replace('@>\s+<@', '><', $this->content);
- $this->plainTextContent = NULL;
- $this->elements = NULL;
- }
- /**
- * Gets the value of drupalSettings for the currently-loaded page.
- *
- * Variable drupalSettings refers to the drupalSettings JavaScript variable.
- */
- protected function getDrupalSettings() {
- return $this->drupalSettings;
- }
- /**
- * Sets the value of drupalSettings for the currently-loaded page.
- *
- * Variable drupalSettings refers to the drupalSettings JavaScript variable.
- */
- protected function setDrupalSettings($settings) {
- $this->drupalSettings = $settings;
- }
- /**
- * Parse content returned from curlExec using DOM and SimpleXML.
- *
- * @return \SimpleXMLElement|false
- * A SimpleXMLElement or FALSE on failure.
- */
- protected function parse() {
- if (!isset($this->elements)) {
- // DOM can load HTML soup. But, HTML soup can throw warnings, suppress
- // them.
- $html_dom = new \DOMDocument();
- @$html_dom->loadHTML('<?xml encoding="UTF-8">' . $this->getRawContent());
- if ($html_dom) {
- $this->pass(new FormattableMarkup('Valid HTML found on "@path"', ['@path' => $this->getUrl()]), 'Browser');
- // It's much easier to work with simplexml than DOM, luckily enough
- // we can just simply import our DOM tree.
- $this->elements = simplexml_import_dom($html_dom);
- }
- }
- if ($this->elements === FALSE) {
- $this->fail('Parsed page successfully.', 'Browser');
- }
- return $this->elements;
- }
- /**
- * Get the current URL from the cURL handler.
- *
- * @return string
- * The current URL.
- */
- protected function getUrl() {
- return isset($this->url) ? $this->url : 'no-url';
- }
- /**
- * Builds an XPath query.
- *
- * Builds an XPath query by replacing placeholders in the query by the value
- * of the arguments.
- *
- * XPath 1.0 (the version supported by libxml2, the underlying XML library
- * used by PHP) doesn't support any form of quotation. This function
- * simplifies the building of XPath expression.
- *
- * @param string $xpath
- * An XPath query, possibly with placeholders in the form ':name'.
- * @param array $args
- * An array of arguments with keys in the form ':name' matching the
- * placeholders in the query. The values may be either strings or numeric
- * values.
- *
- * @return string
- * An XPath query with arguments replaced.
- */
- protected function buildXPathQuery($xpath, array $args = []) {
- // Replace placeholders.
- foreach ($args as $placeholder => $value) {
- // Cast MarkupInterface objects to string.
- if (is_object($value)) {
- $value = (string) $value;
- }
- // XPath 1.0 doesn't support a way to escape single or double quotes in a
- // string literal. We split double quotes out of the string, and encode
- // them separately.
- if (is_string($value)) {
- // Explode the text at the quote characters.
- $parts = explode('"', $value);
- // Quote the parts.
- foreach ($parts as &$part) {
- $part = '"' . $part . '"';
- }
- // Return the string.
- $value = count($parts) > 1 ? 'concat(' . implode(', \'"\', ', $parts) . ')' : $parts[0];
- }
- // Use preg_replace_callback() instead of preg_replace() to prevent the
- // regular expression engine from trying to substitute backreferences.
- $replacement = function ($matches) use ($value) {
- return $value;
- };
- $xpath = preg_replace_callback('/' . preg_quote($placeholder) . '\b/', $replacement, $xpath);
- }
- return $xpath;
- }
- /**
- * Performs an xpath search on the contents of the internal browser.
- *
- * The search is relative to the root element (HTML tag normally) of the page.
- *
- * @param string $xpath
- * The xpath string to use in the search.
- * @param array $arguments
- * An array of arguments with keys in the form ':name' matching the
- * placeholders in the query. The values may be either strings or numeric
- * values.
- *
- * @return \SimpleXMLElement[]|bool
- * The return value of the xpath search or FALSE on failure. For details on
- * the xpath string format and return values see the SimpleXML
- * documentation.
- *
- * @see http://php.net/manual/function.simplexml-element-xpath.php
- */
- protected function xpath($xpath, array $arguments = []) {
- if ($this->parse()) {
- $xpath = $this->buildXPathQuery($xpath, $arguments);
- $result = $this->elements->xpath($xpath);
- // Some combinations of PHP / libxml versions return an empty array
- // instead of the documented FALSE. Forcefully convert any falsish values
- // to an empty array to allow foreach(...) constructions.
- return $result ?: [];
- }
- return FALSE;
- }
- /**
- * Searches elements using a CSS selector in the raw content.
- *
- * The search is relative to the root element (HTML tag normally) of the page.
- *
- * @param string $selector
- * CSS selector to use in the search.
- *
- * @return \SimpleXMLElement[]
- * The return value of the XPath search performed after converting the CSS
- * selector to an XPath selector.
- */
- protected function cssSelect($selector) {
- return $this->xpath((new CssSelectorConverter())->toXPath($selector));
- }
- /**
- * Get all option elements, including nested options, in a select.
- *
- * @param \SimpleXMLElement $element
- * The element for which to get the options.
- *
- * @return \SimpleXmlElement[]
- * Option elements in select.
- */
- protected function getAllOptions(\SimpleXMLElement $element) {
- $options = [];
- // Add all options items.
- foreach ($element->option as $option) {
- $options[] = $option;
- }
- // Search option group children.
- if (isset($element->optgroup)) {
- foreach ($element->optgroup as $group) {
- $options = array_merge($options, $this->getAllOptions($group));
- }
- }
- return $options;
- }
- /**
- * Passes if a link with the specified label is found.
- *
- * An optional link index may be passed.
- *
- * @param string|\Drupal\Component\Render\MarkupInterface $label
- * Text between the anchor tags.
- * @param int $index
- * Link position counting from zero.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use strtr() to embed variables in the message text, not
- * t(). If left blank, a default message will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE if the assertion succeeded, FALSE otherwise.
- */
- protected function assertLink($label, $index = 0, $message = '', $group = 'Other') {
- // Cast MarkupInterface objects to string.
- $label = (string) $label;
- $links = $this->xpath('//a[normalize-space(text())=:label]', [':label' => $label]);
- $message = ($message ? $message : strtr('Link with label %label found.', ['%label' => $label]));
- return $this->assert(isset($links[$index]), $message, $group);
- }
- /**
- * Passes if a link with the specified label is not found.
- *
- * @param string|\Drupal\Component\Render\MarkupInterface $label
- * Text between the anchor tags.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE if the assertion succeeded, FALSE otherwise.
- */
- protected function assertNoLink($label, $message = '', $group = 'Other') {
- // Cast MarkupInterface objects to string.
- $label = (string) $label;
- $links = $this->xpath('//a[normalize-space(text())=:label]', [':label' => $label]);
- $message = ($message ? $message : new FormattableMarkup('Link with label %label not found.', ['%label' => $label]));
- return $this->assert(empty($links), $message, $group);
- }
- /**
- * Passes if a link containing a given href (part) is found.
- *
- * @param string $href
- * The full or partial value of the 'href' attribute of the anchor tag.
- * @param string $index
- * Link position counting from zero.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE if the assertion succeeded, FALSE otherwise.
- */
- protected function assertLinkByHref($href, $index = 0, $message = '', $group = 'Other') {
- $links = $this->xpath('//a[contains(@href, :href)]', [':href' => $href]);
- $message = ($message ? $message : new FormattableMarkup('Link containing href %href found.', ['%href' => $href]));
- return $this->assert(isset($links[$index]), $message, $group);
- }
- /**
- * Passes if a link containing a given href (part) is not found.
- *
- * @param string $href
- * The full or partial value of the 'href' attribute of the anchor tag.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE if the assertion succeeded, FALSE otherwise.
- */
- protected function assertNoLinkByHref($href, $message = '', $group = 'Other') {
- $links = $this->xpath('//a[contains(@href, :href)]', [':href' => $href]);
- $message = ($message ? $message : new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
- return $this->assert(empty($links), $message, $group);
- }
- /**
- * Passes if a link containing a given href is not found in the main region.
- *
- * @param string $href
- * The full or partial value of the 'href' attribute of the anchor tag.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE if the assertion succeeded, FALSE otherwise.
- */
- protected function assertNoLinkByHrefInMainRegion($href, $message = '', $group = 'Other') {
- $links = $this->xpath('//main//a[contains(@href, :href)]', [':href' => $href]);
- $message = ($message ? $message : new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
- return $this->assert(empty($links), $message, $group);
- }
- /**
- * Passes if the raw text IS found on the loaded page, fail otherwise.
- *
- * Raw text refers to the raw HTML that the page generated.
- *
- * @param string $raw
- * Raw (HTML) string to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertRaw($raw, $message = '', $group = 'Other') {
- if (!$message) {
- $message = 'Raw "' . Html::escape($raw) . '" found';
- }
- if ($this instanceof TestCase) {
- $this->assertStringContainsString((string) $raw, $this->getRawContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getRawContent(), (string) $raw) !== FALSE, $message, $group);
- }
- }
- /**
- * Passes if the raw text is NOT found on the loaded page, fail otherwise.
- *
- * Raw text refers to the raw HTML that the page generated.
- *
- * @param string $raw
- * Raw (HTML) string to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoRaw($raw, $message = '', $group = 'Other') {
- if (!$message) {
- $message = 'Raw "' . Html::escape($raw) . '" not found';
- }
- if ($this instanceof TestCase) {
- $this->assertStringNotContainsString((string) $raw, $this->getRawContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getRawContent(), (string) $raw) === FALSE, $message, $group);
- }
- }
- /**
- * Passes if the raw text IS found escaped on the loaded page, fail otherwise.
- *
- * Raw text refers to the raw HTML that the page generated.
- *
- * @param string $raw
- * Raw (HTML) string to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertEscaped($raw, $message = '', $group = 'Other') {
- if (!$message) {
- $message = 'Escaped "' . Html::escape($raw) . '" found';
- }
- if ($this instanceof TestCase) {
- $this->assertStringContainsString(Html::escape($raw), $this->getRawContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getRawContent(), Html::escape($raw)) !== FALSE, $message, $group);
- }
- }
- /**
- * Passes if the raw text IS NOT found escaped on the loaded page, fail
- * otherwise.
- *
- * Raw text refers to the raw HTML that the page generated.
- *
- * @param string $raw
- * Raw (HTML) string to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoEscaped($raw, $message = '', $group = 'Other') {
- if (!$message) {
- $message = 'Escaped "' . Html::escape($raw) . '" not found';
- }
- if ($this instanceof TestCase) {
- $this->assertStringNotContainsString(Html::escape($raw), $this->getRawContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getRawContent(), Html::escape($raw)) === FALSE, $message, $group);
- }
- }
- /**
- * Passes if the page (with HTML stripped) contains the text.
- *
- * Note that stripping HTML tags also removes their attributes, such as
- * the values of text fields.
- *
- * @param string $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- *
- * @see \Drupal\simpletest\AssertContentTrait::assertRaw()
- */
- protected function assertText($text, $message = '', $group = 'Other') {
- return $this->assertTextHelper($text, $message, $group, FALSE);
- }
- /**
- * Passes if the page (with HTML stripped) does not contains the text.
- *
- * Note that stripping HTML tags also removes their attributes, such as
- * the values of text fields.
- *
- * @param string $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- *
- * @see \Drupal\simpletest\AssertContentTrait::assertNoRaw()
- */
- protected function assertNoText($text, $message = '', $group = 'Other') {
- return $this->assertTextHelper($text, $message, $group, TRUE);
- }
- /**
- * Helper for assertText and assertNoText.
- *
- * It is not recommended to call this function directly.
- *
- * @param string $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default. Defaults to 'Other'.
- * @param bool $not_exists
- * (optional) TRUE if this text should not exist, FALSE if it should.
- * Defaults to TRUE.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertTextHelper($text, $message = '', $group = 'Other', $not_exists = TRUE) {
- if (!$message) {
- $message = !$not_exists ? new FormattableMarkup('"@text" found', ['@text' => $text]) : new FormattableMarkup('"@text" not found', ['@text' => $text]);
- }
- if ($not_exists) {
- if ($this instanceof TestCase) {
- $this->assertStringNotContainsString((string) $text, $this->getTextContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getTextContent(), (string) $text) === FALSE, $message, $group);
- }
- }
- else {
- if ($this instanceof TestCase) {
- $this->assertStringContainsString((string) $text, $this->getTextContent(), $message);
- }
- else {
- return $this->assert(strpos($this->getTextContent(), (string) $text) !== FALSE, $message, $group);
- }
- }
- }
- /**
- * Passes if the text is found ONLY ONCE 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.
- *
- * @param string|\Drupal\Component\Render\MarkupInterface $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertUniqueText($text, $message = '', $group = 'Other') {
- return $this->assertUniqueTextHelper($text, $message, $group, TRUE);
- }
- /**
- * Passes if the text is found MORE THAN ONCE 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.
- *
- * @param string|\Drupal\Component\Render\MarkupInterface $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoUniqueText($text, $message = '', $group = 'Other') {
- return $this->assertUniqueTextHelper($text, $message, $group, FALSE);
- }
- /**
- * Helper for assertUniqueText and assertNoUniqueText.
- *
- * It is not recommended to call this function directly.
- *
- * @param string|\Drupal\Component\Render\MarkupInterface $text
- * Plain text to look for.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default. Defaults to 'Other'.
- * @param bool $be_unique
- * (optional) TRUE if this text should be found only once, FALSE if it
- * should be found more than once. Defaults to FALSE.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertUniqueTextHelper($text, $message = '', $group = 'Other', $be_unique = FALSE) {
- // Cast MarkupInterface objects to string.
- $text = (string) $text;
- if (!$message) {
- $message = '"' . $text . '"' . ($be_unique ? ' found only once' : ' found more than once');
- }
- $first_occurrence = strpos($this->getTextContent(), $text);
- if ($first_occurrence === FALSE) {
- return $this->assert(FALSE, $message, $group);
- }
- $offset = $first_occurrence + strlen($text);
- $second_occurrence = strpos($this->getTextContent(), $text, $offset);
- return $this->assert($be_unique == ($second_occurrence === FALSE), $message, $group);
- }
- /**
- * Triggers a pass if the Perl regex pattern is found in the raw content.
- *
- * @param string $pattern
- * Perl regex to look for including the regex delimiters.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertPattern($pattern, $message = '', $group = 'Other') {
- if (!$message) {
- $message = new FormattableMarkup('Pattern "@pattern" found', ['@pattern' => $pattern]);
- }
- return $this->assert((bool) preg_match($pattern, $this->getRawContent()), $message, $group);
- }
- /**
- * Triggers a pass if the perl regex pattern is not found in raw content.
- *
- * @param string $pattern
- * Perl regex to look for including the regex delimiters.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoPattern($pattern, $message = '', $group = 'Other') {
- if (!$message) {
- $message = new FormattableMarkup('Pattern "@pattern" not found', ['@pattern' => $pattern]);
- }
- return $this->assert(!preg_match($pattern, $this->getRawContent()), $message, $group);
- }
- /**
- * Asserts that a Perl regex pattern is found in the plain-text content.
- *
- * @param string $pattern
- * Perl regex to look for including the regex delimiters.
- * @param string $message
- * (optional) A message to display with the assertion.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on failure.
- */
- protected function assertTextPattern($pattern, $message = NULL, $group = 'Other') {
- if (!isset($message)) {
- $message = new FormattableMarkup('Pattern "@pattern" found', ['@pattern' => $pattern]);
- }
- return $this->assert((bool) preg_match($pattern, $this->getTextContent()), $message, $group);
- }
- /**
- * Pass if the page title is the given string.
- *
- * @param string $title
- * The string the title should be.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertTitle($title, $message = '', $group = 'Other') {
- // Don't use xpath as it messes with HTML escaping.
- preg_match('@<title>(.*)</title>@', $this->getRawContent(), $matches);
- if (isset($matches[1])) {
- $actual = $matches[1];
- $actual = $this->castSafeStrings($actual);
- $title = $this->castSafeStrings($title);
- if (!$message) {
- $message = new FormattableMarkup('Page title @actual is equal to @expected.', [
- '@actual' => var_export($actual, TRUE),
- '@expected' => var_export($title, TRUE),
- ]);
- }
- return $this->assertEqual($actual, $title, $message, $group);
- }
- return $this->fail('No title element found on the page.');
- }
- /**
- * Pass if the page title is not the given string.
- *
- * @param string $title
- * The string the title should not be.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoTitle($title, $message = '', $group = 'Other') {
- $actual = (string) current($this->xpath('//title'));
- if (!$message) {
- $message = new FormattableMarkup('Page title @actual is not equal to @unexpected.', [
- '@actual' => var_export($actual, TRUE),
- '@unexpected' => var_export($title, TRUE),
- ]);
- }
- return $this->assertNotEqual($actual, $title, $message, $group);
- }
- /**
- * Asserts themed output.
- *
- * @param string $callback
- * The name of the theme hook to invoke; e.g. 'links' for links.html.twig.
- * @param string $variables
- * An array of variables to pass to the theme function.
- * @param string $expected
- * The expected themed output string.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertThemeOutput($callback, array $variables = [], $expected = '', $message = '', $group = 'Other') {
- /** @var \Drupal\Core\Render\RendererInterface $renderer */
- $renderer = \Drupal::service('renderer');
- // The string cast is necessary because theme functions return
- // MarkupInterface objects. This means we can assert that $expected
- // matches the theme output without having to worry about 0 == ''.
- $output = (string) $renderer->executeInRenderContext(new RenderContext(), function () use ($callback, $variables) {
- return \Drupal::theme()->render($callback, $variables);
- });
- $this->verbose(
- '<hr />' . 'Result:' . '<pre>' . Html::escape(var_export($output, TRUE)) . '</pre>'
- . '<hr />' . 'Expected:' . '<pre>' . Html::escape(var_export($expected, TRUE)) . '</pre>'
- . '<hr />' . $output
- );
- if (!$message) {
- $message = '%callback rendered correctly.';
- }
- $message = new FormattableMarkup($message, ['%callback' => 'theme_' . $callback . '()']);
- return $this->assertIdentical($output, $expected, $message, $group);
- }
- /**
- * Asserts that a field exists in the current page with a given Xpath result.
- *
- * @param \SimpleXmlElement[] $fields
- * Xml elements.
- * @param string $value
- * (optional) Value of the field to assert. You may pass in NULL (default) to skip
- * checking the actual value, while still checking that the field exists.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertFieldsByValue($fields, $value = NULL, $message = '', $group = 'Other') {
- // If value specified then check array for match.
- $found = TRUE;
- if (isset($value)) {
- $found = FALSE;
- if ($fields) {
- foreach ($fields as $field) {
- if (isset($field['value']) && $field['value'] == $value) {
- // Input element with correct value.
- $found = TRUE;
- }
- elseif (isset($field->option) || isset($field->optgroup)) {
- // Select element found.
- $selected = $this->getSelectedItem($field);
- if ($selected === FALSE) {
- // No item selected so use first item.
- $items = $this->getAllOptions($field);
- if (!empty($items) && $items[0]['value'] == $value) {
- $found = TRUE;
- }
- }
- elseif ($selected == $value) {
- $found = TRUE;
- }
- }
- elseif ((string) $field == $value) {
- // Text area with correct text.
- $found = TRUE;
- }
- }
- }
- }
- return $this->assertTrue($fields && $found, $message, $group);
- }
- /**
- * Asserts that a field exists in the current page by the given XPath.
- *
- * @param string $xpath
- * XPath used to find the field.
- * @param string $value
- * (optional) Value of the field to assert. You may pass in NULL (default)
- * to skip checking the actual value, while still checking that the field
- * exists.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
- $fields = $this->xpath($xpath);
- return $this->assertFieldsByValue($fields, $value, $message, $group);
- }
- /**
- * Get the selected value from a select field.
- *
- * @param \SimpleXmlElement $element
- * SimpleXMLElement select element.
- *
- * @return bool
- * The selected value or FALSE.
- */
- protected function getSelectedItem(\SimpleXMLElement $element) {
- foreach ($element->children() as $item) {
- if (isset($item['selected'])) {
- return $item['value'];
- }
- elseif ($item->getName() == 'optgroup') {
- if ($value = $this->getSelectedItem($item)) {
- return $value;
- }
- }
- }
- return FALSE;
- }
- /**
- * Asserts that a field does not exist or its value does not match, by XPath.
- *
- * @param string $xpath
- * XPath used to find the field.
- * @param string $value
- * (optional) Value of the field, to assert that the field's value on the
- * page does not match it.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoFieldByXPath($xpath, $value = NULL, $message = '', $group = 'Other') {
- $fields = $this->xpath($xpath);
- // If value specified then check array for match.
- $found = TRUE;
- if (isset($value)) {
- $found = FALSE;
- if ($fields) {
- foreach ($fields as $field) {
- if ($field['value'] == $value) {
- $found = TRUE;
- }
- }
- }
- }
- return $this->assertFalse($fields && $found, $message, $group);
- }
- /**
- * Asserts that a field exists with the given name and value.
- *
- * @param string $name
- * Name of field to assert.
- * @param string $value
- * (optional) Value of the field to assert. You may pass in NULL (default)
- * to skip checking the actual value, while still checking that the field
- * exists.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertFieldByName($name, $value = NULL, $message = NULL, $group = 'Browser') {
- if (!isset($message)) {
- if (!isset($value)) {
- $message = new FormattableMarkup('Found field with name @name', [
- '@name' => var_export($name, TRUE),
- ]);
- }
- else {
- $message = new FormattableMarkup('Found field with name @name and value @value', [
- '@name' => var_export($name, TRUE),
- '@value' => var_export($value, TRUE),
- ]);
- }
- }
- return $this->assertFieldByXPath($this->constructFieldXpath('name', $name), $value, $message, $group);
- }
- /**
- * Asserts that a field does not exist with the given name and value.
- *
- * @param string $name
- * Name of field to assert.
- * @param string $value
- * (optional) Value for the field, to assert that the field's value on the
- * page doesn't match it. You may pass in NULL to skip checking the
- * value, while still checking that the field doesn't exist. However, the
- * default value ('') asserts that the field value is not an empty string.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoFieldByName($name, $value = '', $message = '', $group = 'Browser') {
- return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $name), $value, $message ? $message : new FormattableMarkup('Did not find field by name @name', ['@name' => $name]), $group);
- }
- /**
- * Asserts that a field exists with the given ID and value.
- *
- * @param string $id
- * ID of field to assert.
- * @param string|\Drupal\Component\Render\MarkupInterface $value
- * (optional) Value for the field to assert. You may pass in NULL to skip
- * checking the value, while still checking that the field exists.
- * However, the default value ('') asserts that the field value is an empty
- * string.
- * @param string|\Drupal\Component\Render\MarkupInterface $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertFieldById($id, $value = '', $message = '', $group = 'Browser') {
- // Cast MarkupInterface objects to string.
- if (isset($value)) {
- $value = (string) $value;
- }
- $message = (string) $message;
- return $this->assertFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : new FormattableMarkup('Found field by id @id', ['@id' => $id]), $group);
- }
- /**
- * Asserts that a field does not exist with the given ID and value.
- *
- * @param string $id
- * ID of field to assert.
- * @param string $value
- * (optional) Value for the field, to assert that the field's value on the
- * page doesn't match it. You may pass in NULL to skip checking the value,
- * while still checking that the field doesn't exist. However, the default
- * value ('') asserts that the field value is not an empty string.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoFieldById($id, $value = '', $message = '', $group = 'Browser') {
- return $this->assertNoFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : new FormattableMarkup('Did not find field by id @id', ['@id' => $id]), $group);
- }
- /**
- * Asserts that a checkbox field in the current page is checked.
- *
- * @param string $id
- * ID of field to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertFieldChecked($id, $message = '', $group = 'Browser') {
- $elements = $this->xpath('//input[@id=:id]', [':id' => $id]);
- return $this->assertTrue(isset($elements[0]) && !empty($elements[0]['checked']), $message ? $message : new FormattableMarkup('Checkbox field @id is checked.', ['@id' => $id]), $group);
- }
- /**
- * Asserts that a checkbox field in the current page is not checked.
- *
- * @param string $id
- * ID of field to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoFieldChecked($id, $message = '', $group = 'Browser') {
- $elements = $this->xpath('//input[@id=:id]', [':id' => $id]);
- return $this->assertTrue(isset($elements[0]) && empty($elements[0]['checked']), $message ? $message : new FormattableMarkup('Checkbox field @id is not checked.', ['@id' => $id]), $group);
- }
- /**
- * Asserts that a select option in the current page exists.
- *
- * @param string $id
- * ID of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertOption($id, $option, $message = '', $group = 'Browser') {
- $options = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
- return $this->assertTrue(isset($options[0]), $message ? $message : new FormattableMarkup('Option @option for field @id exists.', ['@option' => $option, '@id' => $id]), $group);
- }
- /**
- * Asserts that a select option with the visible text exists.
- *
- * @param string $id
- * The ID of the select field to assert.
- * @param string $text
- * The text for the option tag to assert.
- * @param string $message
- * (optional) A message to display with the assertion.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertOptionByText($id, $text, $message = '') {
- $options = $this->xpath('//select[@id=:id]//option[normalize-space(text())=:text]', [':id' => $id, ':text' => $text]);
- return $this->assertTrue(isset($options[0]), $message ?: 'Option with text label ' . $text . ' for select field ' . $id . ' exits.');
- }
- /**
- * Asserts that a select option in the current page exists.
- *
- * @param string $drupal_selector
- * The data drupal selector of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertOptionWithDrupalSelector($drupal_selector, $option, $message = '', $group = 'Browser') {
- $options = $this->xpath('//select[@data-drupal-selector=:data_drupal_selector]//option[@value=:option]', [':data_drupal_selector' => $drupal_selector, ':option' => $option]);
- return $this->assertTrue(isset($options[0]), $message ? $message : new FormattableMarkup('Option @option for field @data_drupal_selector exists.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]), $group);
- }
- /**
- * Asserts that a select option in the current page does not exist.
- *
- * @param string $id
- * ID of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoOption($id, $option, $message = '', $group = 'Browser') {
- $selects = $this->xpath('//select[@id=:id]', [':id' => $id]);
- $options = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
- return $this->assertTrue(isset($selects[0]) && !isset($options[0]), $message ? $message : new FormattableMarkup('Option @option for field @id does not exist.', ['@option' => $option, '@id' => $id]), $group);
- }
- /**
- * Asserts that a select option in the current page is checked.
- *
- * @param string $id
- * ID of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- *
- * @todo $id is unusable. Replace with $name.
- */
- protected function assertOptionSelected($id, $option, $message = '', $group = 'Browser') {
- $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
- return $this->assertTrue(isset($elements[0]) && !empty($elements[0]['selected']), $message ? $message : new FormattableMarkup('Option @option for field @id is selected.', ['@option' => $option, '@id' => $id]), $group);
- }
- /**
- * Asserts that a select option in the current page is checked.
- *
- * @param string $drupal_selector
- * The data drupal selector of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- *
- * @todo $id is unusable. Replace with $name.
- */
- protected function assertOptionSelectedWithDrupalSelector($drupal_selector, $option, $message = '', $group = 'Browser') {
- $elements = $this->xpath('//select[@data-drupal-selector=:data_drupal_selector]//option[@value=:option]', [':data_drupal_selector' => $drupal_selector, ':option' => $option]);
- return $this->assertTrue(isset($elements[0]) && !empty($elements[0]['selected']), $message ? $message : new FormattableMarkup('Option @option for field @data_drupal_selector is selected.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]), $group);
- }
- /**
- * Asserts that a select option in the current page is not checked.
- *
- * @param string $id
- * ID of select field to assert.
- * @param string $option
- * Option to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Browser'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoOptionSelected($id, $option, $message = '', $group = 'Browser') {
- $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
- return $this->assertTrue(isset($elements[0]) && empty($elements[0]['selected']), $message ? $message : new FormattableMarkup('Option @option for field @id is not selected.', ['@option' => $option, '@id' => $id]), $group);
- }
- /**
- * Asserts that a field exists with the given name or ID.
- *
- * @param string $field
- * Name or ID of field to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertField($field, $message = '', $group = 'Other') {
- return $this->assertFieldByXPath($this->constructFieldXpath('name', $field) . '|' . $this->constructFieldXpath('id', $field), NULL, $message, $group);
- }
- /**
- * Asserts that a field does not exist with the given name or ID.
- *
- * @param string $field
- * Name or ID of field to assert.
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoField($field, $message = '', $group = 'Other') {
- return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $field) . '|' . $this->constructFieldXpath('id', $field), NULL, $message, $group);
- }
- /**
- * Asserts that each HTML ID is used for just a single element.
- *
- * @param string $message
- * (optional) A message to display with the assertion. Do not translate
- * messages: use \Drupal\Component\Render\FormattableMarkup to embed
- * variables in the message text, not t(). If left blank, a default message
- * will be displayed.
- * @param string $group
- * (optional) The group this message is in, which is displayed in a column
- * in test output. Use 'Debug' to indicate this is debugging output. Do not
- * translate this string. Defaults to 'Other'; most tests do not override
- * this default.
- * @param array $ids_to_skip
- * An optional array of ids to skip when checking for duplicates. It is
- * always a bug to have duplicate HTML IDs, so this parameter is to enable
- * incremental fixing of core code. Whenever a test passes this parameter,
- * it should add a "todo" comment above the call to this function explaining
- * the legacy bug that the test wishes to ignore and including a link to an
- * issue that is working to fix that legacy bug.
- *
- * @return bool
- * TRUE on pass, FALSE on fail.
- */
- protected function assertNoDuplicateIds($message = '', $group = 'Other', $ids_to_skip = []) {
- $status = TRUE;
- foreach ($this->xpath('//*[@id]') as $element) {
- $id = (string) $element['id'];
- if (isset($seen_ids[$id]) && !in_array($id, $ids_to_skip)) {
- $this->fail(new FormattableMarkup('The HTML ID %id is unique.', ['%id' => $id]), $group);
- $status = FALSE;
- }
- $seen_ids[$id] = TRUE;
- }
- return $this->assert($status, $message, $group);
- }
- /**
- * Helper: Constructs an XPath for the given set of attributes and value.
- *
- * @param string $attribute
- * Field attributes.
- * @param string $value
- * Value of field.
- *
- * @return string
- * XPath for specified values.
- */
- protected function constructFieldXpath($attribute, $value) {
- $xpath = '//textarea[@' . $attribute . '=:value]|//input[@' . $attribute . '=:value]|//select[@' . $attribute . '=:value]';
- return $this->buildXPathQuery($xpath, [':value' => $value]);
- }
- }
|