-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathscrape.test.ts
More file actions
492 lines (407 loc) · 14.1 KB
/
scrape.test.ts
File metadata and controls
492 lines (407 loc) · 14.1 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
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
/**
* Tests for scrape command
*/
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
import * as fs from 'fs';
import { executeScrape, handleScrapeCommand } from '../../commands/scrape';
import { getClient } from '../../utils/client';
import { initializeConfig } from '../../utils/config';
import { setupTest, teardownTest } from '../utils/mock-client';
// Mock the Firecrawl client module
vi.mock('../../utils/client', async () => {
const actual = await vi.importActual('../../utils/client');
return {
...actual,
getClient: vi.fn(),
};
});
describe('executeScrape', () => {
let mockClient: any;
beforeEach(() => {
setupTest();
// Initialize config with test API key
initializeConfig({
apiKey: 'test-api-key',
apiUrl: 'https://api.firecrawl.dev',
});
// Create mock client
mockClient = {
scrape: vi.fn(),
};
// Mock getClient to return our mock
vi.mocked(getClient).mockReturnValue(mockClient as any);
});
afterEach(() => {
teardownTest();
vi.clearAllMocks();
});
describe('API call generation', () => {
it('should call scrape with correct URL and default markdown format', async () => {
const mockResponse = { markdown: '# Test Content' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
});
expect(mockClient.scrape).toHaveBeenCalledTimes(1);
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
});
});
it('should pass apiUrl to getClient when provided', async () => {
const mockResponse = { markdown: '# Test Content' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
apiUrl: 'http://localhost:3002',
});
expect(getClient).toHaveBeenCalledWith({
apiKey: undefined,
apiUrl: 'http://localhost:3002',
});
});
it('should pass both apiKey and apiUrl to getClient when provided', async () => {
const mockResponse = { markdown: '# Test Content' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
apiKey: 'fc-custom-key',
apiUrl: 'http://localhost:3002',
});
expect(getClient).toHaveBeenCalledWith({
apiKey: 'fc-custom-key',
apiUrl: 'http://localhost:3002',
});
});
it('should call scrape with specified format', async () => {
const mockResponse = { html: '<html>...</html>' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
formats: ['html'],
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['html'],
integration: 'cli',
});
});
it('should call scrape with summary format when summary option is true', async () => {
const mockResponse = { summary: 'This is a summary of the page.' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
formats: ['summary'],
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['summary'],
integration: 'cli',
});
});
it('should include screenshot format when screenshot option is true', async () => {
const mockResponse = {
markdown: '# Test',
screenshot: 'base64image...',
};
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
screenshot: true,
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['screenshot'],
integration: 'cli',
});
});
it('should include screenshot format alongside other formats', async () => {
const mockResponse = {
markdown: '# Test',
screenshot: 'base64image...',
};
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
formats: ['markdown'],
screenshot: true,
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown', 'screenshot'],
integration: 'cli',
});
});
it('should include onlyMainContent parameter when provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
onlyMainContent: true,
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
onlyMainContent: true,
});
});
it('should include waitFor parameter when provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
waitFor: 2000,
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
waitFor: 2000,
});
});
it('should include includeTags parameter when provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
includeTags: ['article', 'main'],
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
includeTags: ['article', 'main'],
});
});
it('should include excludeTags parameter when provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
excludeTags: ['nav', 'footer'],
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
excludeTags: ['nav', 'footer'],
});
});
it('should combine all parameters correctly', async () => {
const mockResponse = { markdown: '# Test', screenshot: 'base64...' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
formats: ['markdown'],
screenshot: true,
onlyMainContent: true,
waitFor: 3000,
includeTags: ['article'],
excludeTags: ['nav'],
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown', 'screenshot'],
integration: 'cli',
onlyMainContent: true,
waitFor: 3000,
includeTags: ['article'],
excludeTags: ['nav'],
});
});
it('should include maxAge parameter when provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
maxAge: 3600,
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
maxAge: 3600,
});
});
it('should include location parameter with country and languages', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
location: { country: 'US', languages: ['en'] },
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
location: { country: 'US', languages: ['en'] },
});
});
it('should include location parameter with only country', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
location: { country: 'DE' },
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
location: { country: 'DE' },
});
});
it('should include location parameter with only languages', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
location: { languages: ['en', 'es'] },
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
location: { languages: ['en', 'es'] },
});
});
it('should not include location parameter when not provided', async () => {
const mockResponse = { markdown: '# Test' };
mockClient.scrape.mockResolvedValue(mockResponse);
await executeScrape({
url: 'https://example.com',
});
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown'],
integration: 'cli',
});
});
});
describe('Response handling', () => {
it('should return success result with data when scrape succeeds', async () => {
const mockResponse = {
markdown: '# Test Content',
url: 'https://example.com',
};
mockClient.scrape.mockResolvedValue(mockResponse);
const result = await executeScrape({
url: 'https://example.com',
});
expect(result).toEqual({
success: true,
data: mockResponse,
});
});
it('should handle complex response data', async () => {
const mockResponse = {
markdown: '# Test',
html: '<html>...</html>',
screenshot: 'base64image...',
metadata: {
title: 'Test Page',
description: 'Test description',
},
};
mockClient.scrape.mockResolvedValue(mockResponse);
const result = await executeScrape({
url: 'https://example.com',
});
expect(result.success).toBe(true);
expect(result.data).toEqual(mockResponse);
});
it('should return error result when scrape fails', async () => {
const errorMessage = 'API Error: Invalid URL';
mockClient.scrape.mockRejectedValue(new Error(errorMessage));
const result = await executeScrape({
url: 'https://example.com',
});
expect(result).toEqual({
success: false,
error: errorMessage,
});
});
it('should handle non-Error exceptions', async () => {
mockClient.scrape.mockRejectedValue('String error');
const result = await executeScrape({
url: 'https://example.com',
});
expect(result.success).toBe(false);
expect(result.error).toBe('Unknown error occurred');
});
});
describe('Screenshot binary output', () => {
it('should download screenshot binary when output is an image file', async () => {
const pngBytes = new Uint8Array([0x89, 0x50, 0x4e, 0x47]);
const mockResponse = {
screenshot: 'https://cdn.firecrawl.dev/screenshot-abc.png',
metadata: { title: 'Test' },
};
mockClient.scrape.mockResolvedValue(mockResponse);
const mockFetch = vi.fn().mockResolvedValue({
ok: true,
arrayBuffer: () => Promise.resolve(pngBytes.buffer),
});
vi.stubGlobal('fetch', mockFetch);
vi.mock('fs', async () => {
const actual = await vi.importActual<typeof import('fs')>('fs');
return {
...actual,
existsSync: vi.fn().mockReturnValue(true),
writeFileSync: vi.fn(),
mkdirSync: vi.fn(),
};
});
await handleScrapeCommand({
url: 'https://example.com',
formats: ['screenshot'],
output: '/tmp/test-screenshot.png',
});
expect(mockFetch).toHaveBeenCalledWith(
'https://cdn.firecrawl.dev/screenshot-abc.png'
);
expect(fs.writeFileSync).toHaveBeenCalledWith(
'/tmp/test-screenshot.png',
expect.any(Buffer)
);
});
it('should not fetch binary when output is not an image extension', async () => {
const mockResponse = {
screenshot: 'https://cdn.firecrawl.dev/screenshot-abc.png',
metadata: { title: 'Test' },
};
mockClient.scrape.mockResolvedValue(mockResponse);
const mockFetch = vi.fn();
vi.stubGlobal('fetch', mockFetch);
vi.spyOn(process.stdout, 'write').mockImplementation(() => true);
await handleScrapeCommand({
url: 'https://example.com',
formats: ['screenshot'],
output: '/tmp/result.txt',
});
// Should NOT call fetch — falls through to handleScrapeOutput
expect(mockFetch).not.toHaveBeenCalled();
});
});
describe('Type safety', () => {
it('should accept valid ScrapeFormat types', async () => {
const formatList: Array<'markdown' | 'html' | 'rawHtml' | 'links'> = [
'markdown',
'html',
'rawHtml',
'links',
];
for (const format of formatList) {
mockClient.scrape.mockResolvedValue({ [format]: 'test' });
const result = await executeScrape({
url: 'https://example.com',
formats: [format],
});
expect(result.success).toBe(true);
}
});
it('should accept multiple formats', async () => {
mockClient.scrape.mockResolvedValue({
markdown: '# Test',
links: ['http://a.com'],
images: ['http://img.com/a.png'],
});
const result = await executeScrape({
url: 'https://example.com',
formats: ['markdown', 'links', 'images'],
});
expect(result.success).toBe(true);
expect(mockClient.scrape).toHaveBeenCalledWith('https://example.com', {
formats: ['markdown', 'links', 'images'],
integration: 'cli',
});
});
});
});