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
184 lines
6.3 KiB
TypeScript
184 lines
6.3 KiB
TypeScript
import { test, expect } from '../../../fixtures/base';
|
|
import type { TestRequirements } from '../../../Types';
|
|
|
|
const NOW = Date.now();
|
|
const ONE_DAY = 24 * 60 * 60 * 1000;
|
|
const THREE_DAYS = ONE_DAY * 3;
|
|
const SEVEN_DAYS = ONE_DAY * 7;
|
|
const ABOUT_SIX_MONTHS = ONE_DAY * 30 * 6 + ONE_DAY;
|
|
|
|
const ACTIVATED_USER_SETTINGS = {
|
|
userActivated: true,
|
|
userActivatedAt: NOW - THREE_DAYS - 1000,
|
|
};
|
|
|
|
const getNpsTestRequirements: TestRequirements = {
|
|
config: {
|
|
settings: {
|
|
telemetry: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
},
|
|
intercepts: {
|
|
npsSurveyApi: {
|
|
url: '**/rest/user-settings/nps-survey',
|
|
response: { success: true },
|
|
},
|
|
telemetryTest: {
|
|
url: '**/test/telemetry',
|
|
response: { status: 'ok' },
|
|
},
|
|
telemetryProxy: {
|
|
url: '**/rest/telemetry/proxy',
|
|
response: { status: 'ok' },
|
|
},
|
|
telemetryRudderstack: {
|
|
url: '**/rest/telemetry/rudderstack',
|
|
response: { status: 'ok' },
|
|
},
|
|
},
|
|
};
|
|
|
|
test.fixme(
|
|
'NPS Survey',
|
|
{
|
|
annotation: [{ type: 'owner', description: 'Adore' }],
|
|
},
|
|
() => {
|
|
test.beforeEach(async ({ n8n }) => {
|
|
await n8n.page.route('**/rest/login', async (route) => {
|
|
const response = await route.fetch();
|
|
const originalJson = await response.json();
|
|
|
|
const modifiedData = {
|
|
...originalJson,
|
|
data: {
|
|
...originalJson.data,
|
|
settings: {
|
|
...originalJson.data?.settings,
|
|
...ACTIVATED_USER_SETTINGS,
|
|
},
|
|
},
|
|
};
|
|
|
|
await route.fulfill({
|
|
status: response.status(),
|
|
headers: response.headers(),
|
|
contentType: 'application/json',
|
|
body: JSON.stringify(modifiedData),
|
|
});
|
|
});
|
|
|
|
await n8n.goHome();
|
|
});
|
|
|
|
test('shows nps survey to recently activated user and can submit feedback', async ({
|
|
n8n,
|
|
setupRequirements,
|
|
}) => {
|
|
await setupRequirements(getNpsTestRequirements);
|
|
await n8n.canvas.visitWithTimestamp(NOW);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
expect(await n8n.npsSurvey.getRatingButtonCount()).toBe(11);
|
|
|
|
await n8n.npsSurvey.clickRating(0);
|
|
await n8n.npsSurvey.fillFeedback('n8n is the best');
|
|
await n8n.npsSurvey.clickSubmitButton();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + ONE_DAY);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + ABOUT_SIX_MONTHS);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
});
|
|
|
|
test('allows user to ignore survey 3 times before stopping to show until 6 months later', async ({
|
|
n8n,
|
|
setupRequirements,
|
|
}) => {
|
|
await setupRequirements(getNpsTestRequirements);
|
|
await n8n.canvas.visitWithTimestamp(NOW);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await n8n.notifications.quickCloseAll();
|
|
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
await n8n.npsSurvey.closeSurvey();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + ONE_DAY);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + SEVEN_DAYS + 10000);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await n8n.notifications.quickCloseAll();
|
|
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
await n8n.npsSurvey.closeSurvey();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + SEVEN_DAYS + 10000);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + (SEVEN_DAYS + 10000) * 2 + ONE_DAY);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await n8n.notifications.quickCloseAll();
|
|
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
await n8n.npsSurvey.closeSurvey();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + (SEVEN_DAYS + 10000) * 2 + ONE_DAY * 2);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + (SEVEN_DAYS + 10000) * 3 + ONE_DAY * 3);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeHidden();
|
|
|
|
await n8n.canvas.visitWithTimestamp(NOW + (SEVEN_DAYS + 10000) * 3 + ABOUT_SIX_MONTHS);
|
|
// Add a node to trigger autosave (required for NPS survey to show)
|
|
await n8n.canvas.addNode('Manual Trigger');
|
|
await n8n.page.keyboard.press('Escape');
|
|
await n8n.canvas.waitForSaveWorkflowCompleted();
|
|
await expect(n8n.npsSurvey.getNpsSurveyModal()).toBeVisible();
|
|
});
|
|
},
|
|
);
|