-
Notifications
You must be signed in to change notification settings - Fork 539
/
Copy pathsearchOnce.js
127 lines (103 loc) · 3.8 KB
/
searchOnce.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
'use strict';
var SearchParameters = require('../../../src/SearchParameters');
var algoliasearchHelper = require('../../../index');
test('searchOnce should call the algolia client according to the number of refinements and call callback with no error and with results when no error', function (done) {
var testData =
require('../../../test/datasets/SearchParameters/search.dataset')();
var client = {
search: jest.fn().mockImplementationOnce(function () {
return Promise.resolve(testData.response);
}),
};
var helper = algoliasearchHelper(client, 'test_hotels-node');
var parameters = new SearchParameters({
disjunctiveFacets: ['city'],
})
.setIndex('test_hotels-node')
.addDisjunctiveFacetRefinement('city', 'Paris')
.addDisjunctiveFacetRefinement('city', 'New York');
helper.searchOnce(parameters, function (err, data) {
expect(err).toBe(null);
// shame deepclone, to remove any associated methods coming from the results
expect(JSON.parse(JSON.stringify(data))).toEqual(
JSON.parse(JSON.stringify(testData.responseHelper))
);
var cityValues = data.getFacetValues('city');
var expectedCityValues = [
{ name: 'Paris', escapedValue: 'Paris', count: 3, isRefined: true },
{ name: 'New York', escapedValue: 'New York', count: 1, isRefined: true },
{
name: 'San Francisco',
escapedValue: 'San Francisco',
count: 1,
isRefined: false,
},
];
expect(cityValues).toEqual(expectedCityValues);
var cityValuesCustom = data.getFacetValues('city', {
sortBy: ['count:asc', 'name:asc'],
});
var expectedCityValuesCustom = [
{ name: 'New York', escapedValue: 'New York', count: 1, isRefined: true },
{
name: 'San Francisco',
escapedValue: 'San Francisco',
count: 1,
isRefined: false,
},
{ name: 'Paris', escapedValue: 'Paris', count: 3, isRefined: true },
];
expect(cityValuesCustom).toEqual(expectedCityValuesCustom);
var cityValuesFn = data.getFacetValues('city', {
sortBy: function (a, b) {
return a.count - b.count;
},
});
var expectedCityValuesFn = [
{ name: 'New York', escapedValue: 'New York', count: 1, isRefined: true },
{
name: 'San Francisco',
escapedValue: 'San Francisco',
count: 1,
isRefined: false,
},
{ name: 'Paris', escapedValue: 'Paris', count: 3, isRefined: true },
];
expect(cityValuesFn).toEqual(expectedCityValuesFn);
expect(client.search).toHaveBeenCalledTimes(1);
var queries = client.search.mock.calls[0][0];
for (var i = 0; i < queries.length; i++) {
var query = queries[i];
expect(query.query).toBeUndefined();
expect(query.params.query).toBeUndefined();
}
done();
});
});
test('searchOnce should call the algolia client according to the number of refinements and call callback with error and no results when error', function (done) {
var error = { message: 'error' };
var client = {
search: jest.fn().mockImplementationOnce(function () {
return Promise.reject(error);
}),
};
var helper = algoliasearchHelper(client, 'test_hotels-node');
var parameters = new SearchParameters({
disjunctiveFacets: ['city'],
})
.setIndex('test_hotels-node')
.addDisjunctiveFacetRefinement('city', 'Paris')
.addDisjunctiveFacetRefinement('city', 'New York');
helper.searchOnce(parameters, function (err, data) {
expect(err).toBe(error);
expect(data).toBe(null);
expect(client.search).toHaveBeenCalledTimes(1);
var queries = client.search.mock.calls[0][0];
for (var i = 0; i < queries.length; i++) {
var query = queries[i];
expect(query.query).toBeUndefined();
expect(query.params.query).toBeUndefined();
}
done();
});
});