Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Airtop/test/node/window/close.test.ts
2025-04-01 20:51:04 +01:00

93 lines
2.1 KiB
TypeScript

import nock from 'nock';
import * as close from '../../../actions/window/close.operation';
import { ERROR_MESSAGES } from '../../../constants';
import * as transport from '../../../transport';
import { createMockExecuteFunction } from '../helpers';
jest.mock('../../../transport', () => {
const originalModule = jest.requireActual<typeof transport>('../../../transport');
return {
...originalModule,
apiRequest: jest.fn(async function () {
return {
status: 'success',
data: {
closed: true,
},
};
}),
};
});
describe('Test Airtop, window close operation', () => {
beforeAll(() => {
nock.disableNetConnect();
});
afterAll(() => {
nock.restore();
jest.unmock('../../../transport');
});
afterEach(() => {
jest.clearAllMocks();
});
it('should close a window successfully', async () => {
const nodeParameters = {
resource: 'window',
operation: 'close',
sessionId: 'test-session-123',
windowId: 'win-123',
};
const result = await close.execute.call(createMockExecuteFunction(nodeParameters), 0);
expect(transport.apiRequest).toHaveBeenCalledTimes(1);
expect(transport.apiRequest).toHaveBeenCalledWith(
'DELETE',
'/sessions/test-session-123/windows/win-123',
);
expect(result).toEqual([
{
json: {
sessionId: 'test-session-123',
windowId: 'win-123',
status: 'success',
data: {
closed: true,
},
},
},
]);
});
it('should throw error when sessionId is empty', async () => {
const nodeParameters = {
resource: 'window',
operation: 'close',
sessionId: '',
windowId: 'win-123',
};
await expect(close.execute.call(createMockExecuteFunction(nodeParameters), 0)).rejects.toThrow(
ERROR_MESSAGES.SESSION_ID_REQUIRED,
);
});
it('should throw error when windowId is empty', async () => {
const nodeParameters = {
resource: 'window',
operation: 'close',
sessionId: 'test-session-123',
windowId: '',
};
await expect(close.execute.call(createMockExecuteFunction(nodeParameters), 0)).rejects.toThrow(
ERROR_MESSAGES.WINDOW_ID_REQUIRED,
);
});
});