-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalogs.test.ts
More file actions
393 lines (336 loc) · 11.4 KB
/
catalogs.test.ts
File metadata and controls
393 lines (336 loc) · 11.4 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
import { afterAll, beforeAll, describe, expect, it } from "@jest/globals";
import { IterableClient } from "../../src/client";
import {
cleanupTestUser,
createTestIdentifiers,
uniqueId,
waitForCatalogItems,
withTimeout,
} from "../utils/test-helpers";
describe("Catalog Management Integration Tests", () => {
let client: IterableClient;
const { testUserEmail } = createTestIdentifiers();
beforeAll(async () => {
client = new IterableClient();
});
afterAll(async () => {
await cleanupTestUser(client, testUserEmail);
client.destroy();
});
it("get nonexistent catalog item should 404", async () => {
await expect(
client.getCatalogItem({ catalogName: "nonexistent-catalog", itemId: "nonexistent-item" })
).rejects.toMatchObject({
statusCode: 404,
});
});
it("should get catalogs", async () => {
const result = await withTimeout(client.getCatalogs());
expect(result).toBeDefined();
// API returns different structure than documented, just verify it's defined
expect(typeof result).toBe("object");
});
it("should get catalog field mappings with correct structure", async () => {
// Create a test catalog
const catalogName = uniqueId("test-catalog-mappings");
await withTimeout(client.createCatalog({ catalogName }));
// Add some items to the catalog with various field types
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: uniqueId("test-item"),
name: "Test Item",
price: 10.99,
dataFields: {
category: "test",
inStock: true,
},
},
],
})
);
const result = await withTimeout(
client.getCatalogFieldMappings({ catalogName })
);
expect(result).toBeDefined();
// Verify response has correct structure per API docs
expect(result).toHaveProperty("definedMappings");
expect(result).toHaveProperty("undefinedFields");
expect(typeof result.definedMappings).toBe("object");
expect(Array.isArray(result.undefinedFields)).toBe(true);
});
it("should get catalog items", async () => {
// Always create a fresh test catalog to ensure clean test state
const catalogName = uniqueId("test-catalog-items");
await withTimeout(client.createCatalog({ catalogName }));
const itemId1 = uniqueId("catalog-items-test-1");
const itemId2 = uniqueId("catalog-items-test-2");
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: itemId1,
name: "Catalog Items Test Item 1",
price: 5.99,
dataFields: {
category: "test",
},
},
{
id: itemId2,
name: "Catalog Items Test Item 2",
price: 7.99,
dataFields: {
category: "test",
},
},
],
})
);
// Wait for catalog items to propagate using eventual consistency and get the result
const result = await waitForCatalogItems(client, catalogName, [
itemId1,
itemId2,
]); // 90 second timeout
expect(result).toBeDefined();
expect(result.catalogItemsWithProperties).toBeDefined();
expect(Array.isArray(result.catalogItemsWithProperties)).toBe(true);
expect(result).toHaveProperty("totalItemsCount");
expect(typeof result.totalItemsCount).toBe("number");
// Verify we got the expected items
expect(result.catalogItemsWithProperties.length).toBeGreaterThan(0);
const firstItem = result.catalogItemsWithProperties[0];
expect(firstItem).toHaveProperty("itemId");
expect(firstItem).toHaveProperty("value");
}, 120000); // 2 minute timeout for eventual consistency
it("should handle pagination parameters for catalog items", async () => {
// Always create a fresh test catalog for pagination testing
const catalogName = uniqueId("test-catalog-pagination");
await withTimeout(client.createCatalog({ catalogName }));
const itemId1 = uniqueId("pagination-test-1");
const itemId2 = uniqueId("pagination-test-2");
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: itemId1,
name: "Pagination Test Item 1",
price: 5.99,
},
{
id: itemId2,
name: "Pagination Test Item 2",
price: 7.99,
},
],
})
);
// Wait for catalog items to propagate using eventual consistency
const waitResult = await waitForCatalogItems(client, catalogName, [
itemId1,
itemId2,
]);
// Verify basic structure from wait result
expect(waitResult).toBeDefined();
expect(waitResult.catalogItemsWithProperties).toBeDefined();
expect(Array.isArray(waitResult.catalogItemsWithProperties)).toBe(true);
expect(waitResult.catalogItemsWithProperties.length).toBeGreaterThan(0);
// Test pagination parameters with a separate call
const paginatedResult = await withTimeout(
client.getCatalogItems({
catalogName,
page: 1,
pageSize: 5,
})
);
expect(paginatedResult).toBeDefined();
expect(paginatedResult.catalogItemsWithProperties).toBeDefined();
expect(Array.isArray(paginatedResult.catalogItemsWithProperties)).toBe(
true
);
expect(
paginatedResult.catalogItemsWithProperties.length
).toBeLessThanOrEqual(5);
expect(paginatedResult.catalogItemsWithProperties.length).toBeGreaterThan(
0
);
// Should have pagination metadata
expect(paginatedResult).toHaveProperty("totalItemsCount");
// If there are more results than page size, should have nextPageUrl
if (paginatedResult.totalItemsCount > 5) {
expect(paginatedResult).toHaveProperty("nextPageUrl");
}
}, 120000); // 2 minute timeout for eventual consistency
it("should delete a catalog", async () => {
// Create a test catalog to delete
const catalogName = uniqueId("test-catalog-delete");
await withTimeout(client.createCatalog({ catalogName }));
// Delete the catalog
const result = await withTimeout(client.deleteCatalog({ catalogName }));
expect(result).toBeDefined();
expect(result).toHaveProperty("msg");
expect(result).toHaveProperty("code");
// Verify deletion by trying to get the catalog (should fail)
// Note: We can't test this right away due to eventual consistency
});
it("should update catalog field mappings", async () => {
// Create a test catalog
const catalogName = uniqueId("test-catalog-field-mappings");
await withTimeout(client.createCatalog({ catalogName }));
// Add items with some fields first
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: uniqueId("test-item"),
name: "Test Item",
dataFields: {
price: 19.99,
quantity: 10,
},
},
],
})
);
// Update field mappings
const result = await withTimeout(
client.updateCatalogFieldMappings({
catalogName,
mappingsUpdates: [
{ fieldName: "price", fieldType: "double" },
{ fieldName: "quantity", fieldType: "long" },
],
})
);
expect(result).toBeDefined();
expect(result).toHaveProperty("msg");
expect(result).toHaveProperty("code");
// Verify mappings were set by getting them
const mappings = await withTimeout(
client.getCatalogFieldMappings({ catalogName })
);
expect(mappings.definedMappings).toBeDefined();
// The API should have set the mappings we requested
});
it("should bulk delete catalog items", async () => {
// Create a test catalog
const catalogName = uniqueId("test-catalog-bulk-delete");
await withTimeout(client.createCatalog({ catalogName }));
const itemId1 = uniqueId("bulk-delete-1");
const itemId2 = uniqueId("bulk-delete-2");
const itemId3 = uniqueId("bulk-delete-3");
// Create items
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{ id: itemId1, name: "Item 1", price: 10 },
{ id: itemId2, name: "Item 2", price: 20 },
{ id: itemId3, name: "Item 3", price: 30 },
],
})
);
// Wait for items to be created
await waitForCatalogItems(client, catalogName, [itemId1, itemId2, itemId3]);
// Bulk delete two items
const result = await withTimeout(
client.bulkDeleteCatalogItems({
catalogName,
itemIds: [itemId1, itemId2],
})
);
expect(result).toBeDefined();
expect(result).toHaveProperty("msg");
expect(result).toHaveProperty("code");
// Note: Actual deletion is asynchronous, we're just verifying the request format
}, 120000);
it("should partial update a catalog item", async () => {
// Create a test catalog
const catalogName = uniqueId("test-catalog-patch");
await withTimeout(client.createCatalog({ catalogName }));
const itemId = uniqueId("patch-item");
// Create an item with multiple fields
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: itemId,
name: "Original Item",
price: 100,
dataFields: {
description: "Original description",
category: "electronics",
inStock: true,
},
},
],
})
);
// Wait for item to be created
await waitForCatalogItems(client, catalogName, [itemId]);
// Partial update - only update price and inStock
const updateResult = await withTimeout(
client.partialUpdateCatalogItem({
catalogName,
itemId,
update: {
price: 89.99,
inStock: false,
},
})
);
expect(updateResult).toBeDefined();
expect(updateResult).toHaveProperty("msg");
expect(updateResult).toHaveProperty("code");
// Note: We're testing the request format, not verifying the actual update
// due to eventual consistency
}, 120000);
it("should replace a catalog item", async () => {
// Create a test catalog
const catalogName = uniqueId("test-catalog-replace");
await withTimeout(client.createCatalog({ catalogName }));
const itemId = uniqueId("replace-item");
// Create an item with multiple fields
await withTimeout(
client.updateCatalogItems({
catalogName,
items: [
{
id: itemId,
name: "Original Item",
price: 100,
dataFields: {
description: "Original description",
category: "electronics",
inStock: true,
},
},
],
})
);
// Wait for item to be created
await waitForCatalogItems(client, catalogName, [itemId]);
// Replace item - completely new value with fewer fields
const replaceResult = await withTimeout(
client.replaceCatalogItem({
catalogName,
itemId,
value: {
name: "Replaced Item",
price: 50,
},
})
);
expect(replaceResult).toBeDefined();
expect(replaceResult).toHaveProperty("msg");
expect(replaceResult).toHaveProperty("code");
// Note: We're testing the request format, not verifying the actual replacement
// due to eventual consistency
}, 120000);
});