2021-02-20 09:19:14 +01:00
|
|
|
describe('Templates', () => {
|
|
|
|
it('Opens templates page', () => {
|
|
|
|
cy.resetDB();
|
|
|
|
cy.loginAndVisit('/campaigns/templates');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('Counts default templates', () => {
|
|
|
|
cy.get('tbody td[data-label=Name]').should('have.length', 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Clones template', () => {
|
|
|
|
// Clone the campaign.
|
|
|
|
cy.get('[data-cy=btn-clone]').first().click();
|
|
|
|
cy.get('.modal input').clear().type('cloned').click();
|
|
|
|
cy.get('.modal button.is-primary').click();
|
|
|
|
cy.wait(250);
|
|
|
|
|
|
|
|
// Verify the newly created row.
|
|
|
|
cy.get('tbody td[data-label="Name"]').eq(1).contains('cloned');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Edits template', () => {
|
|
|
|
cy.get('tbody td.actions [data-cy=btn-edit]').first().click();
|
|
|
|
cy.wait(250);
|
|
|
|
cy.get('input[name=name]').clear().type('edited');
|
|
|
|
cy.get('textarea[name=body]').clear().type('<span>test</span> {{ template "content" . }}',
|
|
|
|
{ parseSpecialCharSequences: false, delay: 0 });
|
2021-05-16 11:56:38 +02:00
|
|
|
cy.get('.modal-card-foot button.is-primary').click();
|
2021-02-20 09:19:14 +01:00
|
|
|
cy.wait(250);
|
|
|
|
cy.get('tbody td[data-label="Name"] a').contains('edited');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('Previews templates', () => {
|
|
|
|
// Edited one sould have a bare body.
|
|
|
|
cy.get('tbody [data-cy=btn-preview').eq(0).click();
|
|
|
|
cy.wait(500);
|
|
|
|
cy.get('.modal-card-body iframe').iframe(() => {
|
|
|
|
cy.get('span').first().contains('test');
|
|
|
|
cy.get('p').first().contains('Hi there');
|
|
|
|
});
|
2021-05-16 11:56:38 +02:00
|
|
|
cy.get('.modal-card-foot button').click();
|
2021-02-20 09:19:14 +01:00
|
|
|
|
|
|
|
// Cloned one should have the full template.
|
|
|
|
cy.get('tbody [data-cy=btn-preview').eq(1).click();
|
|
|
|
cy.wait(500);
|
|
|
|
cy.get('.modal-card-body iframe').iframe(() => {
|
|
|
|
cy.get('.wrap p').first().contains('Hi there');
|
|
|
|
cy.get('.footer a').first().contains('Unsubscribe');
|
|
|
|
});
|
2021-05-16 11:56:38 +02:00
|
|
|
cy.get('.modal-card-foot button').click();
|
2021-02-20 09:19:14 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Sets default', () => {
|
|
|
|
cy.get('tbody td.actions').eq(1).find('[data-cy=btn-set-default]').click();
|
|
|
|
cy.get('.modal button.is-primary').click();
|
|
|
|
|
|
|
|
// The original default shouldn't have default and the new one should have.
|
|
|
|
cy.get('tbody td.actions').eq(0).then((el) => {
|
|
|
|
cy.wrap(el).find('[data-cy=btn-delete]').should('exist');
|
|
|
|
cy.wrap(el).find('[data-cy=btn-set-default]').should('exist');
|
|
|
|
});
|
|
|
|
cy.get('tbody td.actions').eq(1).then((el) => {
|
|
|
|
cy.wrap(el).find('[data-cy=btn-delete]').should('not.exist');
|
|
|
|
cy.wrap(el).find('[data-cy=btn-set-default]').should('not.exist');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('Deletes template', () => {
|
2021-05-16 11:56:38 +02:00
|
|
|
cy.wait(250);
|
2021-02-20 09:19:14 +01:00
|
|
|
cy.get('tbody td.actions [data-cy=btn-delete]').first().click();
|
|
|
|
cy.get('.modal button.is-primary').click();
|
|
|
|
cy.wait(250);
|
|
|
|
cy.get('tbody td.actions').should('have.length', 1);
|
|
|
|
});
|
|
|
|
});
|