-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstylesheet-loader.spec.ts
190 lines (142 loc) · 6.26 KB
/
stylesheet-loader.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
import { createRequestSender, RequestSender } from '@bigcommerce/request-sender';
import BrowserSupport from './browser-support';
import StylesheetLoader from './stylesheet-loader';
describe('StylesheetLoader', () => {
let browserSupport: BrowserSupport;
let loader: StylesheetLoader;
let requestSender: RequestSender;
let stylesheet: HTMLLinkElement;
beforeEach(() => {
browserSupport = new BrowserSupport();
requestSender = createRequestSender();
stylesheet = document.createElement('link');
jest.spyOn(browserSupport, 'canSupportRel')
.mockReturnValue(true);
jest.spyOn(requestSender, 'get')
.mockReturnValue(Promise.resolve({} as any));
jest.spyOn(document, 'createElement')
.mockImplementation(() => stylesheet);
loader = new StylesheetLoader(
browserSupport,
requestSender
);
});
afterEach(() => {
jest.restoreAllMocks();
});
describe('when stylesheet loads successfully', () => {
beforeEach(() => {
jest.spyOn(document.head, 'appendChild')
.mockImplementation(element => {
setTimeout(() => (element as HTMLElement).onload!(new Event('load')), 0);
return element;
});
});
it('attaches link tag to document', async () => {
await loader.loadStylesheet('https://foo.bar/hello-world.css');
expect(document.head.appendChild)
.toHaveBeenCalledWith(stylesheet);
expect(stylesheet.href)
.toEqual('https://foo.bar/hello-world.css');
});
it('resolves promise if stylesheet is loaded', async () => {
const output = await loader.loadStylesheet('https://foo.bar/hello-world.css');
expect(output)
.toBeUndefined();
});
it('does not load same stylesheet twice', async () => {
await loader.loadStylesheet('https://foo.bar/hello-world.css');
await loader.loadStylesheet('https://foo.bar/hello-world.css');
expect(document.head.appendChild)
.toHaveBeenCalledTimes(1);
});
it('attaches stylesheet tag to document with data attributes', async () => {
await loader.loadStylesheet(
'https://foo.bar/hello-world.css',
{prepend: true, attributes: {'data-attribute1': '1', 'data-attribute2': '2'}});
expect(stylesheet.attributes.getNamedItem('data-attribute1')!.value)
.toEqual('1');
expect(stylesheet.attributes.getNamedItem('data-attribute2')!.value)
.toEqual('2');
});
});
describe('when stylesheet fails to load', () => {
beforeEach(() => {
jest.spyOn(document.head, 'appendChild')
.mockImplementation(element => {
setTimeout(() => (element as HTMLElement).onerror!(new Event('error')), 0);
return element;
});
});
it('rejects promise if stylesheet is not loaded', async () => {
await loader.loadStylesheet('https://foo.bar/hello-world.css')
.catch(error =>
expect(error)
.toBeTruthy()
);
});
it('loads the script again', async () => {
const errorHandler = jest.fn();
await loader.loadStylesheet('https://foo.bar/hello-world.css')
.catch(errorHandler);
await loader.loadStylesheet('https://foo.bar/hello-world.css')
.catch(errorHandler);
expect(document.head.appendChild)
.toHaveBeenCalledTimes(2);
expect(errorHandler)
.toHaveBeenCalledTimes(2);
});
});
describe('when preloading stylesheet', () => {
let preloadedStylesheet: HTMLLinkElement;
beforeEach(() => {
preloadedStylesheet = document.createElement('link');
jest.spyOn(document, 'createElement')
.mockImplementation(() => preloadedStylesheet);
jest.spyOn(document.head, 'appendChild')
.mockImplementation(element => {
setTimeout(() => (element as HTMLElement).onload!(new Event('load')), 0);
return element;
});
});
it('attaches preload link tag to document', async () => {
await loader.preloadStylesheet('https://foo.bar/hello-world.css');
expect(document.head.appendChild)
.toHaveBeenCalledWith(preloadedStylesheet);
expect(preloadedStylesheet.rel)
.toEqual('preload');
expect(preloadedStylesheet.as)
.toEqual('style');
expect(preloadedStylesheet.href)
.toEqual('https://foo.bar/hello-world.css');
});
it('prefetches stylesheet if option is provided', async () => {
await loader.preloadStylesheet('https://foo.bar/hello-world.css', {
prefetch: true,
});
expect(document.head.appendChild)
.toHaveBeenCalledWith(preloadedStylesheet);
expect(preloadedStylesheet.rel)
.toEqual('prefetch');
expect(preloadedStylesheet.as)
.toEqual('style');
expect(preloadedStylesheet.href)
.toEqual('https://foo.bar/hello-world.css');
});
it('falls back to using XHR if browser does not support preload', async () => {
jest.spyOn(browserSupport, 'canSupportRel')
.mockImplementation(rel => rel === 'preload' ? false : true);
await loader.preloadStylesheet('https://foo.bar/hello-world.css');
expect(requestSender.get)
.toHaveBeenCalledWith('https://foo.bar/hello-world.css', {
credentials: false,
headers: { Accept: 'text/css' },
});
});
it('resolves promise if stylesheet is preloaded', async () => {
const output = await loader.preloadStylesheet('https://foo.bar/hello-world.css');
expect(output)
.toBeUndefined();
});
});
});