@@ -137,11 +137,11 @@ describe('getRefinements', function() {
137
137
hierarchicalFacets : [ {
138
138
name : 'hierarchicalFacet1' ,
139
139
attributes : [ 'hierarchicalFacet1.lvl0' , 'hierarchicalFacet1.lvl1' ] ,
140
- separator : '> '
140
+ separator : ' > '
141
141
} , {
142
142
name : 'hierarchicalFacet2' ,
143
143
attributes : [ 'hierarchicalFacet2.lvl0' , 'hierarchicalFacet2.lvl1' ] ,
144
- separator : '> '
144
+ separator : ' > '
145
145
} ]
146
146
} ) ;
147
147
results = { } ;
@@ -150,24 +150,24 @@ describe('getRefinements', function() {
150
150
it ( 'should retrieve one tag' , function ( ) {
151
151
helper . addTag ( 'tag1' ) ;
152
152
const expected = [
153
- { attributeName : '_tags' , name : 'tag1' }
153
+ { type : 'tag' , attributeName : '_tags' , name : 'tag1' }
154
154
] ;
155
155
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
156
156
} ) ;
157
157
158
158
it ( 'should retrieve multiple tags' , function ( ) {
159
159
helper . addTag ( 'tag1' ) . addTag ( 'tag2' ) ;
160
160
const expected = [
161
- { attributeName : '_tags' , name : 'tag1' } ,
162
- { attributeName : '_tags' , name : 'tag2' }
161
+ { type : 'tag' , attributeName : '_tags' , name : 'tag1' } ,
162
+ { type : 'tag' , attributeName : '_tags' , name : 'tag2' }
163
163
] ;
164
164
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
165
165
} ) ;
166
166
167
167
it ( 'should retrieve one facetRefinement' , function ( ) {
168
168
helper . toggleRefinement ( 'facet1' , 'facet1val1' ) ;
169
169
const expected = [
170
- { attributeName : 'facet1' , name : 'facet1val1' }
170
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val1' }
171
171
] ;
172
172
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
173
173
} ) ;
@@ -177,8 +177,8 @@ describe('getRefinements', function() {
177
177
. toggleRefinement ( 'facet1' , 'facet1val1' )
178
178
. toggleRefinement ( 'facet1' , 'facet1val2' ) ;
179
179
const expected = [
180
- { attributeName : 'facet1' , name : 'facet1val1' } ,
181
- { attributeName : 'facet1' , name : 'facet1val2' }
180
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val1' } ,
181
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val2' }
182
182
] ;
183
183
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
184
184
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -190,9 +190,9 @@ describe('getRefinements', function() {
190
190
. toggleRefinement ( 'facet1' , 'facet1val2' )
191
191
. toggleRefinement ( 'facet2' , 'facet2val1' ) ;
192
192
const expected = [
193
- { attributeName : 'facet1' , name : 'facet1val1' } ,
194
- { attributeName : 'facet1' , name : 'facet1val2' } ,
195
- { attributeName : 'facet2' , name : 'facet2val1' }
193
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val1' } ,
194
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val2' } ,
195
+ { type : 'facet' , attributeName : 'facet2' , name : 'facet2val1' }
196
196
] ;
197
197
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
198
198
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -210,7 +210,7 @@ describe('getRefinements', function() {
210
210
} ]
211
211
} ;
212
212
const expected = [
213
- { attributeName : 'facet1' , name : 'facet1val1' , count : 4 }
213
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val1' , count : 4 }
214
214
] ;
215
215
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
216
216
} ) ;
@@ -224,15 +224,15 @@ describe('getRefinements', function() {
224
224
} ]
225
225
} ;
226
226
const expected = [
227
- { attributeName : 'facet1' , name : 'facet1val1' , exhaustive : true }
227
+ { type : 'facet' , attributeName : 'facet1' , name : 'facet1val1' , exhaustive : true }
228
228
] ;
229
229
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
230
230
} ) ;
231
231
232
232
it ( 'should retrieve one facetExclude' , function ( ) {
233
233
helper . toggleExclude ( 'facet1' , 'facet1exclude1' ) ;
234
234
const expected = [
235
- { attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true }
235
+ { type : 'exclude' , attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true }
236
236
] ;
237
237
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
238
238
} ) ;
@@ -242,8 +242,8 @@ describe('getRefinements', function() {
242
242
. toggleExclude ( 'facet1' , 'facet1exclude1' )
243
243
. toggleExclude ( 'facet1' , 'facet1exclude2' ) ;
244
244
const expected = [
245
- { attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true } ,
246
- { attributeName : 'facet1' , name : 'facet1exclude2' , exclude : true }
245
+ { type : 'exclude' , attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true } ,
246
+ { type : 'exclude' , attributeName : 'facet1' , name : 'facet1exclude2' , exclude : true }
247
247
] ;
248
248
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
249
249
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -255,9 +255,9 @@ describe('getRefinements', function() {
255
255
. toggleExclude ( 'facet1' , 'facet1exclude2' )
256
256
. toggleExclude ( 'facet2' , 'facet2exclude1' ) ;
257
257
const expected = [
258
- { attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true } ,
259
- { attributeName : 'facet1' , name : 'facet1exclude2' , exclude : true } ,
260
- { attributeName : 'facet2' , name : 'facet2exclude1' , exclude : true }
258
+ { type : 'exclude' , attributeName : 'facet1' , name : 'facet1exclude1' , exclude : true } ,
259
+ { type : 'exclude' , attributeName : 'facet1' , name : 'facet1exclude2' , exclude : true } ,
260
+ { type : 'exclude' , attributeName : 'facet2' , name : 'facet2exclude1' , exclude : true }
261
261
] ;
262
262
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
263
263
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -267,7 +267,7 @@ describe('getRefinements', function() {
267
267
it ( 'should retrieve one disjunctiveFacetRefinement' , function ( ) {
268
268
helper . addDisjunctiveFacetRefinement ( 'disjunctiveFacet1' , 'disjunctiveFacet1val1' ) ;
269
269
const expected = [
270
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' }
270
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' }
271
271
] ;
272
272
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
273
273
} ) ;
@@ -277,8 +277,8 @@ describe('getRefinements', function() {
277
277
. addDisjunctiveFacetRefinement ( 'disjunctiveFacet1' , 'disjunctiveFacet1val1' )
278
278
. addDisjunctiveFacetRefinement ( 'disjunctiveFacet1' , 'disjunctiveFacet1val2' ) ;
279
279
const expected = [
280
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' } ,
281
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val2' }
280
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' } ,
281
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val2' }
282
282
] ;
283
283
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
284
284
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -290,9 +290,9 @@ describe('getRefinements', function() {
290
290
. toggleRefinement ( 'disjunctiveFacet1' , 'disjunctiveFacet1val2' )
291
291
. toggleRefinement ( 'disjunctiveFacet2' , 'disjunctiveFacet2val1' ) ;
292
292
const expected = [
293
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' } ,
294
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val2' } ,
295
- { attributeName : 'disjunctiveFacet2' , name : 'disjunctiveFacet2val1' }
293
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' } ,
294
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val2' } ,
295
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet2' , name : 'disjunctiveFacet2val1' }
296
296
] ;
297
297
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
298
298
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -310,7 +310,7 @@ describe('getRefinements', function() {
310
310
} ]
311
311
} ;
312
312
const expected = [
313
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' , count : 4 }
313
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' , count : 4 }
314
314
] ;
315
315
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
316
316
} ) ;
@@ -324,15 +324,15 @@ describe('getRefinements', function() {
324
324
} ]
325
325
} ;
326
326
const expected = [
327
- { attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' , exhaustive : true }
327
+ { type : 'disjunctive' , attributeName : 'disjunctiveFacet1' , name : 'disjunctiveFacet1val1' , exhaustive : true }
328
328
] ;
329
329
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
330
330
} ) ;
331
331
332
332
it ( 'should retrieve one hierarchicalFacetRefinement' , function ( ) {
333
333
helper . toggleRefinement ( 'hierarchicalFacet1' , 'hierarchicalFacet1lvl0val1' ) ;
334
334
const expected = [
335
- { attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' }
335
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' }
336
336
] ;
337
337
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
338
338
} ) ;
@@ -342,8 +342,8 @@ describe('getRefinements', function() {
342
342
. toggleRefinement ( 'hierarchicalFacet1' , 'hierarchicalFacet1lvl0val1' )
343
343
. toggleRefinement ( 'hierarchicalFacet2' , 'hierarchicalFacet2lvl0val1' ) ;
344
344
const expected = [
345
- { attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' } ,
346
- { attributeName : 'hierarchicalFacet2' , name : 'hierarchicalFacet2lvl0val1' }
345
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' } ,
346
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet2' , name : 'hierarchicalFacet2lvl0val1' }
347
347
] ;
348
348
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
349
349
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -354,8 +354,8 @@ describe('getRefinements', function() {
354
354
. toggleRefinement ( 'hierarchicalFacet1' , 'hierarchicalFacet1lvl0val1' )
355
355
. toggleRefinement ( 'hierarchicalFacet2' , 'hierarchicalFacet2lvl0val1 > lvl1val1' ) ;
356
356
const expected = [
357
- { attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' } ,
358
- { attributeName : 'hierarchicalFacet2' , name : 'hierarchicalFacet2lvl0val1 > lvl1val1' }
357
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1lvl0val1' } ,
358
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet2' , name : 'lvl1val1' }
359
359
] ;
360
360
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
361
361
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -367,12 +367,12 @@ describe('getRefinements', function() {
367
367
hierarchicalFacets : [ {
368
368
name : 'hierarchicalFacet1' ,
369
369
data : {
370
- hierarchicalFacet1val1 : 4
370
+ hierarchicalFacet1val1 : { name : 'hierarchicalFacet1val1' , count : 4 }
371
371
}
372
372
} ]
373
373
} ;
374
374
const expected = [
375
- { attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1val1' , count : 4 }
375
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1val1' , count : 4 }
376
376
] ;
377
377
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
378
378
} ) ;
@@ -382,27 +382,29 @@ describe('getRefinements', function() {
382
382
results = {
383
383
hierarchicalFacets : [ {
384
384
name : 'hierarchicalFacet1' ,
385
- exhaustive : true
385
+ data : [
386
+ { name : 'hierarchicalFacet1val1' , exhaustive : true }
387
+ ]
386
388
} ]
387
389
} ;
388
390
const expected = [
389
- { attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1val1' , exhaustive : true }
391
+ { type : 'hierarchical' , attributeName : 'hierarchicalFacet1' , name : 'hierarchicalFacet1val1' , exhaustive : true }
390
392
] ;
391
393
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
392
394
} ) ;
393
395
394
396
it ( 'should retrieve a numericRefinement on one facet' , function ( ) {
395
397
helper . addNumericRefinement ( 'numericFacet1' , '>' , '1' ) ;
396
398
const expected = [
397
- { attributeName : 'numericFacet1' , operator : '>' , name : '1' }
399
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '>' , name : '1' }
398
400
] ;
399
401
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
400
402
} ) ;
401
403
402
404
it ( 'should retrieve a numericRefinement on one disjunctive facet' , function ( ) {
403
405
helper . addNumericRefinement ( 'numericDisjunctiveFacet1' , '>' , '1' ) ;
404
406
const expected = [
405
- { attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '1' }
407
+ { type : 'numeric' , attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '1' }
406
408
] ;
407
409
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
408
410
} ) ;
@@ -412,8 +414,8 @@ describe('getRefinements', function() {
412
414
. addNumericRefinement ( 'numericFacet1' , '>' , '1' )
413
415
. addNumericRefinement ( 'numericFacet1' , '>' , '2' ) ;
414
416
const expected = [
415
- { attributeName : 'numericFacet1' , operator : '>' , name : '1' } ,
416
- { attributeName : 'numericFacet1' , operator : '>' , name : '2' }
417
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '>' , name : '1' } ,
418
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '>' , name : '2' }
417
419
] ;
418
420
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
419
421
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
@@ -427,11 +429,11 @@ describe('getRefinements', function() {
427
429
. addNumericRefinement ( 'numericDisjunctiveFacet1' , '>' , '1' )
428
430
. addNumericRefinement ( 'numericDisjunctiveFacet1' , '>' , '2' ) ;
429
431
const expected = [
430
- { attributeName : 'numericFacet1' , operator : '>' , name : '1' } ,
431
- { attributeName : 'numericFacet1' , operator : '>' , name : '2' } ,
432
- { attributeName : 'numericFacet1' , operator : '<=' , name : '3' } ,
433
- { attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '1' } ,
434
- { attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '2' }
432
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '>' , name : '1' } ,
433
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '>' , name : '2' } ,
434
+ { type : 'numeric' , attributeName : 'numericFacet1' , operator : '<=' , name : '3' } ,
435
+ { type : 'numeric' , attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '1' } ,
436
+ { type : 'numeric' , attributeName : 'numericDisjunctiveFacet1' , operator : '>' , name : '2' }
435
437
] ;
436
438
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 0 ] ) ;
437
439
expect ( utils . getRefinements ( results , helper . state ) ) . toInclude ( expected [ 1 ] ) ;
0 commit comments