Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support environments without ws by dynamically importing WebSocket module with error handling #997

Merged
merged 6 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions apps/js-sdk/firecrawl/src/__tests__/CrawlWatcher.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import { jest } from '@jest/globals';

describe('CrawlWatcher', () => {
const mockApiUrl = 'https://api.firecrawl.dev';
const mockApiKey = 'test-api-key';

beforeEach(() => {
jest.resetModules();
});

test('should create a CrawlWatcher instance successfully when isows is available', async () => {
await jest.unstable_mockModule('isows', () => ({
WebSocket: jest.fn(),
}));

const { default: FirecrawlApp, CrawlWatcher } = await import('../index');
const app = new FirecrawlApp({ apiKey: mockApiKey, apiUrl: mockApiUrl });

const watcher = new CrawlWatcher('test-id', app);
expect(watcher).toBeInstanceOf(CrawlWatcher);
});

test('should throw when WebSocket is not available (isows import fails)', async () => {
await jest.unstable_mockModule('isows', () => {
throw new Error('Module not found');
});

const { default: FirecrawlApp, CrawlWatcher, FirecrawlError } = await import('../index');
const app = new FirecrawlApp({ apiKey: mockApiKey, apiUrl: mockApiUrl });

expect(() => {
new CrawlWatcher('test-id', app);
}).toThrow(FirecrawlError);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('FirecrawlApp<"v0"> E2E Tests', () => {
});
await expect(
invalidApp.scrapeUrl("https://roastmywebsite.ai")
).rejects.toThrow("Request failed with status code 401");
).rejects.toThrow("Unexpected error occurred while trying to scrape URL. Status code: 401");
}
);

Expand All @@ -46,7 +46,7 @@ describe('FirecrawlApp<"v0"> E2E Tests', () => {
});
const blocklistedUrl = "https://facebook.com/fake-test";
await expect(app.scrapeUrl(blocklistedUrl)).rejects.toThrow(
"Request failed with status code 403"
"Unexpected error occurred while trying to scrape URL. Status code: 403"
);
}
);
Expand Down Expand Up @@ -169,7 +169,7 @@ describe('FirecrawlApp<"v0"> E2E Tests', () => {
});
const blocklistedUrl = "https://twitter.com/fake-test";
await expect(app.crawlUrl(blocklistedUrl)).rejects.toThrow(
"Request failed with status code 403"
"Unexpected error occurred while trying to scrape URL. Status code: 403"
);
}
);
Expand Down Expand Up @@ -242,7 +242,7 @@ describe('FirecrawlApp<"v0"> E2E Tests', () => {
const maxChecks = 15;
let checks = 0;

while (statusResponse.status === "active" && checks < maxChecks) {
while ((statusResponse.status === "active" || statusResponse.status === "scraping" ) && checks < maxChecks) {
await new Promise((resolve) => setTimeout(resolve, 5000));
expect(statusResponse.partial_data).not.toBeNull();
// expect(statusResponse.current).toBeGreaterThanOrEqual(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('FirecrawlApp E2E Tests', () => {
test.concurrent('should throw error for blocklisted URL on scrape', async () => {
const app = new FirecrawlApp({ apiKey: TEST_API_KEY, apiUrl: API_URL });
const blocklistedUrl = "https://facebook.com/fake-test";
await expect(app.scrapeUrl(blocklistedUrl)).rejects.toThrow("Request failed with status code 403");
await expect(app.scrapeUrl(blocklistedUrl)).rejects.toThrow("Unexpected error occurred while trying to scrape URL. Status code: 403");
});

test.concurrent('should return successful response with valid preview token', async () => {
Expand Down Expand Up @@ -74,7 +74,7 @@ describe('FirecrawlApp E2E Tests', () => {
'https://roastmywebsite.ai', {
formats: ['markdown', 'html', 'rawHtml', 'screenshot', 'links'],
headers: { "x-key": "test" },
includeTags: ['h1'],
// includeTags: ['h1'],
excludeTags: ['h2'],
onlyMainContent: true,
timeout: 30000,
Expand Down Expand Up @@ -224,7 +224,7 @@ describe('FirecrawlApp E2E Tests', () => {
scrapeOptions: {
formats: ['markdown', 'html', 'rawHtml', 'screenshot', 'links'],
headers: { "x-key": "test" },
includeTags: ['h1'],
// includeTags: ['h1'],
excludeTags: ['h2'],
onlyMainContent: true,
waitFor: 1000
Expand Down Expand Up @@ -346,7 +346,7 @@ describe('FirecrawlApp E2E Tests', () => {
expect(statusResponse.data[0].metadata).not.toHaveProperty("error");
}
}
}, 60000); // 60 seconds timeout
}, 120000); // 120 seconds timeout

test.concurrent('should throw error for invalid API key on map', async () => {
if (API_URL.includes('api.firecrawl.dev')) {
Expand Down
20 changes: 19 additions & 1 deletion apps/js-sdk/firecrawl/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
import axios, { type AxiosResponse, type AxiosRequestHeaders, AxiosError } from "axios";
import type * as zt from "zod";
import { zodToJsonSchema } from "zod-to-json-schema";
import { WebSocket } from "isows";

import type { WebSocket as IsowsWebSocket } from 'isows';
/**
* Dynamically imports the WebSocket class from 'isows'.
* If the import fails, WebSocket is set to null.
* This approach is used because some environments, such as Firebase Functions,
* might not support WebSocket natively.
*/
const WebSocket: typeof IsowsWebSocket | null = await (async () => {
try {
const module = await import('isows');
return module.WebSocket;
} catch (error) {
return null;
}
})();

import { TypedEventTarget } from "typescript-event-target";

/**
Expand Down Expand Up @@ -945,6 +961,8 @@ export class CrawlWatcher extends TypedEventTarget<CrawlWatcherEvents> {

constructor(id: string, app: FirecrawlApp) {
super();
if(!WebSocket)
throw new FirecrawlError("WebSocket module failed to load. Your system might not support WebSocket.", 500);
this.id = id;
this.ws = new WebSocket(`${app.apiUrl}/v1/crawl/${id}`, app.apiKey);
this.status = "scraping";
Expand Down
Loading