Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

1072 lines
28 KiB
TypeScript

import axios from 'axios';
import { mockDeep } from 'jest-mock-extended';
import type { IBinaryData, IExecuteFunctions } from 'n8n-workflow';
import { NodeOperationError } from 'n8n-workflow';
import {
createFileSearchStore,
deleteFileSearchStore,
downloadFile,
listFileSearchStores,
transferFile,
uploadFile,
uploadToFileSearchStore,
} from './utils';
import * as transport from '../transport';
jest.mock('axios');
const mockedAxios = axios as jest.Mocked<typeof axios>;
describe('GoogleGemini -> utils', () => {
const mockExecuteFunctions = mockDeep<IExecuteFunctions>();
const apiRequestMock = jest.spyOn(transport, 'apiRequest');
beforeEach(() => {
jest.clearAllMocks();
jest.useFakeTimers({ advanceTimers: true });
});
describe('downloadFile', () => {
it('should download file', async () => {
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
body: new ArrayBuffer(10),
headers: {
'content-type': 'application/pdf',
},
});
const file = await downloadFile.call(mockExecuteFunctions, 'https://example.com/file.pdf');
expect(file).toEqual({
fileContent: Buffer.from(new ArrayBuffer(10)),
mimeType: 'application/pdf',
});
expect(mockExecuteFunctions.helpers.httpRequest).toHaveBeenCalledWith({
method: 'GET',
url: 'https://example.com/file.pdf',
returnFullResponse: true,
encoding: 'arraybuffer',
});
});
it('should parse mime type from content type header', async () => {
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
body: new ArrayBuffer(10),
headers: {
'content-type': 'application/pdf; q=0.9',
},
});
const file = await downloadFile.call(mockExecuteFunctions, 'https://example.com/file.pdf');
expect(file).toEqual({
fileContent: Buffer.from(new ArrayBuffer(10)),
mimeType: 'application/pdf',
});
});
it('should use fallback mime type if content type header is not present', async () => {
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
body: new ArrayBuffer(10),
headers: {},
});
const file = await downloadFile.call(
mockExecuteFunctions,
'https://example.com/file.pdf',
'application/pdf',
);
expect(file).toEqual({
fileContent: Buffer.from(new ArrayBuffer(10)),
mimeType: 'application/pdf',
});
});
});
describe('uploadFile', () => {
it('should upload file', async () => {
const fileContent = Buffer.from(new ArrayBuffer(10));
const mimeType = 'application/pdf';
apiRequestMock.mockResolvedValue({
headers: {
'x-goog-upload-url': 'https://google.com/some-upload-url',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
file: {
name: 'files/test123',
uri: 'https://google.com/files/test123',
mimeType: 'application/pdf',
state: 'ACTIVE',
},
});
const file = await uploadFile.call(mockExecuteFunctions, fileContent, mimeType);
expect(file).toEqual({
fileUri: 'https://google.com/files/test123',
mimeType: 'application/pdf',
});
expect(apiRequestMock).toHaveBeenCalledWith('POST', '/upload/v1beta/files', {
headers: {
'X-Goog-Upload-Protocol': 'resumable',
'X-Goog-Upload-Command': 'start',
'X-Goog-Upload-Header-Content-Length': '10',
'X-Goog-Upload-Header-Content-Type': 'application/pdf',
'Content-Type': 'application/json',
},
option: {
returnFullResponse: true,
},
});
expect(mockExecuteFunctions.helpers.httpRequest).toHaveBeenCalledWith({
method: 'POST',
url: 'https://google.com/some-upload-url',
headers: {
'Content-Length': '10',
'X-Goog-Upload-Offset': '0',
'X-Goog-Upload-Command': 'upload, finalize',
},
body: fileContent,
});
});
it('should throw error if file upload fails', async () => {
const fileContent = Buffer.from(new ArrayBuffer(10));
const mimeType = 'application/pdf';
apiRequestMock.mockResolvedValue({
headers: {
'x-goog-upload-url': 'https://google.com/some-upload-url',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
file: {
state: 'FAILED',
error: {
message: 'File upload failed',
},
},
});
await expect(uploadFile.call(mockExecuteFunctions, fileContent, mimeType)).rejects.toThrow(
'File upload failed',
);
});
it('should upload file when its not immediately active', async () => {
const fileContent = Buffer.from(new ArrayBuffer(10));
const mimeType = 'application/pdf';
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://google.com/some-upload-url',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValue({
file: {
name: 'files/test123',
uri: 'https://google.com/files/test123',
mimeType: 'application/pdf',
state: 'PENDING',
},
});
apiRequestMock.mockResolvedValueOnce({
name: 'files/test123',
uri: 'https://google.com/files/test123',
mimeType: 'application/pdf',
state: 'ACTIVE',
});
const promise = uploadFile.call(mockExecuteFunctions, fileContent, mimeType);
await jest.advanceTimersByTimeAsync(1000);
const file = await promise;
expect(file).toEqual({
fileUri: 'https://google.com/files/test123',
mimeType: 'application/pdf',
});
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/files/test123');
});
it('should poll until file is active', async () => {
const fileContent = Buffer.from('test file content');
const mimeType = 'application/pdf';
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'PROCESSING',
},
});
apiRequestMock
.mockResolvedValueOnce({
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'PROCESSING',
})
.mockResolvedValueOnce({
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'ACTIVE',
});
jest.spyOn(global, 'setTimeout').mockImplementation((callback: any) => {
callback();
return {} as any;
});
const result = await uploadFile.call(mockExecuteFunctions, fileContent, mimeType);
expect(result).toEqual({
fileUri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
});
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/files/abc123');
});
it('should throw error when upload fails', async () => {
const fileContent = Buffer.from('test file content');
const mimeType = 'application/pdf';
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'FAILED',
error: { message: 'Upload failed' },
},
});
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(uploadFile.call(mockExecuteFunctions, fileContent, mimeType)).rejects.toThrow(
new NodeOperationError(mockExecuteFunctions.getNode(), 'Upload failed', {
description: 'Error uploading file',
}),
);
});
});
describe('transferFile', () => {
it('should transfer file from URL using axios', async () => {
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf; charset=utf-8',
},
});
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'ACTIVE',
},
},
});
const result = await transferFile.call(
mockExecuteFunctions,
0,
'https://example.com/file.pdf',
'application/octet-stream',
);
expect(result).toEqual({
fileUri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
});
expect(mockedAxios.get).toHaveBeenCalledWith('https://example.com/file.pdf', {
params: undefined,
responseType: 'stream',
});
expect(apiRequestMock).toHaveBeenCalledWith('POST', '/upload/v1beta/files', {
headers: {
'X-Goog-Upload-Protocol': 'resumable',
'X-Goog-Upload-Command': 'start',
'X-Goog-Upload-Header-Content-Type': 'application/pdf',
'Content-Type': 'application/json',
},
option: { returnFullResponse: true },
});
expect(mockExecuteFunctions.helpers.httpRequest).toHaveBeenCalledWith({
method: 'POST',
url: 'https://upload.googleapis.com/upload/123',
headers: {
'X-Goog-Upload-Offset': '0',
'X-Goog-Upload-Command': 'upload, finalize',
'Content-Type': 'application/pdf',
},
body: mockStream,
returnFullResponse: true,
});
});
it('should transfer file from binary data without id', async () => {
const mockBinaryData: IBinaryData = {
mimeType: 'application/pdf',
fileName: 'test.pdf',
fileSize: '1024',
fileExtension: 'pdf',
data: 'test',
};
mockExecuteFunctions.getNodeParameter.mockReturnValue('data');
mockExecuteFunctions.helpers.assertBinaryData.mockReturnValue(mockBinaryData);
mockExecuteFunctions.helpers.getBinaryDataBuffer.mockResolvedValue(Buffer.from('test'));
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'ACTIVE',
},
});
const result = await transferFile.call(
mockExecuteFunctions,
0,
undefined,
'application/octet-stream',
);
expect(result).toEqual({
fileUri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
});
expect(mockExecuteFunctions.helpers.assertBinaryData).toHaveBeenCalledWith(0, 'data');
expect(mockExecuteFunctions.helpers.getBinaryDataBuffer).toHaveBeenCalledWith(0, 'data');
});
it('should transfer file from binary data with id using stream', async () => {
const mockBinaryData: IBinaryData = {
id: 'binary-123',
mimeType: 'application/pdf',
fileName: 'test.pdf',
fileSize: '1024',
fileExtension: 'pdf',
data: 'test',
};
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockExecuteFunctions.getNodeParameter.mockReturnValue('data');
mockExecuteFunctions.helpers.assertBinaryData.mockReturnValue(mockBinaryData);
mockExecuteFunctions.helpers.getBinaryStream.mockResolvedValue(mockStream);
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'ACTIVE',
},
},
});
const result = await transferFile.call(
mockExecuteFunctions,
0,
undefined,
'application/octet-stream',
);
expect(result).toEqual({
fileUri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
});
expect(mockExecuteFunctions.helpers.getBinaryStream).toHaveBeenCalledWith(
'binary-123',
262144,
);
});
it('should throw error when binary property name is missing', async () => {
mockExecuteFunctions.getNodeParameter.mockReturnValue('');
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(
transferFile.call(mockExecuteFunctions, 0, undefined, 'application/octet-stream'),
).rejects.toThrow(
new NodeOperationError(
mockExecuteFunctions.getNode(),
'Binary property name or download URL is required',
{
description: 'Error uploading file',
},
),
);
});
it('should throw error when upload URL is not received', async () => {
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf',
},
});
apiRequestMock.mockResolvedValueOnce({
headers: {},
});
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(
transferFile.call(
mockExecuteFunctions,
0,
'https://example.com/file.pdf',
'application/octet-stream',
),
).rejects.toThrow(
new NodeOperationError(mockExecuteFunctions.getNode(), 'Failed to get upload URL'),
);
});
it('should poll until file is active and throw error on failure', async () => {
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf',
},
});
apiRequestMock.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
file: {
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'PROCESSING',
},
},
});
apiRequestMock.mockResolvedValueOnce({
name: 'files/abc123',
uri: 'https://generativelanguage.googleapis.com/v1/files/abc123',
mimeType: 'application/pdf',
state: 'FAILED',
error: { message: 'Processing failed' },
});
jest.spyOn(global, 'setTimeout').mockImplementation((callback: any) => {
callback();
return {} as any;
});
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(
transferFile.call(
mockExecuteFunctions,
0,
'https://example.com/file.pdf',
'application/octet-stream',
),
).rejects.toThrow(
new NodeOperationError(mockExecuteFunctions.getNode(), 'Processing failed', {
description: 'Error uploading file',
}),
);
});
});
describe('createFileSearchStore', () => {
it('should create a file search store', async () => {
const displayName = 'My File Search Store';
const mockResponse = {
name: 'fileSearchStores/abc123',
displayName: 'My File Search Store',
};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await createFileSearchStore.call(mockExecuteFunctions, displayName);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('POST', '/v1beta/fileSearchStores', {
body: { displayName },
});
});
});
describe('uploadToFileSearchStore', () => {
it('should upload file from URL to file search store', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf; charset=utf-8',
},
});
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: false,
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
response: {
name: 'fileSearchStores/abc123/files/file123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
jest.spyOn(global, 'setTimeout').mockImplementation((callback: any) => {
callback();
return {} as any;
});
const result = await uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
'https://example.com/file.pdf',
);
expect(result).toEqual({
name: 'fileSearchStores/abc123/files/file123',
});
expect(mockedAxios.get).toHaveBeenCalledWith('https://example.com/file.pdf', {
params: undefined,
responseType: 'stream',
});
expect(apiRequestMock).toHaveBeenCalledWith(
'POST',
`/upload/v1beta/${fileSearchStoreName}:uploadToFileSearchStore`,
{
headers: {
'X-Goog-Upload-Protocol': 'resumable',
'X-Goog-Upload-Command': 'start',
'X-Goog-Upload-Header-Content-Type': 'application/pdf',
'Content-Type': 'application/json',
},
body: { displayName, mimeType: 'application/pdf' },
option: { returnFullResponse: true },
},
);
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/operations/op123');
});
it('should upload file from binary data (buffer) to file search store', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockBinaryData: IBinaryData = {
mimeType: 'application/pdf',
fileName: 'test.pdf',
fileSize: '1024',
fileExtension: 'pdf',
data: 'test',
};
mockExecuteFunctions.getNodeParameter.mockReturnValue('data');
mockExecuteFunctions.helpers.assertBinaryData.mockReturnValue(mockBinaryData);
mockExecuteFunctions.helpers.getBinaryDataBuffer.mockResolvedValue(Buffer.from('test'));
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
response: {
name: 'fileSearchStores/abc123/files/file123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
const result = await uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
);
expect(result).toEqual({
name: 'fileSearchStores/abc123/files/file123',
});
expect(mockExecuteFunctions.helpers.assertBinaryData).toHaveBeenCalledWith(0, 'data');
expect(mockExecuteFunctions.helpers.getBinaryDataBuffer).toHaveBeenCalledWith(0, 'data');
});
it('should upload file from binary data (stream) to file search store', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockBinaryData: IBinaryData = {
id: 'binary-123',
mimeType: 'application/pdf',
fileName: 'test.pdf',
fileSize: '1024',
fileExtension: 'pdf',
data: 'test',
};
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockExecuteFunctions.getNodeParameter.mockReturnValue('data');
mockExecuteFunctions.helpers.assertBinaryData.mockReturnValue(mockBinaryData);
mockExecuteFunctions.helpers.getBinaryStream.mockResolvedValue(mockStream);
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
response: {
name: 'fileSearchStores/abc123/files/file123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
const result = await uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
);
expect(result).toEqual({
name: 'fileSearchStores/abc123/files/file123',
});
expect(mockExecuteFunctions.helpers.getBinaryStream).toHaveBeenCalledWith(
'binary-123',
262144,
);
});
it('should poll operation until done', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf',
},
});
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: false,
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: false,
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
response: {
name: 'fileSearchStores/abc123/files/file123',
},
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
jest.spyOn(global, 'setTimeout').mockImplementation((callback: any) => {
callback();
return {} as any;
});
const result = await uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
'https://example.com/file.pdf',
);
expect(result).toEqual({
name: 'fileSearchStores/abc123/files/file123',
});
expect(apiRequestMock).toHaveBeenCalledTimes(4); // 1 upload init + 3 operation polls
});
it('should throw error when operation fails', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf',
},
});
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: false,
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
error: { message: 'Upload failed' },
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
jest.spyOn(global, 'setTimeout').mockImplementation((callback: any) => {
callback();
return {} as any;
});
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(
uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
'https://example.com/file.pdf',
),
).rejects.toThrow(
new NodeOperationError(mockExecuteFunctions.getNode(), 'Upload failed', {
description: 'Error uploading file to File Search store',
}),
);
});
it('should throw error when binary property name is missing', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
mockExecuteFunctions.getNodeParameter.mockReturnValue('');
mockExecuteFunctions.getNode.mockReturnValue({ name: 'Google Gemini' } as any);
await expect(
uploadToFileSearchStore.call(mockExecuteFunctions, 0, fileSearchStoreName, displayName),
).rejects.toThrow(
new NodeOperationError(
mockExecuteFunctions.getNode(),
'Binary property name or download URL is required',
{
description: 'Error uploading file',
},
),
);
});
it('should return undefined when response is missing', async () => {
const fileSearchStoreName = 'fileSearchStores/abc123';
const displayName = 'test-file.pdf';
const mockStream = {
pipe: jest.fn(),
on: jest.fn(),
} as any;
mockedAxios.get.mockResolvedValue({
data: mockStream,
headers: {
'content-type': 'application/pdf',
},
});
apiRequestMock
.mockResolvedValueOnce({
headers: {
'x-goog-upload-url': 'https://upload.googleapis.com/upload/123',
},
})
.mockResolvedValueOnce({
name: 'operations/op123',
done: true,
});
mockExecuteFunctions.helpers.httpRequest.mockResolvedValueOnce({
body: {
name: 'operations/op123',
},
});
const result = await uploadToFileSearchStore.call(
mockExecuteFunctions,
0,
fileSearchStoreName,
displayName,
'https://example.com/file.pdf',
);
expect(result).toBeUndefined();
});
});
describe('listFileSearchStores', () => {
it('should list file search stores without pagination', async () => {
const mockResponse = {
fileSearchStores: [
{
name: 'fileSearchStores/store1',
displayName: 'Store 1',
},
{
name: 'fileSearchStores/store2',
displayName: 'Store 2',
},
],
};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await listFileSearchStores.call(mockExecuteFunctions);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/fileSearchStores', {
qs: {},
});
});
it('should list file search stores with pageSize', async () => {
const mockResponse = {
fileSearchStores: [
{
name: 'fileSearchStores/store1',
displayName: 'Store 1',
},
],
};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await listFileSearchStores.call(mockExecuteFunctions, 20);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/fileSearchStores', {
qs: { pageSize: 20 },
});
});
it('should list file search stores with pageToken', async () => {
const mockResponse = {
fileSearchStores: [
{
name: 'fileSearchStores/store3',
displayName: 'Store 3',
},
],
nextPageToken: 'token123',
};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await listFileSearchStores.call(mockExecuteFunctions, undefined, 'token123');
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/fileSearchStores', {
qs: { pageToken: 'token123' },
});
});
it('should list file search stores with both pageSize and pageToken', async () => {
const mockResponse = {
fileSearchStores: [
{
name: 'fileSearchStores/store1',
displayName: 'Store 1',
},
],
};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await listFileSearchStores.call(mockExecuteFunctions, 10, 'token123');
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('GET', '/v1beta/fileSearchStores', {
qs: { pageSize: 10, pageToken: 'token123' },
});
});
});
describe('deleteFileSearchStore', () => {
it('should delete file search store without force', async () => {
const name = 'fileSearchStores/abc123';
const mockResponse = {};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await deleteFileSearchStore.call(mockExecuteFunctions, name);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('DELETE', `/v1beta/${name}`, {
qs: {},
});
});
it('should delete file search store with force', async () => {
const name = 'fileSearchStores/abc123';
const mockResponse = {};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await deleteFileSearchStore.call(mockExecuteFunctions, name, true);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('DELETE', `/v1beta/${name}`, {
qs: { force: true },
});
});
it('should delete file search store with force false', async () => {
const name = 'fileSearchStores/abc123';
const mockResponse = {};
apiRequestMock.mockResolvedValue(mockResponse);
const result = await deleteFileSearchStore.call(mockExecuteFunctions, name, false);
expect(result).toEqual(mockResponse);
expect(apiRequestMock).toHaveBeenCalledWith('DELETE', `/v1beta/${name}`, {
qs: { force: false },
});
});
});
});