mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\CMS\Tests\Search;
|
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
|
use SilverStripe\Security\Member;
|
|
|
|
class CMSMainSearchFormTest extends FunctionalTest
|
|
{
|
|
protected static $fixture_file = '../Controllers/CMSMainTest.yml';
|
|
|
|
public function testTitleFilter()
|
|
{
|
|
$this->session()->set('loggedInAs', $this->idFromFixture(Member::class, 'admin'));
|
|
|
|
$response = $this->get(
|
|
'admin/pages/SearchForm/?' .
|
|
http_build_query(array(
|
|
'q' => array(
|
|
'Title' => 'Page 10',
|
|
'FilterClass' => 'SilverStripe\\CMS\\Controllers\\CMSSiteTreeFilter_Search',
|
|
),
|
|
'action_doSearch' => true
|
|
))
|
|
);
|
|
|
|
$titles = $this->getPageTitles();
|
|
$this->assertEquals(count($titles), 1);
|
|
// For some reason the title gets split into two lines
|
|
|
|
$this->assertContains('Page 1', $titles[0]);
|
|
}
|
|
|
|
protected function getPageTitles()
|
|
{
|
|
$titles = array();
|
|
$links = $this->cssParser()->getBySelector('li.class-Page a');
|
|
if ($links) {
|
|
foreach ($links as $link) {
|
|
$titles[] = preg_replace('/\n/', ' ', $link->asXML());
|
|
}
|
|
}
|
|
return $titles;
|
|
}
|
|
}
|