-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdocuments_test.dart
220 lines (213 loc) · 8.02 KB
/
documents_test.dart
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import 'package:test/test.dart';
import 'package:mockito/mockito.dart';
import 'package:typesense/src/documents.dart';
import 'package:typesense/src/services/api_call.dart';
import 'package:typesense/src/exceptions/exceptions.dart';
import 'test_utils.mocks.dart';
void main() {
late Documents documents;
late MockApiCall mockApiCall;
late MockDocumentsApiCall mockDocumentsApiCall;
setUp(() {
mockApiCall = MockApiCall();
mockDocumentsApiCall = MockDocumentsApiCall();
documents = Documents("companies", mockApiCall, mockDocumentsApiCall);
});
group("Documents", () {
test('has a resourcepath', () {
expect(Documents.resourcepath, equals('/documents'));
});
test("create() calls ApiCall.post()", () async {
final document = {
'id': '124',
'company_name': 'Stark Industries',
'num_employees': 5215,
'country': 'USA',
};
when(mockApiCall.post("/collections/companies/documents",
bodyParameters: document, queryParams: {'action': 'create'}))
.thenAnswer((realInvocation) => Future.value(document));
expect(await documents.create(document), equals(document));
});
test("upsert() calls ApiCall.post()", () async {
final document = {
'id': '124',
'company_name': 'Stark Industries',
'num_employees': 5215,
'country': 'USA',
};
when(mockApiCall.post("/collections/companies/documents",
bodyParameters: document, queryParams: {"action": "upsert"}))
.thenAnswer((realInvocation) => Future.value(document));
expect(await documents.upsert(document), equals(document));
});
test("update() calls ApiCall.post()", () async {
final document = {
'company_name': 'Stark Industries',
'num_employees': 5215,
'country': 'USA',
};
when(mockApiCall.post("/collections/companies/documents",
bodyParameters: document, queryParams: {"action": "update"}))
.thenAnswer((realInvocation) => Future.value(document));
expect(await documents.update(document), equals(document));
});
test("delete() calls ApiCall.post()", () async {
when(mockApiCall.delete("/collections/companies/documents",
queryParams: {'filter_by': 'num_employees:>100'}))
.thenAnswer((realInvocation) => Future.value({"num_deleted": 24}));
expect(await documents.delete({'filter_by': 'num_employees:>100'}),
equals({"num_deleted": 24}));
});
test('importDocuments() calls DocumentsApiCall.post()', () async {
when(mockDocumentsApiCall.post(
"/collections/companies/documents/import",
bodyParameters:
'{"id":"124","company_name":"Stark Industries","num_employees":5215,"country":"USA"}',
additionalHeaders: {contentType: 'text/plain'},
)).thenAnswer((realInvocation) => Future.value('{"success": true}'));
expect(
await documents.importDocuments([
{
"id": "124",
"company_name": "Stark Industries",
"num_employees": 5215,
"country": "USA"
}
]),
equals([
{"success": true}
]));
});
test("importJsonlDocuments() calls DocumentsApiCall.post()", () async {
final documentJsonl = '''
{"id": "124", "company_name": "Stark Industries", "num_employees": 5215, "country": "US"}
{"id": "125", "company_name": "Future Technology", "num_employees": 1232, "country": "UK"}
{"id": "126", "company_name": "Random Corp.", "num_employees": 531, "country": "AU"}''',
result = '''
{"success": true}
{"success": true}
{"success": true}
''';
when(mockDocumentsApiCall.post(
"/collections/companies/documents/import",
bodyParameters: documentJsonl,
additionalHeaders: {contentType: 'text/plain'},
)).thenAnswer((realInvocation) => Future.value(result));
expect(await documents.importJSONL(documentJsonl), equals(result));
});
test("exportJsonlDocuments() calls DocumentsApiCall.get()", () async {
final documentJsonl = '''
{"id": "124", "company_name": "Stark Industries", "num_employees": 5215, "country": "US"}
{"id": "125", "company_name": "Future Technology", "num_employees": 1232, "country": "UK"}
{"id": "126", "company_name": "Random Corp.", "num_employees": 531, "country": "AU"}
''';
when(mockDocumentsApiCall.get(
"/collections/companies/documents/export",
queryParams: {'filter_by': 'num_employees:>100'},
)).thenAnswer((realInvocation) => Future.value(documentJsonl));
expect(
await documents.exportJSONL(
queryParams: {'filter_by': 'num_employees:>100'},
),
equals(documentJsonl));
});
test('search() calls ApiCall.get with shouldCacheResult true', () async {
final searchResult = {
"facet_counts": [],
"found": 1,
"out_of": 1,
"page": 1,
"request_params": {"q": ""},
"search_time_ms": 1,
"grouped_hits": [
{
"group_key": ["USA"],
"hits": [
{
"highlights": [
{
"field": "company_name",
"snippet": "<mark>Stark</mark> Industries"
}
],
"document": {
"id": "124",
"company_name": "Stark Industries",
"num_employees": 5215,
"country": "USA"
}
}
]
}
]
};
when(mockApiCall.get(
"/collections/companies/documents/search",
queryParams: {
'q': 'stark',
'query_by': 'company_name',
'filter_by': 'num_employees:>100',
'sort_by': 'num_employees:desc',
'group_by': 'country',
'group_limit': '1'
},
shouldCacheResult: true,
)).thenAnswer((realInvocation) => Future.value(searchResult));
expect(
await documents.search({
'q': 'stark',
'query_by': 'company_name',
'filter_by': 'num_employees:>100',
'sort_by': 'num_employees:desc',
'group_by': 'country',
'group_limit': '1'
}),
equals(searchResult));
});
});
test('Documents.importDocuments throws ImportError if "success" is false',
() async {
when(mockDocumentsApiCall.post(
"/collections/companies/documents/import",
bodyParameters:
'''{"id":"124","company_name":"Stark Industries","num_employees":"5215","country":"USA"}
{"id":"125","company_name":"Acme Corp","num_employees":2133,"country":"CA"}''',
additionalHeaders: {contentType: 'text/plain'},
)).thenAnswer((realInvocation) => Future.value(
'''{"code":400,"document":"{\\"id\\": \\"124\\",\\"company_name\\": \\"Stark Industries\\",\\"num_employees\\": \\"5215\\",\\"country\\": \\"USA\\"}","error":"Field `num_employees` must be an int32.","success":false}
{"success":true}'''));
expect(() async {
await documents.importDocuments([
{
"id": "124",
"company_name": "Stark Industries",
"num_employees": "5215",
"country": "USA"
},
{
"id": "125",
"company_name": "Acme Corp",
"num_employees": 2133,
"country": "CA"
}
]);
},
throwsA(isA<ImportError>()
.having(
(e) => e.message,
'message',
'1 documents imported successfully, 1 documents failed during import. Use `error.importResults` from the raised exception to get a detailed error reason for each document.',
)
.having((e) => e.importResults, 'importResults', [
{
'code': 400,
'document':
'{"id": "124","company_name": "Stark Industries","num_employees": "5215","country": "USA"}',
'error': 'Field `num_employees` must be an int32.',
'success': false
},
{'success': true}
])));
});
}