function SearchNumbersTest::testNumberSearching in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/search/src/Tests/SearchNumbersTest.php \Drupal\search\Tests\SearchNumbersTest::testNumberSearching()
Tests that all the numbers can be searched.
File
- core/
modules/ search/ src/ Tests/ SearchNumbersTest.php, line 83 - Contains \Drupal\search\Tests\SearchNumbersTest.
Class
- SearchNumbersTest
- Tests that numbers can be searched.
Namespace
Drupal\search\TestsCode
function testNumberSearching() {
$types = array_keys($this->numbers);
foreach ($types as $type) {
$number = $this->numbers[$type];
// If the number is negative, remove the - sign, because - indicates
// "not keyword" when searching.
$number = ltrim($number, '-');
$node = $this->nodes[$type];
// Verify that the node title does not appear on the search page
// with a dummy search.
$this
->drupalPostForm('search/node', array(
'keys' => 'foo',
), t('Search'));
$this
->assertNoText($node
->label(), $type . ': node title not shown in dummy search');
// Verify that the node title does appear as a link on the search page
// when searching for the number.
$this
->drupalPostForm('search/node', array(
'keys' => $number,
), t('Search'));
$this
->assertText($node
->label(), format_string('%type: node title shown (search found the node) in search for number %number.', array(
'%type' => $type,
'%number' => $number,
)));
}
}