123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- describe('Lists', () => {
- it('Opens lists page', () => {
- cy.resetDB();
- cy.loginAndVisit('/lists');
- });
- it('Counts subscribers in default lists', () => {
- cy.get('tbody td[data-label=Subscribers]').contains('1');
- });
- it('Creates campaign for list', () => {
- cy.get('tbody a[data-cy=btn-campaign]').first().click();
- cy.location('pathname').should('contain', '/campaigns/new');
- cy.get('.list-tags .tag').contains('Default list');
- cy.clickMenu('lists', 'all-lists');
- });
- it('Creates opt-in campaign for list', () => {
- cy.get('tbody a[data-cy=btn-send-optin-campaign]').click();
- cy.get('.modal button.is-primary').click();
- cy.location('pathname').should('contain', '/campaigns/2');
- cy.clickMenu('lists', 'all-lists');
- });
- it('Checks individual subscribers in lists', () => {
- const subs = [{ listID: 1, email: 'john@example.com' },
- { listID: 2, email: 'anon@example.com' }];
- // Click on each list on the lists page, go the the subscribers page
- // for that list, and check the subscriber details.
- subs.forEach((s, n) => {
- cy.get('tbody td[data-label=Subscribers] a').eq(n).click();
- cy.location('pathname').should('contain', `/subscribers/lists/${s.listID}`);
- cy.get('tbody tr').its('length').should('eq', 1);
- cy.get('tbody td[data-label="E-mail"]').contains(s.email);
- cy.clickMenu('lists', 'all-lists');
- });
- });
- it('Edits lists', () => {
- // Open the edit popup and edit the default lists.
- cy.get('[data-cy=btn-edit]').each(($el, n) => {
- cy.wrap($el).click();
- cy.get('input[name=name]').clear().type(`list-${n}`);
- cy.get('select[name=type]').select('public');
- cy.get('select[name=optin]').select('double');
- cy.get('input[name=tags]').clear().type(`tag${n}`);
- cy.get('button[type=submit]').click();
- });
- cy.wait(250);
- // Confirm the edits.
- cy.get('tbody tr').each(($el, n) => {
- cy.wrap($el).find('td[data-label=Name]').contains(`list-${n}`);
- cy.wrap($el).find('.tags')
- .should('contain', 'test')
- .and('contain', `tag${n}`);
- });
- });
- it('Deletes lists', () => {
- // Delete all visible lists.
- cy.get('tbody tr').each(() => {
- cy.get('tbody a[data-cy=btn-delete]').first().click();
- cy.get('.modal button.is-primary').click();
- });
- // Confirm deletion.
- cy.get('table tr.is-empty');
- });
- // Add new lists.
- it('Adds new lists', () => {
- // Open the list form and create lists of multiple type/optin combinations.
- const types = ['private', 'public'];
- const optin = ['single', 'double'];
- let n = 0;
- types.forEach((t) => {
- optin.forEach((o) => {
- const name = `list-${t}-${o}-${n}`;
- cy.get('[data-cy=btn-new]').click();
- cy.get('input[name=name]').type(name);
- cy.get('select[name=type]').select(t);
- cy.get('select[name=optin]').select(o);
- cy.get('input[name=tags]').type(`tag${n}{enter}${t}{enter}${o}{enter}`);
- cy.get('button[type=submit]').click();
- cy.wait(200);
- // Confirm the addition by inspecting the newly created list row.
- const tr = `tbody tr:nth-child(${n + 1})`;
- cy.get(`${tr} td[data-label=Name]`).contains(name);
- cy.get(`${tr} td[data-label=Type] .tag[data-cy=type-${t}]`);
- cy.get(`${tr} td[data-label=Type] .tag[data-cy=optin-${o}]`);
- cy.get(`${tr} .tags`)
- .should('contain', `tag${n}`)
- .and('contain', t, { matchCase: false })
- .and('contain', o, { matchCase: false });
- n++;
- });
- });
- });
- // Sort lists by clicking on various headers. At this point, there should be four
- // lists with IDs = [3, 4, 5, 6]. Sort the items be columns and match them with
- // the expected order of IDs.
- it('Sorts lists', () => {
- cy.sortTable('thead th.cy-name', [4, 3, 6, 5]);
- cy.sortTable('thead th.cy-name', [5, 6, 3, 4]);
- cy.sortTable('thead th.cy-type', [5, 6, 4, 3]);
- cy.sortTable('thead th.cy-type', [4, 3, 5, 6]);
- cy.sortTable('thead th.cy-created_at', [3, 4, 5, 6]);
- cy.sortTable('thead th.cy-created_at', [6, 5, 4, 3]);
- cy.sortTable('thead th.cy-updated_at', [3, 4, 5, 6]);
- cy.sortTable('thead th.cy-updated_at', [6, 5, 4, 3]);
- });
- });
|