mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
36a923cf7b
## Summary We want to show lead enrichment template suggestions to cloud users that agreed to this. This PR introduces the front-end part of this feature - Handoff document - Figma Hi-fi - [How to test](https://linear.app/n8n/issue/ADO-1549/[n8n-fe]-update-workflows-list-page-to-show-fake-door-templates#comment-b6644c99) Tests are being worked on in a separate PR ## Related tickets and issues Fixes ADO-1546 Fixes ADO-1549 Fixes ADO-1604 ## Review / Merge checklist - [ ] PR title and summary are descriptive. **Remember, the title automatically goes into the changelog. Use `(no-changelog)` otherwise.** ([conventions](https://github.com/n8n-io/n8n/blob/master/.github/pull_request_title_conventions.md)) - [ ] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created. - [ ] Tests included. > A bug is not considered fixed, unless a test is added to prevent it from happening again. > A feature is not complete without tests. --------- Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
144 lines
5.3 KiB
TypeScript
144 lines
5.3 KiB
TypeScript
import { WorkflowsPage as WorkflowsPageClass } from '../pages/workflows';
|
|
import { WorkflowPage as WorkflowPageClass } from '../pages/workflow';
|
|
|
|
type SuggestedTemplatesStub = {
|
|
sections: SuggestedTemplatesSectionStub[];
|
|
}
|
|
|
|
type SuggestedTemplatesSectionStub = {
|
|
name: string;
|
|
title: string;
|
|
description: string;
|
|
workflows: Array<Object>;
|
|
};
|
|
|
|
const WorkflowsListPage = new WorkflowsPageClass();
|
|
const WorkflowPage = new WorkflowPageClass();
|
|
|
|
let fixtureSections: SuggestedTemplatesStub = { sections: [] };;
|
|
|
|
describe('Suggested templates - Should render', () => {
|
|
|
|
before(() => {
|
|
cy.fixture('Suggested_Templates.json').then((data) => {
|
|
fixtureSections = data;
|
|
});
|
|
});
|
|
|
|
beforeEach(() => {
|
|
localStorage.removeItem('SHOW_N8N_SUGGESTED_TEMPLATES');
|
|
cy.intercept('GET', '/rest/settings', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { ...res.body.data, deployment: { type: 'cloud' } },
|
|
});
|
|
});
|
|
}).as('loadSettings');
|
|
cy.intercept('GET', '/rest/cloud/proxy/templates', {
|
|
fixture: 'Suggested_Templates.json',
|
|
});
|
|
cy.visit(WorkflowsListPage.url);
|
|
cy.wait('@loadSettings');
|
|
});
|
|
|
|
it('should render suggested templates page in empty workflow list', () => {
|
|
WorkflowsListPage.getters.suggestedTemplatesPageContainer().should('exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesCards().should('have.length', fixtureSections.sections[0].workflows.length);
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionDescription().should('contain', fixtureSections.sections[0].description);
|
|
});
|
|
|
|
it('should render suggested templates when there are workflows in the list', () => {
|
|
WorkflowsListPage.getters.suggestedTemplatesNewWorkflowButton().click();
|
|
cy.createFixtureWorkflow('Test_workflow_1.json', 'Test Workflow');
|
|
cy.visit(WorkflowsListPage.url);
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('exist');
|
|
cy.contains(`Explore ${fixtureSections.sections[0].name.toLocaleLowerCase()} workflow templates`).should('exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesCards().should('have.length', fixtureSections.sections[0].workflows.length);
|
|
});
|
|
|
|
it('should enable users to signup for suggested templates templates', () => {
|
|
// Test the whole flow
|
|
WorkflowsListPage.getters.suggestedTemplatesCards().first().click();
|
|
WorkflowsListPage.getters.suggestedTemplatesPreviewModal().should('exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesUseTemplateButton().click();
|
|
cy.url().should('include', '/workflow/new');
|
|
WorkflowPage.getters.infoToast().should('contain', 'Template coming soon!');
|
|
WorkflowPage.getters.infoToast().contains('Notify me when it\'s available').click();
|
|
WorkflowPage.getters.successToast().should('contain', 'We will contact you via email once this template is released.');
|
|
cy.visit(WorkflowsListPage.url);
|
|
// Once users have signed up for a template, suggestions should not be shown again
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('not.exist');
|
|
});
|
|
|
|
});
|
|
|
|
describe('Suggested templates - Should not render', () => {
|
|
beforeEach(() => {
|
|
localStorage.removeItem('SHOW_N8N_SUGGESTED_TEMPLATES');
|
|
cy.visit(WorkflowsListPage.url);
|
|
});
|
|
|
|
it('should not render suggested templates templates if not in cloud deployment', () => {
|
|
cy.intercept('GET', '/rest/settings', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { ...res.body.data, deployment: { type: 'notCloud' } },
|
|
});
|
|
});
|
|
});
|
|
WorkflowsListPage.getters.suggestedTemplatesPageContainer().should('not.exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('not.exist');
|
|
});
|
|
|
|
it('should not render suggested templates templates if endpoint throws error', () => {
|
|
cy.intercept('GET', '/rest/settings', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { ...res.body.data, deployment: { type: 'cloud' } },
|
|
});
|
|
});
|
|
});
|
|
cy.intercept('GET', '/rest/cloud/proxy/templates', { statusCode: 500 }).as('loadTemplates');
|
|
WorkflowsListPage.getters.suggestedTemplatesPageContainer().should('not.exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('not.exist');
|
|
});
|
|
|
|
it('should not render suggested templates templates if endpoint returns empty list', () => {
|
|
cy.intercept('GET', '/rest/settings', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { ...res.body.data, deployment: { type: 'cloud' } },
|
|
});
|
|
});
|
|
});
|
|
cy.intercept('GET', '/rest/cloud/proxy/templates', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { collections: [] },
|
|
});
|
|
});
|
|
});
|
|
WorkflowsListPage.getters.suggestedTemplatesPageContainer().should('not.exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('not.exist');
|
|
});
|
|
|
|
it('should not render suggested templates templates if endpoint returns invalid response', () => {
|
|
cy.intercept('GET', '/rest/settings', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { ...res.body.data, deployment: { type: 'cloud' } },
|
|
});
|
|
});
|
|
});
|
|
cy.intercept('GET', '/rest/cloud/proxy/templates', (req) => {
|
|
req.on('response', (res) => {
|
|
res.send({
|
|
data: { somethingElse: [] },
|
|
});
|
|
});
|
|
});
|
|
WorkflowsListPage.getters.suggestedTemplatesPageContainer().should('not.exist');
|
|
WorkflowsListPage.getters.suggestedTemplatesSectionContainer().should('not.exist');
|
|
});
|
|
});
|