generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathhydrate.test.js
518 lines (426 loc) · 16.9 KB
/
hydrate.test.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
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
import { expect } from '@esm-bundle/chai';
import sinon from 'sinon';
import '../../spectrum-web-components/dist/button.js';
import mas from './mas.js';
import {
hydrate,
processMnemonics,
processTitle,
processSize,
processPrices,
processBackgroundImage,
processCTAs,
processSubtitle,
processAnalytics,
ANALYTICS_TAG,
ANALYTICS_LINK_ATTR,
ANALYTICS_SECTION_ATTR,
} from '../src/hydrate.js';
import { AEM_FRAGMENT_MAPPING } from '../src/variants/ccd-slice.js';
import { mockFetch } from './mocks/fetch.js';
import { withWcs } from './mocks/wcs.js';
const mockMerchCard = () => {
const merchCard = document.createElement('div');
document.body.appendChild(merchCard);
const originalAppend = merchCard.append;
merchCard.append = sinon.spy(function () {
return originalAppend.apply(this, arguments);
});
return merchCard;
};
await mas();
await mockFetch(withWcs);
document.head.appendChild(document.createElement('mas-commerce-service'));
describe('processMnemonics', async () => {
it('should process mnemonics', async () => {
const fields = {
mnemonicIcon: ['www.adobe.com/icons/photoshop.svg'],
mnemonicAlt: [],
mnemonicLink: ['www.adobe.com'],
};
const merchCard = mockMerchCard();
const mnemonicsConfig = { size: 'm' };
processMnemonics(fields, merchCard, mnemonicsConfig);
expect(merchCard.outerHTML).to.equal(
'<div><merch-icon slot="icons" src="www.adobe.com/icons/photoshop.svg" size="m" href="https://www.adobe.com/"></merch-icon></div>',
);
});
});
describe('processTitle', async () => {
it('should process use tag and slot metadata', async () => {
const fields = { cardTitle: 'Photoshop' };
const merchCard = mockMerchCard();
const titleConfig = { tag: 'h2', slot: 'title' };
processTitle(fields, merchCard, titleConfig);
expect(merchCard.outerHTML).to.equal(
'<div><h2 slot="title">Photoshop</h2></div>',
);
});
});
describe('processSize', async () => {
it('should apply size', async () => {
const fields = { size: 'wide' };
const merchCard = mockMerchCard();
processSize(fields, merchCard, ['wide']);
expect(merchCard.outerHTML).to.equal('<div size="wide"></div>');
});
});
describe('processPrices', async () => {
it('should process prices', async () => {
const fields = {
prices: '<span>$9.99</span>',
};
const merchCard = mockMerchCard();
const pricesConfig = { tag: 'p', slot: 'prices' };
processPrices(fields, merchCard, pricesConfig);
expect(merchCard.outerHTML).to.equal(
'<div><p slot="prices"><span>$9.99</span></p></div>',
);
});
it('should preserve white spaces', async () => {
const fields = {
prices: 'Starting at <span is="inline-price" data-template="price" data-wcs-osi="nTbB50pS4lLGv_x1l_UKggd-lxxo2zAJ7WYDa2mW19s"></span>',
};
const merchCard = mockMerchCard();
const pricesConfig = { tag: 'p', slot: 'price' };
processPrices(fields, merchCard, pricesConfig);
await merchCard.querySelector('span[is="inline-price"]').onceSettled();
expect(merchCard.textContent).to.equal('Starting at US$22.19/mo');
});
});
describe('processCTAs', async () => {
let merchCard;
let aemFragmentMapping;
beforeEach(async () => {
merchCard = mockMerchCard();
aemFragmentMapping = {
ctas: {
slot: 'footer',
size: 'm',
},
};
});
afterEach(() => {
sinon.restore();
});
it('should not process CTAs when fields.ctas is falsy', async () => {
const fields = { ctas: null };
processCTAs(fields, merchCard, aemFragmentMapping);
expect(merchCard.append.called).to.be.false;
});
it('should create spectrum css buttons by default', async () => {
const fields = {
ctas: '<a is="checkout-link" data-wcs-osi="abm" class="accent">Click me</a>',
};
processCTAs(fields, merchCard, aemFragmentMapping);
const appendCall = merchCard.append.firstCall;
expect(appendCall).to.exist;
const footer = appendCall.args[0];
expect(footer.getAttribute('slot')).to.equal('footer');
const button = footer.firstChild;
expect(button.tagName.toLowerCase()).to.equal('button');
expect(button.className).to.equal(
'spectrum-Button spectrum-Button--accent spectrum-Button--sizeM',
);
});
it('should create spectrum wc buttons when merchCard.spectrum="swc"', async () => {
const fields = {
ctas: '<a is="checkout-link" data-wcs-osi="abm" class="accent">Click me</a>',
};
merchCard.spectrum = 'swc';
processCTAs(fields, merchCard, aemFragmentMapping);
const appendCall = merchCard.append.firstCall;
expect(appendCall).to.exist;
const footer = appendCall.args[0];
expect(footer.getAttribute('slot')).to.equal('footer');
const button = footer.firstChild;
expect(button.tagName.toLowerCase()).to.equal('sp-button');
expect(button.treatment).to.equal('fill');
expect(button.variant).to.equal('accent');
expect(button.getAttribute('tabindex')).to.equal('0');
expect(button.size).to.equal('m');
});
it('should create consonant buttons when merchCard.consonant is true', async () => {
// when a merch-card with a fields is rendered in a Milo page.
merchCard.consonant = true;
const fields = {
ctas: '<a is="checkout-link" data-wcs-osi="abm" class="accent">Click me</a>',
};
processCTAs(fields, merchCard, aemFragmentMapping);
const appendCall = merchCard.append.firstCall;
expect(appendCall).to.exist;
const footer = appendCall.args[0];
const link = footer.firstChild;
expect(link.classList.contains('con-button')).to.be.true;
expect(link.classList.contains('accent')).to.be.true;
});
it('should handle multiple CTAs', async () => {
const fields = {
ctas: `
<a is="checkout-link" data-wcs-osi="abm" class="accent">Accent</a>
<a is="checkout-link" data-wcs-osi="abm" class="primary">Primary</a>
<a is="checkout-link" data-wcs-osi="abm" class="secondary">Secondary</a>
`,
};
processCTAs(fields, merchCard, aemFragmentMapping);
const footer = merchCard.append.firstCall.args[0];
const buttons = footer.children;
expect(buttons).to.have.lengthOf(3);
expect(buttons[0].className).to.equal(
'spectrum-Button spectrum-Button--accent spectrum-Button--sizeM',
);
expect(buttons[1].className).to.equal(
'spectrum-Button spectrum-Button--primary spectrum-Button--sizeM',
);
expect(buttons[2].className).to.equal(
'spectrum-Button spectrum-Button--secondary spectrum-Button--sizeM',
);
});
it('should handle strong wrapped CTAs', async () => {
const fields = {
ctas: '<strong><a is="checkout-link" data-wcs-osi="abm" class="accent">Strong CTA</a></strong>',
};
processCTAs(fields, merchCard, aemFragmentMapping);
const footer = merchCard.append.firstCall.args[0];
const button = footer.firstChild;
expect(button.className).to.equal(
'spectrum-Button spectrum-Button--accent spectrum-Button--sizeM',
);
});
it('should handle outline CTAs', async () => {
const fields = {
ctas: '<a is="checkout-link" data-wcs-osi="abm" class="accent-outline">Outline CTA</a>',
};
processCTAs(fields, merchCard, aemFragmentMapping);
const footer = merchCard.append.firstCall.args[0];
const button = footer.firstChild;
expect(button.className).to.equal(
'spectrum-Button spectrum-Button--accent spectrum-Button--outline spectrum-Button--sizeM',
);
});
it('should handle link-style CTAs', async () => {
const fields = {
ctas: `<a is="checkout-link" data-wcs-osi="abm" class="primary-link">Link Style</a>
<a is="checkout-link" data-wcs-osi="abm">Link Style</a>`,
};
processCTAs(fields, merchCard, aemFragmentMapping, 'ccd-suggested');
const footer = merchCard.append.firstCall.args[0];
const link = footer.firstChild;
expect(link.tagName.toLowerCase()).to.equal('a');
expect(link.classList.contains('primary-link')).to.be.true;
});
it('should handle click events on spectrum buttons', async () => {
const fields = {
ctas: '<a is="checkout-link" href="#" data-wcs-osi="abm" class="accent"><span>Click me</span></a>',
};
processCTAs(fields, merchCard, aemFragmentMapping);
const footer = merchCard.append.firstCall.args[0];
const button = footer.firstChild;
const link = button.firstChild;
const span = link.firstChild;
let target;
link.addEventListener('click', (e) => {
target = e.target;
e.preventDefault(); // prevent infinite loop
});
const customEvent = new MouseEvent('click', {
bubbles: true,
cancelable: true,
view: window,
});
span.dispatchEvent(customEvent);
expect(target).to.equal(link);
});
});
describe('processSubtitle', () => {
let merchCard;
before(async () => {
await mas();
await mockFetch(withWcs);
});
beforeEach(() => {
merchCard = mockMerchCard();
});
afterEach(() => {
sinon.restore();
});
it('should not append subtitle when fields.subtitle is falsy', () => {
const fields = { subtitle: null };
const subtitleConfig = { tag: 'h3', slot: 'subtitle' };
processSubtitle(fields, merchCard, subtitleConfig);
expect(merchCard.append.called).to.be.false;
expect(merchCard.outerHTML).to.equal('<div></div>');
});
it('should not append subtitle when subtitleConfig is falsy', () => {
const fields = { subtitle: 'Test Subtitle' };
const subtitleConfig = null;
processSubtitle(fields, merchCard, subtitleConfig);
expect(merchCard.append.called).to.be.false;
expect(merchCard.outerHTML).to.equal('<div></div>');
});
it('should append subtitle with correct tag and slot', () => {
const fields = { subtitle: 'Test Subtitle' };
const subtitleConfig = { tag: 'h3', slot: 'subtitle' };
processSubtitle(fields, merchCard, subtitleConfig);
expect(merchCard.outerHTML).to.equal(
'<div><h3 slot="subtitle">Test Subtitle</h3></div>',
);
});
});
describe('processBackgroundImage', () => {
let merchCard;
beforeEach(() => {
merchCard = mockMerchCard();
});
afterEach(() => {
sinon.restore();
});
it('should not process background image when fields.backgroundImage is falsy', () => {
const fields = { backgroundImage: null };
const backgroundImageConfig = { tag: 'div', slot: 'background' };
const variant = 'ccd-slice';
processBackgroundImage(
fields,
merchCard,
backgroundImageConfig,
variant,
);
expect(merchCard.append.called).to.be.false;
expect(merchCard.outerHTML).to.equal('<div></div>');
});
it('should append background image for ccd-slice variant', () => {
const fields = { backgroundImage: 'test-image.jpg' };
const backgroundImageConfig = { tag: 'div', slot: 'background' };
const variant = 'ccd-slice';
processBackgroundImage(
fields,
merchCard,
backgroundImageConfig,
variant,
);
expect(merchCard.outerHTML).to.equal(
'<div><div slot="background"><img loading="lazy" src="test-image.jpg"></div></div>',
);
});
it('should set background-image attribute for ccd-suggested variant', () => {
const fields = { backgroundImage: 'test-image.jpg' };
const backgroundImageConfig = { tag: 'div', slot: 'background' };
const variant = 'ccd-suggested';
processBackgroundImage(
fields,
merchCard,
backgroundImageConfig,
variant,
);
expect(merchCard.outerHTML).to.equal(
'<div background-image="test-image.jpg"></div>',
);
});
it('should not process background image for unknown variant', () => {
const fields = { backgroundImage: 'test-image.jpg' };
const backgroundImageConfig = { tag: 'div', slot: 'background' };
const variant = 'unknown-variant';
processBackgroundImage(
fields,
merchCard,
backgroundImageConfig,
variant,
);
expect(merchCard.append.called).to.be.false;
expect(merchCard.outerHTML).to.equal('<div></div>');
});
it('should not append background image for ccd-slice when backgroundImageConfig is falsy', () => {
const fields = { backgroundImage: 'test-image.jpg' };
const backgroundImageConfig = null;
const variant = 'ccd-slice';
processBackgroundImage(
fields,
merchCard,
backgroundImageConfig,
variant,
);
expect(merchCard.append.called).to.be.false;
expect(merchCard.outerHTML).to.equal('<div></div>');
});
});
describe('processAnalytics', () => {
let merchCard;
beforeEach(() => {
merchCard = mockMerchCard();
});
afterEach(() => {
sinon.restore();
});
it('should not set analytics attributes if no fields.tags', () => {
const fields = {};
processAnalytics(fields, merchCard);
expect(merchCard.hasAttribute(ANALYTICS_SECTION_ATTR)).to.be.false;
expect(
merchCard.querySelectorAll(`a[${ANALYTICS_LINK_ATTR}]`).length,
).to.equal(0);
});
it(`should not set analytics attributes when no tags start with ${ANALYTICS_TAG}`, () => {
const fields = { tags: ['mas:term/montly'] };
processAnalytics(fields, merchCard);
expect(merchCard.hasAttribute(ANALYTICS_SECTION_ATTR)).to.be.false;
expect(
merchCard.querySelectorAll(`a[${ANALYTICS_LINK_ATTR}]`).length,
).to.equal(0);
});
it('should set analytics-section attribute on merchCard', () => {
const fields = { tags: ['mas:product_code/phsp'] };
processAnalytics(fields, merchCard);
expect(merchCard.getAttribute(ANALYTICS_SECTION_ATTR)).to.equal('phsp');
});
it('should set analytics-link attributes on links inside merchCard', () => {
const fields = { tags: ['mas:term/montly', 'mas:product_code/ccsn'] };
const seeTerms = document.createElement('a');
seeTerms.setAttribute('data-analytics-id', 'see-terms');
const buyNow = document.createElement('a');
buyNow.setAttribute('data-analytics-id', 'buy-now');
const noAnalytics = document.createElement('a');
merchCard.appendChild(seeTerms);
merchCard.appendChild(buyNow);
merchCard.appendChild(noAnalytics);
processAnalytics(fields, merchCard);
expect(merchCard.getAttribute(ANALYTICS_SECTION_ATTR)).to.equal('ccsn');
expect(seeTerms.getAttribute(ANALYTICS_LINK_ATTR)).to.equal(
'see-terms-1',
);
expect(buyNow.getAttribute(ANALYTICS_LINK_ATTR)).to.equal('buy-now-2');
// should handle only links with data-analytics-id attribute
expect(
merchCard.querySelectorAll(`a[${ANALYTICS_LINK_ATTR}]`).length,
).to.equal(2);
});
});
describe('hydrate', () => {
let merchCard;
beforeEach(() => {
merchCard = mockMerchCard();
});
afterEach(() => {
sinon.restore();
});
it('should hydrate a ccd-slice merch card', async () => {
const fragment = {
fields: {
variant: 'ccd-slice',
mnemonicIcon: ['www.adobe.com/icons/photoshop.svg'],
mnemonicAlt: [],
mnemonicLink: ['www.adobe.com'],
backgroundImage: 'test-image.jpg',
ctas: '<a is="checkout-link" data-wcs-osi="abm" class="accent" data-analytics-id="buy-now">Click me</a>',
tags: ['mas:term/montly', 'mas:product_code/ccsn'],
},
};
merchCard.variantLayout = { aemFragmentMapping: AEM_FRAGMENT_MAPPING };
await hydrate(fragment, merchCard);
expect(merchCard.getAttribute(ANALYTICS_SECTION_ATTR)).to.equal('ccsn');
expect(
merchCard
.querySelector(`a[data-analytics-id]`)
.getAttribute('daa-ll'),
).to.equal('buy-now-1');
});
});