2024-05-31 03:02:21 -07:00
|
|
|
import type { Mock, MockInstance } from 'vitest';
|
2023-10-19 05:38:00 -07:00
|
|
|
import { createPinia, setActivePinia } from 'pinia';
|
|
|
|
import { waitFor } from '@testing-library/vue';
|
2024-02-26 06:05:12 -08:00
|
|
|
import type { ExecutionSummary } from 'n8n-workflow';
|
2023-10-19 05:38:00 -07:00
|
|
|
import { createComponentRenderer } from '@/__tests__/render';
|
|
|
|
import type { INodeUi, IWorkflowDb } from '@/Interface';
|
|
|
|
import WorkflowPreview from '@/components/WorkflowPreview.vue';
|
2024-04-18 22:50:18 -07:00
|
|
|
import { useExecutionsStore } from '@/stores/executions.store';
|
2023-10-19 05:38:00 -07:00
|
|
|
|
|
|
|
const renderComponent = createComponentRenderer(WorkflowPreview);
|
|
|
|
|
|
|
|
let pinia: ReturnType<typeof createPinia>;
|
2024-04-18 22:50:18 -07:00
|
|
|
let executionsStore: ReturnType<typeof useExecutionsStore>;
|
2024-05-31 03:02:21 -07:00
|
|
|
let postMessageSpy: Mock;
|
|
|
|
let consoleErrorSpy: MockInstance;
|
2023-10-19 05:38:00 -07:00
|
|
|
|
|
|
|
const sendPostMessageCommand = (command: string) => {
|
|
|
|
window.postMessage(`{"command":"${command}"}`, '*');
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('WorkflowPreview', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
pinia = createPinia();
|
|
|
|
setActivePinia(pinia);
|
2024-04-18 22:50:18 -07:00
|
|
|
executionsStore = useExecutionsStore();
|
2023-10-19 05:38:00 -07:00
|
|
|
|
2023-11-28 08:30:44 -08:00
|
|
|
consoleErrorSpy = vi.spyOn(console, 'error');
|
2023-10-19 05:38:00 -07:00
|
|
|
postMessageSpy = vi.fn();
|
|
|
|
Object.defineProperty(HTMLIFrameElement.prototype, 'contentWindow', {
|
|
|
|
writable: true,
|
|
|
|
value: {
|
|
|
|
postMessage: postMessageSpy,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-11-28 08:30:44 -08:00
|
|
|
afterEach(() => {
|
|
|
|
consoleErrorSpy.mockRestore();
|
|
|
|
});
|
|
|
|
|
2023-10-19 05:38:00 -07:00
|
|
|
it('should not call iframe postMessage when it is ready and no workflow or executionId props', async () => {
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not call iframe postMessage when it is ready and there are no nodes in the workflow', async () => {
|
|
|
|
const workflow = {} as IWorkflowDb;
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
workflow,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not call iframe postMessage when it is ready and nodes is not an array', async () => {
|
|
|
|
const workflow = { nodes: {} } as IWorkflowDb;
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
workflow,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call iframe postMessage with "openWorkflow" when it is ready and the workflow has nodes', async () => {
|
|
|
|
const nodes = [{ name: 'Start' }] as INodeUi[];
|
|
|
|
const workflow = { nodes } as IWorkflowDb;
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
workflow,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'openWorkflow',
|
|
|
|
workflow,
|
2023-12-11 06:30:01 -08:00
|
|
|
canOpenNDV: true,
|
2023-12-19 06:10:03 -08:00
|
|
|
hideNodeIssues: false,
|
2023-10-19 05:38:00 -07:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not call iframe postMessage with "openExecution" when executionId is passed but mode not set to "execution"', async () => {
|
|
|
|
const executionId = '123';
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
executionId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call iframe postMessage with "openExecution" when executionId is passed and mode is set', async () => {
|
|
|
|
const executionId = '123';
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
executionId,
|
|
|
|
mode: 'execution',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'openExecution',
|
|
|
|
executionId,
|
|
|
|
executionMode: '',
|
2023-12-11 06:30:01 -08:00
|
|
|
canOpenNDV: true,
|
2023-10-19 05:38:00 -07:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call also iframe postMessage with "setActiveExecution" if active execution is set', async () => {
|
2024-04-18 22:50:18 -07:00
|
|
|
vi.spyOn(executionsStore, 'activeExecution', 'get').mockReturnValue({
|
2023-10-19 05:38:00 -07:00
|
|
|
id: 'abc',
|
2024-02-26 06:05:12 -08:00
|
|
|
} as ExecutionSummary);
|
2023-10-19 05:38:00 -07:00
|
|
|
|
|
|
|
const executionId = '123';
|
|
|
|
renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
executionId,
|
|
|
|
mode: 'execution',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'openExecution',
|
|
|
|
executionId,
|
|
|
|
executionMode: '',
|
2023-12-11 06:30:01 -08:00
|
|
|
canOpenNDV: true,
|
2023-10-19 05:38:00 -07:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'setActiveExecution',
|
2024-05-27 03:44:25 -07:00
|
|
|
executionId: 'abc',
|
2023-10-19 05:38:00 -07:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('iframe should toggle "openNDV" class with postmessages', async () => {
|
|
|
|
const nodes = [{ name: 'Start' }] as INodeUi[];
|
|
|
|
const workflow = { nodes } as IWorkflowDb;
|
|
|
|
const { container } = renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
workflow,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const iframe = container.querySelector('iframe');
|
|
|
|
|
|
|
|
expect(iframe?.classList.toString()).not.toContain('openNDV');
|
|
|
|
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'openWorkflow',
|
|
|
|
workflow,
|
2023-12-11 06:30:01 -08:00
|
|
|
canOpenNDV: true,
|
2023-12-19 06:10:03 -08:00
|
|
|
hideNodeIssues: false,
|
2023-10-19 05:38:00 -07:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('openNDV');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(iframe?.classList.toString()).toContain('openNDV');
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('closeNDV');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(iframe?.classList.toString()).not.toContain('openNDV');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-12-19 06:10:03 -08:00
|
|
|
it('should pass the "Disable NDV" & "Hide issues" flags to using PostMessage', async () => {
|
2023-12-11 06:30:01 -08:00
|
|
|
const nodes = [{ name: 'Start' }] as INodeUi[];
|
|
|
|
const workflow = { nodes } as IWorkflowDb;
|
2023-12-19 06:10:03 -08:00
|
|
|
renderComponent({
|
2023-12-11 06:30:01 -08:00
|
|
|
pinia,
|
|
|
|
props: {
|
|
|
|
workflow,
|
|
|
|
canOpenNDV: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
sendPostMessageCommand('n8nReady');
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(postMessageSpy).toHaveBeenCalledWith(
|
|
|
|
JSON.stringify({
|
|
|
|
command: 'openWorkflow',
|
|
|
|
workflow,
|
|
|
|
canOpenNDV: false,
|
2023-12-19 06:10:03 -08:00
|
|
|
hideNodeIssues: false,
|
2023-12-11 06:30:01 -08:00
|
|
|
}),
|
|
|
|
'*',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-10-19 05:38:00 -07:00
|
|
|
it('should emit "close" event if iframe sends "error" command', async () => {
|
|
|
|
const { emitted } = renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
sendPostMessageCommand('error');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(emitted().close).toBeDefined();
|
|
|
|
});
|
|
|
|
});
|
2023-11-28 08:30:44 -08:00
|
|
|
|
|
|
|
it('should not do anything if no "command" is sent in the message', async () => {
|
|
|
|
const { emitted } = renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
window.postMessage('commando', '*');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(console.error).not.toHaveBeenCalled();
|
|
|
|
expect(emitted()).toEqual({});
|
|
|
|
});
|
|
|
|
});
|
2023-12-08 04:42:50 -08:00
|
|
|
|
|
|
|
it('should not do anything if no "command" is sent in the message and the `includes` method cannot be applied to the data', async () => {
|
|
|
|
const { emitted } = renderComponent({
|
|
|
|
pinia,
|
|
|
|
props: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
window.postMessage(null, '*');
|
|
|
|
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(console.error).not.toHaveBeenCalled();
|
|
|
|
expect(emitted()).toEqual({});
|
|
|
|
});
|
|
|
|
});
|
2023-10-19 05:38:00 -07:00
|
|
|
});
|