-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy pathimport-option.test.js
183 lines (154 loc) · 5.98 KB
/
import-option.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
import fs from 'fs';
import path from 'path';
import {
compile,
getCompiler,
getErrors,
getExecutedCode,
getModuleSource,
getWarnings,
} from './helpers/index';
describe('"import" option', () => {
it('should work when not specified', async () => {
const compiler = getCompiler('./import/import.js');
const stats = await compile(compiler);
expect(getModuleSource('./import/import.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work with a value equal to "true"', async () => {
const compiler = getCompiler('./import/import.js', { import: true });
const stats = await compile(compiler);
expect(getModuleSource('./import/import.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work with a value equal to "false"', async () => {
const compiler = getCompiler('./import/import.js', { import: false });
const stats = await compile(compiler);
expect(getModuleSource('./import/import.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work when "Function"', async () => {
const compiler = getCompiler('./import/import.js', {
import: (url, media, resourcePath) => {
expect(url).toBeDefined();
if (url === 'test-nested-media.css') {
expect(media).toBeDefined();
}
expect(resourcePath).toBeDefined();
// Don't handle `test.css`
if (url.includes('test.css')) {
return false;
}
return true;
},
});
const stats = await compile(compiler);
expect(getModuleSource('./import/import.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should keep original order', async () => {
const compiler = getCompiler('./import/order.js');
const stats = await compile(compiler);
expect(getModuleSource('./import/order.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should respect style field in package.json', async () => {
const compiler = getCompiler('./import/issue-683.js');
const stats = await compile(compiler);
expect(getModuleSource('test.css', stats)).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should respect conditionNames', async () => {
const compiler = getCompiler('./import/import-conditionNames.js');
const stats = await compile(compiler);
expect(getModuleSource('import-conditionNames.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should resolve server-relative url relative rootContext', async () => {
const compiler = getCompiler('./import/import-server-relative-url.js');
const stats = await compile(compiler);
expect(
getModuleSource('./import/import-server-relative-url.css', stats)
).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work resolve order: local -> node_modules -> alias', async () => {
const compiler = getCompiler('./import/import-order.js');
const stats = await compile(compiler);
expect(getModuleSource('./import/import-order.css', stats)).toMatchSnapshot(
'module'
);
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should resolve absolute path', async () => {
// Create the file with absolute path
const fileDirectory = path.resolve(__dirname, 'fixtures', 'import');
const file = path.resolve(fileDirectory, 'import-absolute.css');
const absolutePath = path.resolve(fileDirectory, 'test.css');
fs.writeFileSync(file, `@import "${absolutePath}";`);
const compiler = getCompiler('./import/import-absolute.js');
const stats = await compile(compiler);
expect(
getModuleSource('./import/import-absolute.css', stats)
).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should throw an error on unresolved import', async () => {
const compiler = getCompiler('./import/unresolved.js');
const stats = await compile(compiler);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats, true)).toMatchSnapshot('errors');
});
});