Lines 219-225
subtest 'build_authorities_query_compat() tests' => sub {
Link Here
|
219 |
}; |
219 |
}; |
220 |
|
220 |
|
221 |
subtest 'build_query tests' => sub { |
221 |
subtest 'build_query tests' => sub { |
222 |
plan tests => 65; |
222 |
plan tests => 68; |
223 |
|
223 |
|
224 |
my $qb; |
224 |
my $qb; |
225 |
|
225 |
|
Lines 254-259
subtest 'build_query tests' => sub {
Link Here
|
254 |
is( $query->{aggregations}{homebranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for homebranch'); |
254 |
is( $query->{aggregations}{homebranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for homebranch'); |
255 |
is( $query->{aggregations}{holdingbranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for holdingbranch'); |
255 |
is( $query->{aggregations}{holdingbranch}{terms}{size}, 37,'we ask for the size as defined by the syspref FacetMaxCount for holdingbranch'); |
256 |
|
256 |
|
|
|
257 |
$options{skip_facets} = 1; |
258 |
$query = $qb->build_query( 'test', %options ); |
259 |
ok( !defined $query->{aggregations}, 'Skipping facets means we do not have aggregations in the the query' ); |
260 |
|
257 |
t::lib::Mocks::mock_preference( 'QueryAutoTruncate', '' ); |
261 |
t::lib::Mocks::mock_preference( 'QueryAutoTruncate', '' ); |
258 |
|
262 |
|
259 |
( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'] ); |
263 |
( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'] ); |
Lines 262-267
subtest 'build_query tests' => sub {
Link Here
|
262 |
"(donald duck)", |
266 |
"(donald duck)", |
263 |
"query not altered if QueryAutoTruncate disabled" |
267 |
"query not altered if QueryAutoTruncate disabled" |
264 |
); |
268 |
); |
|
|
269 |
ok( defined $query->{aggregations}, 'Aggregations generated normally' ); |
270 |
( undef, $query ) = |
271 |
$qb->build_query_compat( undef, ['donald duck'], undef, undef, undef, undef, undef, { skip_facets => 1 } ); |
272 |
ok( !defined $query->{aggregations}, 'Aggregations generated normally' ); |
265 |
|
273 |
|
266 |
( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'], ['kw,phr'] ); |
274 |
( undef, $query ) = $qb->build_query_compat( undef, ['donald duck'], ['kw,phr'] ); |
267 |
is( |
275 |
is( |
268 |
- |
|
|