@contrail/flexplm 1.1.51 → 1.1.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,354 @@
1
+ import { MapFileUtil } from "@contrail/transform-data";
2
+ import { IdentifierConversion } from "./identifier-conversion";
3
+ import { DataConverter } from "../util/data-converter";
4
+ import { FCConfig } from "../interfaces/interfaces";
5
+ import { Entities } from "@contrail/sdk";
6
+
7
+ const mapFile1Data = require('./identifier-conversion-spec-mockData');
8
+ const mapFile1Mappings = mapFile1Data?.mapping;
9
+ const mapFile2Mappings = mapFile1Data?.mapping2;
10
+ const mappings = {
11
+ mapFile1: mapFile1Mappings,
12
+ mapFile2: mapFile2Mappings
13
+ };
14
+
15
+ describe('getAssortmentFromObject', () => {
16
+ const transformMapFile1 = 'mapFile1';
17
+ const transformMapFile2 = 'mapFile2';
18
+ const config = {} as FCConfig;
19
+ const mapFileUtil = new MapFileUtil(new Entities());
20
+ mapFileUtil.getMapFile = async (fileId: string) => {
21
+ return mappings[fileId];
22
+ };
23
+ const dc = new DataConverter(config, mapFileUtil);
24
+ dc.getEntityValues = async (objectClass: string, data: any, keysToSkip: string[] = []) => {
25
+ const entityValues = {};
26
+ for (const key of Object.keys(data)) {
27
+ const value = data[key];
28
+ if (value) {
29
+ const to = typeof value;
30
+ if (['string', 'number', 'boolean'].includes(to)) {
31
+ entityValues[key] = value;
32
+ } else if (Array.isArray(value)) {
33
+ //multi select
34
+ entityValues[key] = value.map((v) => v.value);
35
+ } else if (value.value) {
36
+ //single select
37
+ entityValues[key] = value.value;
38
+ }
39
+ }
40
+ }
41
+ return entityValues;
42
+ };
43
+
44
+ it('should error if no object is provided', async () => {
45
+ try {
46
+ await IdentifierConversion.getAssortmentCriteriaFromObject(transformMapFile1, mapFileUtil, dc, null);
47
+ } catch (e) {
48
+ expect(e.message).toEqual(expect.stringContaining(IdentifierConversion.MISSING_OBJECT));
49
+ }
50
+ });
51
+
52
+ it('should error if no flexPLMObjectClass is provided', async () => {
53
+ try {
54
+ await IdentifierConversion.getAssortmentCriteriaFromObject(transformMapFile1, mapFileUtil, dc, {});
55
+ } catch (e) {
56
+ expect(e.message).toEqual(expect.stringContaining(IdentifierConversion.MISSING_FLEXPLM_OBJECT_CLASS));
57
+ }
58
+ });
59
+
60
+ it('should return the assortment criteria from the object - flexPLMSeasonName', async () => {
61
+ const object = {
62
+ "brand": {
63
+ "display": "Vibe IQ",
64
+ "value": "vibeiq"
65
+ },
66
+ "flexPLMObjectClass": "LCSSeason",
67
+ "flexPLMTypePath": "Season",
68
+ "seasonName": "Vibe IQ Spring 2004",
69
+ "seasonType": {
70
+ "display": "Spring",
71
+ "value": "spring"
72
+ },
73
+ "year": {
74
+ "display": "2004",
75
+ "value": "2004"
76
+ }
77
+ };
78
+ const criteriaObject = {
79
+ flexPLMObjectClass: 'LCSSeason',
80
+ flexPLMSeasonName: 'Vibe IQ Spring 2004',
81
+ flexPLMTypePath: 'Season'
82
+ };
83
+ const resultsObject = {
84
+ flexPLMSeasonName: 'Vibe IQ Spring 2004'
85
+ };
86
+ let getEntityValuesSpyOn = undefined
87
+ try {
88
+
89
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
90
+ const result = await IdentifierConversion.getAssortmentCriteriaFromObject(transformMapFile1, mapFileUtil, dc, object);
91
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSSeason', criteriaObject, []);
92
+ expect(result).toEqual(resultsObject);
93
+ } finally {
94
+ if (getEntityValuesSpyOn) {
95
+ getEntityValuesSpyOn.mockRestore();
96
+ }
97
+ }
98
+ });
99
+
100
+ it('should return the assortment criteria from the object - brand,year,seasonType', async () => {
101
+ const object = {
102
+ brand: {
103
+ display: "Vibe IQ",
104
+ value: "vibeiq"
105
+ },
106
+ flexPLMObjectClass: "LCSSeason",
107
+ flexPLMTypePath: "Season",
108
+ seasonName: "Vibe IQ Spring 2004",
109
+ seasonType: {
110
+ display: "Spring",
111
+ value: "spring"
112
+ },
113
+ year: {
114
+ "display": "2004",
115
+ "value": "2004"
116
+ }
117
+ };
118
+ const criteriaObject = {
119
+ flexPLMObjectClass: 'LCSSeason',
120
+ brand: {
121
+ "display": "Vibe IQ",
122
+ "value": "vibeiq"
123
+ },
124
+ year: {
125
+ "display": "2004",
126
+ "value": "2004"
127
+ },
128
+ seasonType: {
129
+ "display": "Spring",
130
+ "value": "spring"
131
+ },
132
+ flexPLMTypePath: 'Season'
133
+ };
134
+ const resultsObject = {
135
+ brand: 'vibeiq',
136
+ year: '2004',
137
+ seasonType: 'spring'
138
+ };
139
+ let getEntityValuesSpyOn = undefined
140
+ try {
141
+
142
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
143
+ const result = await IdentifierConversion.getAssortmentCriteriaFromObject(transformMapFile2, mapFileUtil, dc, object);
144
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSSeason', criteriaObject, []);
145
+ expect(result).toEqual(resultsObject);
146
+ } finally {
147
+ if (getEntityValuesSpyOn) {
148
+ getEntityValuesSpyOn.mockRestore();
149
+ }
150
+ }
151
+ });
152
+
153
+ });
154
+
155
+ describe('getItemCriteriaFromObject', () => {
156
+ const transformMapFile1 = 'mapFile1';
157
+ const transformMapFile2 = 'mapFile2';
158
+ const config = {} as FCConfig;
159
+ const mapFileUtil = new MapFileUtil(new Entities());
160
+ mapFileUtil.getMapFile = async (fileId: string) => {
161
+ return mappings[fileId];
162
+ };
163
+ const dc = new DataConverter(config, mapFileUtil);
164
+ dc.getEntityValues = async (objectClass: string, data: any, keysToSkip: string[] = []) => {
165
+ const entityValues = {};
166
+ for (const key of Object.keys(data)) {
167
+ const value = data[key];
168
+ if (value) {
169
+ const to = typeof value;
170
+ if (['string', 'number', 'boolean'].includes(to)) {
171
+ entityValues[key] = value;
172
+ } else if (Array.isArray(value)) {
173
+ //multi select
174
+ entityValues[key] = value.map((v) => v.value);
175
+ } else if (value.value) {
176
+ //single select
177
+ entityValues[key] = value.value;
178
+ }
179
+ }
180
+ }
181
+ return entityValues;
182
+ };
183
+
184
+ it('should error if no object is provided', async () => {
185
+ try {
186
+ await IdentifierConversion.getItemCriteriaFromObject(transformMapFile1, mapFileUtil, dc, null);
187
+ } catch (e) {
188
+ expect(e.message).toEqual(expect.stringContaining(IdentifierConversion.MISSING_OBJECT));
189
+ }
190
+ });
191
+
192
+ it('should error if no flexPLMObjectClass is provided', async () => {
193
+ try {
194
+ await IdentifierConversion.getItemCriteriaFromObject(transformMapFile1, mapFileUtil, dc, {});
195
+ } catch (e) {
196
+ expect(e.message).toEqual(expect.stringContaining(IdentifierConversion.MISSING_FLEXPLM_OBJECT_CLASS));
197
+ }
198
+ });
199
+
200
+ it('should error if missing identifier properties -itemNumber', async () => {
201
+ const object = {
202
+ "flexBoolean": false,
203
+ "flexMultiSelect": [
204
+ ],
205
+ "flexNumber": 0,
206
+ "flexPLMObjectClass": "LCSProduct",
207
+ "flexPLMTypePath": "Product\\Pants",
208
+ "flexSingleList": {
209
+ "display": "Five",
210
+ "value": "five"
211
+ },
212
+ "productName": "Feb 3 - 1 Option A",
213
+ "NotvibeIQIdentifier": 966
214
+ };
215
+ const criteriaObject = {
216
+ flexPLMObjectClass: 'LCSProduct',
217
+ flexPLMTypePath: 'Product\\Pants',
218
+ };
219
+
220
+ let getEntityValuesSpyOn = undefined
221
+ try {
222
+
223
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
224
+ await IdentifierConversion.getItemCriteriaFromObject(transformMapFile1, mapFileUtil, dc, object);
225
+ }catch (e) {
226
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSProduct', criteriaObject, []);
227
+ expect(e.message).toEqual(expect.stringContaining(IdentifierConversion.INBOUND_ENTITY_MISSING_IDENIFIER_PROPS));
228
+
229
+ } finally {
230
+ if (getEntityValuesSpyOn) {
231
+ getEntityValuesSpyOn.mockRestore();
232
+ }
233
+ }
234
+ });
235
+
236
+ it('should return the item family criteria from the object -itemNumber', async () => {
237
+ const object = {
238
+ "flexBoolean": false,
239
+ "flexMultiSelect": [
240
+ ],
241
+ "flexNumber": 0,
242
+ "flexPLMObjectClass": "LCSProduct",
243
+ "flexPLMTypePath": "Product\\Pants",
244
+ "flexSingleList": {
245
+ "display": "Five",
246
+ "value": "five"
247
+ },
248
+ "productName": "Feb 3 - 1 Option A",
249
+ "vibeIQIdentifier": 966
250
+ };
251
+ const criteriaObject = {
252
+ flexPLMObjectClass: 'LCSProduct',
253
+ itemNumber: 966,
254
+ flexPLMTypePath: 'Product\\Pants',
255
+ };
256
+ const resultsObject = {
257
+ roles: 'family',
258
+ itemNumber: 966
259
+ };
260
+ let getEntityValuesSpyOn = undefined
261
+ try {
262
+
263
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
264
+ const result = await IdentifierConversion.getItemCriteriaFromObject(transformMapFile1, mapFileUtil, dc, object);
265
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSProduct', criteriaObject, []);
266
+ expect(result).toEqual(resultsObject);
267
+ } finally {
268
+ if (getEntityValuesSpyOn) {
269
+ getEntityValuesSpyOn.mockRestore();
270
+ }
271
+ }
272
+ });
273
+
274
+ it('should return the item option criteria from the object -itemNumber', async () => {
275
+ const object = {
276
+ "flexBoolean": false,
277
+ "flexMultiSelect": [
278
+ ],
279
+ "flexNumber": 0,
280
+ "flexPLMObjectClass": "LCSSKU",
281
+ "flexPLMTypePath": "Product\\Pants",
282
+ "flexSingleList": {
283
+ "display": "Five",
284
+ "value": "five"
285
+ },
286
+ "productName": "Feb 3 - 1 Option A",
287
+ "vibeIQIdentifier": 2876
288
+ };
289
+ const criteriaObject = {
290
+ flexPLMObjectClass: 'LCSSKU',
291
+ itemNumber: 2876,
292
+ flexPLMTypePath: 'Product\\Pants',
293
+ };
294
+ const resultsObject = {
295
+ roles: 'color',
296
+ itemNumber: 2876
297
+ };
298
+ let getEntityValuesSpyOn = undefined
299
+ try {
300
+
301
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
302
+ const result = await IdentifierConversion.getItemCriteriaFromObject(transformMapFile1, mapFileUtil, dc, object);
303
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSSKU', criteriaObject, []);
304
+ expect(result).toEqual(resultsObject);
305
+ } finally {
306
+ if (getEntityValuesSpyOn) {
307
+ getEntityValuesSpyOn.mockRestore();
308
+ }
309
+ }
310
+ });
311
+
312
+ it('should return the item option criteria from the object -uniqueIdentifierA, uniqueIdentifierB', async () => {
313
+ const object = {
314
+ "flexBoolean": false,
315
+ "flexMultiSelect": [
316
+ ],
317
+ "flexNumber": 0,
318
+ "flexPLMObjectClass": "LCSSKU",
319
+ "flexPLMTypePath": "Product\\Pants",
320
+ "flexSingleList": {
321
+ "display": "Five",
322
+ "value": "five"
323
+ },
324
+ "productName": "Feb 3 - 1 Option A",
325
+ uniqueIdentifierA: 28,
326
+ uniqueIdentifierB: 29,
327
+ "vibeIQIdentifier": 2876
328
+ };
329
+ const criteriaObject = {
330
+ flexPLMObjectClass: 'LCSSKU',
331
+ uniqueIdentifierA: 28,
332
+ uniqueIdentifierB: 29,
333
+ flexPLMTypePath: 'Product\\Pants',
334
+ };
335
+ const resultsObject = {
336
+ roles: 'color',
337
+ uniqueIdentifierA: 28,
338
+ uniqueIdentifierB: 29,
339
+ };
340
+ let getEntityValuesSpyOn = undefined
341
+ try {
342
+
343
+ getEntityValuesSpyOn = jest.spyOn(dc, 'getEntityValues');
344
+ const result = await IdentifierConversion.getItemCriteriaFromObject(transformMapFile2, mapFileUtil, dc, object);
345
+ expect(getEntityValuesSpyOn).toHaveBeenCalledWith('LCSSKU', criteriaObject, []);
346
+ expect(result).toEqual(resultsObject);
347
+ } finally {
348
+ if (getEntityValuesSpyOn) {
349
+ getEntityValuesSpyOn.mockRestore();
350
+ }
351
+ }
352
+ });
353
+
354
+ });
@@ -3,8 +3,14 @@ import { ProductFederation, SeasonFederation, SeasonGroupFederation, SkuFederati
3
3
  import { MapUtil } from "../util/map-utils";
4
4
  import { TypeConversionUtils } from "../util/type-conversion-utils";
5
5
  import { DataConverter } from "../util/data-converter";
6
+ import { EventShortMessageStatus } from "../util/event-short-message-status";
6
7
 
7
8
  export class IdentifierConversion {
9
+ static readonly INBOUND_ENTITY_MISSING_IDENIFIER_PROPS = 'IdentifierConversion.getEntityCriteriaFromObject(): missing identifier properties: ';
10
+
11
+ static readonly MISSING_OBJECT = 'IdentifierConversion.getEntityCriteriaFromObject(): missing: object';
12
+
13
+ static readonly MISSING_FLEXPLM_OBJECT_CLASS = 'IdentifierConversion.getEntityCriteriaFromObject(): missing: flexPLMObjectClass';
8
14
 
9
15
  /** Takes in an assortment and returns an object to query for an LCSSeason
10
16
  * This will only return the identifier properties, and information properties if specified.
@@ -223,4 +229,54 @@ export class IdentifierConversion {
223
229
 
224
230
  return skuObj as SkuFederation;
225
231
  }
232
+
233
+ static async getEntityCriteriaFromObject(transformMapFile: string, mapFileUtil: MapFileUtil, dc: DataConverter, object: any): Promise<any> {
234
+ if(!object){
235
+ const e =new Error(IdentifierConversion.MISSING_OBJECT)
236
+ e['shortStatusMessage'] = EventShortMessageStatus.MISSING_INPUT;
237
+ throw e;
238
+ } else if(!object.flexPLMObjectClass){
239
+ const e = new Error(IdentifierConversion.MISSING_FLEXPLM_OBJECT_CLASS);
240
+ e['shortStatusMessage'] = EventShortMessageStatus.MISSING_INPUT;
241
+ throw e;
242
+ }
243
+ const mapKey: string = await TypeConversionUtils.getMapKeyFromObject(transformMapFile, mapFileUtil, object, TypeConversionUtils.FLEX2VIBE_DIRECTION);
244
+
245
+ const identifierKeys: string[] = await TypeConversionUtils.getIdentifierPropertiesFromObject(transformMapFile, mapFileUtil, object);
246
+ const objectData = await MapUtil.applyTransformMap(transformMapFile, mapFileUtil, object, mapKey, TypeConversionUtils.FLEX2VIBE_DIRECTION);
247
+
248
+ let identifierValues = identifierKeys.reduce((acc, key) => {
249
+ acc[key] = objectData[key];
250
+ return acc;
251
+ }, {});
252
+ identifierValues['flexPLMObjectClass']= objectData?.flexPLMObjectClass;
253
+ identifierValues['flexPLMTypePath']= objectData?.flexPLMTypePath;
254
+
255
+ identifierValues = await dc.getEntityValues(objectData?.flexPLMObjectClass, identifierValues, []);
256
+
257
+ const entityKeys = Object.keys(identifierValues);
258
+ const hasAllIdentifiers = identifierKeys.every(key => entityKeys.includes(key));
259
+ if (!hasAllIdentifiers) {
260
+ const e = new Error(IdentifierConversion.INBOUND_ENTITY_MISSING_IDENIFIER_PROPS + identifierKeys);
261
+ e['shortStatusMessage'] = EventShortMessageStatus.MISSING_IDENTIFIER_PROPERTIES;
262
+
263
+ throw e;
264
+ }
265
+ const criteria = {};
266
+ for (const key of identifierKeys) {
267
+ criteria[key] = identifierValues[key];
268
+ }
269
+ return criteria;
270
+ }
271
+ static async getAssortmentCriteriaFromObject(transformMapFile: string, mapFileUtil: MapFileUtil, dc: DataConverter, object: any): Promise<any> {
272
+ return IdentifierConversion.getEntityCriteriaFromObject(transformMapFile, mapFileUtil, dc, object);
273
+ }
274
+
275
+ static async getItemCriteriaFromObject(transformMapFile: string, mapFileUtil: MapFileUtil, dc: DataConverter, object: any): Promise<any> {
276
+ const criteria = await IdentifierConversion.getEntityCriteriaFromObject(transformMapFile, mapFileUtil, dc, object);
277
+ const roles = (object.flexPLMObjectClass === 'LCSProduct') ? 'family' : 'color';
278
+ criteria['roles'] = roles;
279
+
280
+ return criteria;
281
+ }
226
282
  }
@@ -0,0 +1,17 @@
1
+ export enum EventShortMessageStatus {
2
+ SUCCESS = 'Success',
3
+ FAILURE = 'Failure',
4
+ CREATED = 'Created',
5
+ MISSING_IDENTIFIER_PROPERTIES = 'Missing_identifier_properties',
6
+ MISSING_INPUT = 'Missing_input',
7
+ NOT_CREATABLE = 'Not_creatable',
8
+ NO_CHANGES = 'No_Changes',
9
+ TOO_MANY_ENTITIES_FOUND = 'Too_Many_Entities_Found',
10
+ UPDATED = 'Updated',
11
+
12
+ //Publish
13
+ NOT_PUBLISHABLE = 'Not_Publishable',
14
+ NO_FEDERATION_INFO = 'No_Federation_Information',
15
+ NO_EVENTS_TO_SEND = 'No_Events_to_Send',
16
+
17
+ }
@@ -58,8 +58,10 @@ export class FlexPLMConnect {
58
58
  const message = 'Error connecting to FlexPLM:status: ' + response.status;
59
59
  console.error(message);
60
60
  console.error(await response.text());
61
- throw new Error(message);
62
- }
61
+ const e = new Error(message);
62
+ e['httpResponseStatus'] = response.status;
63
+ throw e;
64
+ }
63
65
 
64
66
  try{
65
67
 
@@ -130,7 +132,9 @@ export class FlexPLMConnect {
130
132
  const message = 'Error sending data to FlexPLM:status: ' + response.status;
131
133
  console.error(message);
132
134
  console.error(await response.text());
133
- throw new Error(message);
135
+ const e = new Error(message);
136
+ e['httpResponseStatus'] = status;
137
+ throw e;
134
138
  }
135
139
 
136
140
  try{