Skip to content
Snippets Groups Projects
Commit 53c6b05b authored by Demian Katz's avatar Demian Katz
Browse files

More test coverage.

parent 29269416
No related merge requests found
......@@ -159,6 +159,58 @@ class SideFacetsTest extends \VuFindTest\Unit\TestCase
$this->assertEquals($expected, $sf->getAllRangeFacets());
}
/**
* Test default getCollapsedFacets behavior.
*
* @return void
*/
public function testGetCollapsedFacetsDefault()
{
$this->assertEquals(array(), $this->getSideFacets()->getCollapsedFacets());
}
/**
* Test asterisk support in getCollapsedFacets
*
* @return void
*/
public function testGetCollapsedFacetsDelimitedList()
{
$config = array(
'Results_Settings' => array('collapsedFacets' => ' foo, bar,baz '),
);
$sf = $this->getSideFacets($this->getMockConfigLoader($config));
$this->assertEquals(array('foo', 'bar', 'baz'), $sf->getCollapsedFacets());
}
/**
* Test delimited list support in getCollapsedFacets
*
* @return void
*/
public function testGetCollapsedFacetsWildcard()
{
$config = array(
'Results' => array(
'format' => 'Format',
),
'Results_Settings' => array('collapsedFacets' => '*'),
);
$filters = array(
'format' => array(
array('value' => 'foo'),
array('value' => 'bar', 'suppressDisplay' => true),
),
);
$results = $this->getMockResults();
$response = array('format' => array('dummy'));
$results->expects($this->once())->method('getFacetList')
->with($this->equalTo(array('format' => 'Format')))
->will($this->returnValue($response));
$sf = $this->getSideFacets($this->getMockConfigLoader($config), $results);
$this->assertEquals(array('format'), $sf->getCollapsedFacets());
}
/**
* Get a fully configured module
*
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment