forked from vendure-ecommerce/vendure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
facet.e2e-spec.ts
399 lines (352 loc) · 13.1 KB
/
facet.e2e-spec.ts
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
394
395
396
397
398
399
import gql from 'graphql-tag';
import path from 'path';
import { TEST_SETUP_TIMEOUT_MS } from './config/test-config';
import { FACET_VALUE_FRAGMENT, FACET_WITH_VALUES_FRAGMENT } from './graphql/fragments';
import {
CreateFacet,
CreateFacetValues,
DeleteFacet,
DeleteFacetValues,
DeletionResult,
FacetWithValues,
GetFacetList,
GetFacetWithValues,
GetProductListWithVariants,
GetProductWithVariants,
LanguageCode,
UpdateFacet,
UpdateFacetValues,
UpdateProduct,
UpdateProductVariants,
} from './graphql/generated-e2e-admin-types';
import {
CREATE_FACET,
GET_FACET_LIST,
GET_PRODUCT_WITH_VARIANTS,
UPDATE_FACET,
UPDATE_PRODUCT,
UPDATE_PRODUCT_VARIANTS,
} from './graphql/shared-definitions';
import { TestAdminClient } from './test-client';
import { TestServer } from './test-server';
// tslint:disable:no-non-null-assertion
describe('Facet resolver', () => {
const client = new TestAdminClient();
const server = new TestServer();
let brandFacet: FacetWithValues.Fragment;
let speakerTypeFacet: FacetWithValues.Fragment;
beforeAll(async () => {
await server.init({
productsCsvPath: path.join(__dirname, 'fixtures/e2e-products-full.csv'),
customerCount: 1,
});
await client.init();
}, TEST_SETUP_TIMEOUT_MS);
afterAll(async () => {
await server.destroy();
});
it('createFacet', async () => {
const result = await client.query<CreateFacet.Mutation, CreateFacet.Variables>(CREATE_FACET, {
input: {
isPrivate: false,
code: 'speaker-type',
translations: [{ languageCode: LanguageCode.en, name: 'Speaker Type' }],
values: [
{
code: 'portable',
translations: [{ languageCode: LanguageCode.en, name: 'Portable' }],
},
],
},
});
speakerTypeFacet = result.createFacet;
expect(speakerTypeFacet).toMatchSnapshot();
});
it('updateFacet', async () => {
const result = await client.query<UpdateFacet.Mutation, UpdateFacet.Variables>(UPDATE_FACET, {
input: {
id: speakerTypeFacet.id,
translations: [{ languageCode: LanguageCode.en, name: 'Speaker Category' }],
},
});
expect(result.updateFacet.name).toBe('Speaker Category');
});
it('createFacetValues', async () => {
const result = await client.query<CreateFacetValues.Mutation, CreateFacetValues.Variables>(
CREATE_FACET_VALUES,
{
input: [
{
facetId: speakerTypeFacet.id,
code: 'pc',
translations: [{ languageCode: LanguageCode.en, name: 'PC Speakers' }],
},
{
facetId: speakerTypeFacet.id,
code: 'hi-fi',
translations: [{ languageCode: LanguageCode.en, name: 'Hi Fi Speakers' }],
},
],
},
);
expect(result.createFacetValues).toMatchSnapshot();
});
it('updateFacetValues', async () => {
const result = await client.query<UpdateFacetValues.Mutation, UpdateFacetValues.Variables>(
UPDATE_FACET_VALUES,
{
input: [
{
id: speakerTypeFacet.values[0].id,
code: 'compact',
},
],
},
);
expect(result.updateFacetValues[0].code).toBe('compact');
});
it('facets', async () => {
const result = await client.query<GetFacetList.Query>(GET_FACET_LIST);
const { items } = result.facets;
expect(items.length).toBe(2);
expect(items[0].name).toBe('category');
expect(items[1].name).toBe('Speaker Category');
brandFacet = items[0];
speakerTypeFacet = items[1];
});
it('facet', async () => {
const result = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result.facet!.name).toBe('Speaker Category');
});
describe('deletion', () => {
let products: GetProductListWithVariants.Items[];
beforeAll(async () => {
// add the FacetValues to products and variants
const result1 = await client.query<GetProductListWithVariants.Query>(
GET_PRODUCTS_LIST_WITH_VARIANTS,
);
products = result1.products.items;
await client.query<UpdateProduct.Mutation, UpdateProduct.Variables>(UPDATE_PRODUCT, {
input: {
id: products[0].id,
facetValueIds: [speakerTypeFacet.values[0].id],
},
});
await client.query<UpdateProductVariants.Mutation, UpdateProductVariants.Variables>(
UPDATE_PRODUCT_VARIANTS,
{
input: [
{
id: products[0].variants[0].id,
facetValueIds: [speakerTypeFacet.values[0].id],
},
],
},
);
await client.query<UpdateProduct.Mutation, UpdateProduct.Variables>(UPDATE_PRODUCT, {
input: {
id: products[1].id,
facetValueIds: [speakerTypeFacet.values[1].id],
},
});
});
it('deleteFacetValues deletes unused facetValue', async () => {
const facetValueToDelete = speakerTypeFacet.values[2];
const result1 = await client.query<DeleteFacetValues.Mutation, DeleteFacetValues.Variables>(
DELETE_FACET_VALUES,
{
ids: [facetValueToDelete.id],
force: false,
},
);
const result2 = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result1.deleteFacetValues).toEqual([
{
result: DeletionResult.DELETED,
message: ``,
},
]);
expect(result2.facet!.values[0]).not.toEqual(facetValueToDelete);
});
it('deleteFacetValues for FacetValue in use returns NOT_DELETED', async () => {
const facetValueToDelete = speakerTypeFacet.values[0];
const result1 = await client.query<DeleteFacetValues.Mutation, DeleteFacetValues.Variables>(
DELETE_FACET_VALUES,
{
ids: [facetValueToDelete.id],
force: false,
},
);
const result2 = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result1.deleteFacetValues).toEqual([
{
result: DeletionResult.NOT_DELETED,
message: `The selected FacetValue is assigned to 1 Product, 1 ProductVariant`,
},
]);
expect(result2.facet!.values[0]).toEqual(facetValueToDelete);
});
it('deleteFacetValues for FacetValue in use can be force deleted', async () => {
const facetValueToDelete = speakerTypeFacet.values[0];
const result1 = await client.query<DeleteFacetValues.Mutation, DeleteFacetValues.Variables>(
DELETE_FACET_VALUES,
{
ids: [facetValueToDelete.id],
force: true,
},
);
expect(result1.deleteFacetValues).toEqual([
{
result: DeletionResult.DELETED,
message: `The selected FacetValue was removed from 1 Product, 1 ProductVariant and deleted`,
},
]);
// FacetValue no longer in the Facet.values array
const result2 = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result2.facet!.values[0]).not.toEqual(facetValueToDelete);
// FacetValue no longer in the Product.facetValues array
const result3 = await client.query<
GetProductWithVariants.Query,
GetProductWithVariants.Variables
>(GET_PRODUCT_WITH_VARIANTS, {
id: products[0].id,
});
expect(result3.product!.facetValues).toEqual([]);
});
it('deleteFacet that is in use returns NOT_DELETED', async () => {
const result1 = await client.query<DeleteFacet.Mutation, DeleteFacet.Variables>(DELETE_FACET, {
id: speakerTypeFacet.id,
force: false,
});
const result2 = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result1.deleteFacet).toEqual({
result: DeletionResult.NOT_DELETED,
message: `The selected Facet includes FacetValues which are assigned to 1 Product`,
});
expect(result2.facet).not.toBe(null);
});
it('deleteFacet that is in use can be force deleted', async () => {
const result1 = await client.query<DeleteFacet.Mutation, DeleteFacet.Variables>(DELETE_FACET, {
id: speakerTypeFacet.id,
force: true,
});
expect(result1.deleteFacet).toEqual({
result: DeletionResult.DELETED,
message: `The Facet was deleted and its FacetValues were removed from 1 Product`,
});
// FacetValue no longer in the Facet.values array
const result2 = await client.query<GetFacetWithValues.Query, GetFacetWithValues.Variables>(
GET_FACET_WITH_VALUES,
{
id: speakerTypeFacet.id,
},
);
expect(result2.facet).toBe(null);
// FacetValue no longer in the Product.facetValues array
const result3 = await client.query<
GetProductWithVariants.Query,
GetProductWithVariants.Variables
>(GET_PRODUCT_WITH_VARIANTS, {
id: products[1].id,
});
expect(result3.product!.facetValues).toEqual([]);
});
it('deleteFacet with no FacetValues works', async () => {
const { createFacet } = await client.query<CreateFacet.Mutation, CreateFacet.Variables>(
CREATE_FACET,
{
input: {
code: 'test',
isPrivate: false,
translations: [{ languageCode: LanguageCode.en, name: 'Test' }],
},
},
);
const result = await client.query<DeleteFacet.Mutation, DeleteFacet.Variables>(DELETE_FACET, {
id: createFacet.id,
force: false,
});
expect(result.deleteFacet.result).toBe(DeletionResult.DELETED);
});
});
});
export const GET_FACET_WITH_VALUES = gql`
query GetFacetWithValues($id: ID!) {
facet(id: $id) {
...FacetWithValues
}
}
${FACET_WITH_VALUES_FRAGMENT}
`;
const DELETE_FACET_VALUES = gql`
mutation DeleteFacetValues($ids: [ID!]!, $force: Boolean) {
deleteFacetValues(ids: $ids, force: $force) {
result
message
}
}
`;
const DELETE_FACET = gql`
mutation DeleteFacet($id: ID!, $force: Boolean) {
deleteFacet(id: $id, force: $force) {
result
message
}
}
`;
const GET_PRODUCTS_LIST_WITH_VARIANTS = gql`
query GetProductListWithVariants {
products {
items {
id
name
variants {
id
name
}
}
totalItems
}
}
`;
export const CREATE_FACET_VALUES = gql`
mutation CreateFacetValues($input: [CreateFacetValueInput!]!) {
createFacetValues(input: $input) {
...FacetValue
}
}
${FACET_VALUE_FRAGMENT}
`;
export const UPDATE_FACET_VALUES = gql`
mutation UpdateFacetValues($input: [UpdateFacetValueInput!]!) {
updateFacetValues(input: $input) {
...FacetValue
}
}
${FACET_VALUE_FRAGMENT}
`;