-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpro-api.test.ts
More file actions
359 lines (312 loc) · 12 KB
/
pro-api.test.ts
File metadata and controls
359 lines (312 loc) · 12 KB
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
import webpack, { Configuration, Stats } from 'webpack';
import path from 'path';
import fs from 'fs';
import { WebpackObfuscatorPlugin, IProApiConfig, TProApiProgressCallback } from '../plugin';
const outputDir = path.resolve(__dirname, 'temp-output-pro-api');
const runWebpack = (config: Configuration): Promise<{ stats: Stats; output: Record<string, string> }> => {
return new Promise((resolve, reject) => {
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir, { recursive: true });
}
const compiler = webpack(config);
compiler.run((err, stats) => {
if (err) {
reject(err);
return;
}
if (!stats) {
reject(new Error('No stats returned'));
return;
}
if (stats.hasErrors()) {
reject(new Error(stats.toString()));
return;
}
const output: Record<string, string> = {};
const outputPath = config.output?.path || outputDir;
if (fs.existsSync(outputPath)) {
const files = fs.readdirSync(outputPath);
for (const file of files) {
const filePath = path.join(outputPath, file);
if (fs.statSync(filePath).isFile()) {
output[file] = fs.readFileSync(filePath, 'utf-8');
}
}
}
compiler.close(() => {
resolve({ stats, output });
});
});
});
};
const createBaseConfig = (entry: Record<string, string>): Configuration => ({
mode: 'production',
entry,
context: path.resolve(__dirname, 'input'),
output: {
path: outputDir,
filename: '[name].js'
},
cache: false,
optimization: {
minimize: false
},
target: 'web',
resolve: {
extensions: ['.js']
}
});
beforeEach(() => {
if (fs.existsSync(outputDir)) {
fs.rmSync(outputDir, { recursive: true, force: true });
}
fs.mkdirSync(outputDir, { recursive: true });
});
afterAll(() => {
if (fs.existsSync(outputDir)) {
fs.rmSync(outputDir, { recursive: true, force: true });
}
});
describe('Pro API Support', () => {
describe('Plugin Pro API configuration', () => {
it('should accept proApiConfig in constructor', () => {
const proApiConfig: IProApiConfig = {
apiToken: 'test-token',
timeout: 60000
};
const plugin = new WebpackObfuscatorPlugin({}, [], proApiConfig);
expect(plugin.proApiConfig).toEqual(proApiConfig);
});
it('should accept onProgress callback in constructor', () => {
const onProgress: TProApiProgressCallback = (message) => {
console.log(message);
};
const plugin = new WebpackObfuscatorPlugin({}, [], undefined, onProgress);
expect(plugin.onProgress).toBe(onProgress);
});
it('should accept both proApiConfig and onProgress', () => {
const proApiConfig: IProApiConfig = {
apiToken: 'test-token'
};
const onProgress: TProApiProgressCallback = (message) => {
console.log(message);
};
const plugin = new WebpackObfuscatorPlugin({}, [], proApiConfig, onProgress);
expect(plugin.proApiConfig).toEqual(proApiConfig);
expect(plugin.onProgress).toBe(onProgress);
});
it('should work without proApiConfig (backward compatibility)', async () => {
const config = createBaseConfig({
'main': './index.js'
});
config.plugins = [new WebpackObfuscatorPlugin()];
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
expect(output['main.js'].length).toBeGreaterThan(0);
});
it('should maintain backward compatibility with excludes as second parameter', () => {
const plugin = new WebpackObfuscatorPlugin(
{ compact: true },
['vendor*.js', 'external/**/*.js']
);
expect(plugin.options).toEqual({ compact: true });
expect(plugin.excludes).toEqual(['vendor*.js', 'external/**/*.js']);
expect(plugin.proApiConfig).toBeUndefined();
expect(plugin.onProgress).toBeUndefined();
});
});
describe('Loader Pro API configuration', () => {
it('should work with proApiConfig in loader options (type check)', async () => {
// This test verifies the loader accepts proApiConfig in options
// We can't actually test the Pro API without a real token,
// but we can verify the configuration is accepted
const config: Configuration = {
mode: 'production',
entry: {
'main': './index.js'
},
context: path.resolve(__dirname, 'input'),
output: {
path: outputDir,
filename: '[name].js'
},
cache: false,
optimization: {
minimize: false
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'post',
use: {
loader: WebpackObfuscatorPlugin.loader,
options: {
// Without proApiConfig, uses sync obfuscate
compact: true,
stringArray: false
}
}
}
]
},
target: 'web',
resolve: {
extensions: ['.js']
}
};
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
expect(output['main.js'].length).toBeGreaterThan(0);
});
});
describe('Async plugin behavior', () => {
it('should process files asynchronously', async () => {
const config = createBaseConfig({
'main': './index.js',
'secondary': './nested.js'
});
config.plugins = [new WebpackObfuscatorPlugin()];
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
expect(output['secondary.js']).toBeDefined();
});
it('should handle multiple chunks asynchronously', async () => {
const config = createBaseConfig({
'chunk1': './index.js',
'chunk2': './index-excluded.js',
'chunk3': './nested.js'
});
config.plugins = [new WebpackObfuscatorPlugin()];
const { output } = await runWebpack(config);
expect(output['chunk1.js']).toBeDefined();
expect(output['chunk2.js']).toBeDefined();
expect(output['chunk3.js']).toBeDefined();
});
it('should handle source maps asynchronously', async () => {
const config = createBaseConfig({
'main': './index.js'
});
config.devtool = 'source-map';
config.plugins = [
new WebpackObfuscatorPlugin({
sourceMap: true
})
];
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
expect(output['main.js.map']).toBeDefined();
const sourceMap = JSON.parse(output['main.js.map']);
expect(sourceMap.version).toBe(3);
});
it('should respect exclusions in async mode', async () => {
const config = createBaseConfig({
'main': './index.js',
'vendor': './nested.js'
});
config.plugins = [new WebpackObfuscatorPlugin({}, 'vendor*')];
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
expect(output['vendor.js']).toBeDefined();
// vendor.js should contain original code (not obfuscated)
expect(output['vendor.js']).toContain('nested');
});
});
describe('Async loader behavior', () => {
it('should process modules asynchronously', async () => {
const config: Configuration = {
mode: 'production',
entry: {
'main': './index.js'
},
context: path.resolve(__dirname, 'input'),
output: {
path: outputDir,
filename: '[name].js'
},
cache: false,
optimization: {
minimize: false
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'post',
use: {
loader: WebpackObfuscatorPlugin.loader,
options: {}
}
}
]
},
target: 'web',
resolve: {
extensions: ['.js']
}
};
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
});
it('should handle errors gracefully in async mode', async () => {
// Create a file with valid JS that can be obfuscated
const testFilePath = path.resolve(__dirname, 'input/async-test-temp.js');
fs.writeFileSync(testFilePath, 'var x = 1;');
try {
const config: Configuration = {
mode: 'production',
entry: {
'main': './async-test-temp.js'
},
context: path.resolve(__dirname, 'input'),
output: {
path: outputDir,
filename: '[name].js'
},
cache: false,
optimization: {
minimize: false
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'post',
use: {
loader: WebpackObfuscatorPlugin.loader,
options: {}
}
}
]
},
target: 'web',
resolve: {
extensions: ['.js']
}
};
const { output } = await runWebpack(config);
expect(output['main.js']).toBeDefined();
} finally {
if (fs.existsSync(testFilePath)) {
fs.unlinkSync(testFilePath);
}
}
});
});
describe('Type exports', () => {
it('should export IProApiConfig type', () => {
// This test verifies the type is exported and usable
const config: IProApiConfig = {
apiToken: 'test'
};
expect(config.apiToken).toBe('test');
});
it('should export TProApiProgressCallback type', () => {
// This test verifies the type is exported and usable
const callback: TProApiProgressCallback = (message: string) => {
expect(typeof message).toBe('string');
};
callback('test message');
});
});
});