focalboard/webapp/cypress/integration/createBoard.js

111 lines
3.6 KiB
JavaScript
Raw Normal View History

2020-12-10 22:45:56 +01:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2020-12-17 21:02:12 +01:00
/* eslint-disable max-nested-callbacks */
/// <reference types="Cypress" />
2020-12-10 22:45:56 +01:00
describe('Create and delete board / card', () => {
2020-12-17 21:02:12 +01:00
const timestamp = new Date().toLocaleString();
const boardTitle = `Test Board (${timestamp})`;
const cardTitle = `Test Card (${timestamp})`;
2021-02-10 01:34:54 +01:00
beforeEach(() => {
localStorage.setItem('focalboardSessionId', 'TESTTOKEN');
2021-03-30 22:06:39 +02:00
localStorage.setItem('language', 'en');
cy.expect(localStorage.getItem('focalboardSessionId')).to.eq('TESTTOKEN');
2021-02-10 01:34:54 +01:00
});
2020-12-10 22:45:56 +01:00
it('Can create and delete a board and card', () => {
cy.visit('/');
cy.contains('+ Add Board').click({force: true});
cy.contains('Empty board').click({force: true});
cy.get('.BoardComponent').should('exist');
2020-12-17 21:02:12 +01:00
});
2020-12-10 22:45:56 +01:00
2020-12-17 21:02:12 +01:00
it('Can set the board title', () => {
2020-12-10 22:45:56 +01:00
// Board title
cy.get('.Editable.title').
2020-12-10 22:45:56 +01:00
type(boardTitle).
type('{enter}').
should('have.value', boardTitle);
2020-12-17 21:02:12 +01:00
});
2020-12-10 22:45:56 +01:00
2020-12-17 21:02:12 +01:00
it('Can rename the board view', () => {
// Rename board view
const boardViewTitle = `Test board (${timestamp})`;
2021-03-30 22:06:39 +02:00
cy.get('.ViewHeader>.Editable[title=\'Board view\']').should('exist');
cy.get('.ViewHeader>.Editable').
clear().
type(boardViewTitle).
type('{esc}');
2021-03-30 22:06:39 +02:00
cy.get(`.ViewHeader .Editable[title='${boardViewTitle}']`).should('exist');
2020-12-17 21:02:12 +01:00
});
2020-12-17 21:02:12 +01:00
it('Can create a card', () => {
2020-12-10 22:45:56 +01:00
// Create card
cy.get('.ViewHeader').contains('New').click();
cy.get('.CardDetail').should('exist');
2020-12-17 21:02:12 +01:00
});
2020-12-10 22:45:56 +01:00
2020-12-17 21:02:12 +01:00
it('Can set the card title', () => {
2020-12-10 22:45:56 +01:00
// Card title
cy.get('.CardDetail>.Editable.title').
type(cardTitle).
type('{enter}').
should('have.value', cardTitle);
// Close card
2021-06-04 22:18:25 +02:00
cy.get('.Dialog.dialog-back .wrapper').click({force: true});
2020-12-17 21:02:12 +01:00
});
2020-12-10 22:45:56 +01:00
2020-12-17 21:02:12 +01:00
it('Can create a table view', () => {
// Create table view
// cy.intercept('POST', '/api/v1/blocks').as('insertBlocks');
cy.get('.ViewHeader').get('.DropdownIcon').first().parent().click();
cy.get('.ViewHeader').contains('Add View').click();
cy.get('.ViewHeader').contains('Add View').click();
cy.get('.ViewHeader').contains('Add View').parent().contains('Table').click();
// cy.wait('@insertBlocks');
// Wait for round-trip to complete and DOM to update
2021-03-30 22:06:39 +02:00
cy.get('.ViewHeader .Editable[title=\'Table view\']').should('exist');
// Card should exist in table
cy.get(`.TableRow [value='${cardTitle}']`).should('exist');
2020-12-17 21:02:12 +01:00
});
2020-12-17 21:02:12 +01:00
it('Can rename the table view', () => {
// Rename table view
const tableViewTitle = `Test table (${timestamp})`;
2021-03-30 22:06:39 +02:00
cy.get('.ViewHeader .Editable[title=\'Table view\']').
clear().
type(tableViewTitle).
type('{esc}');
2021-03-30 22:06:39 +02:00
cy.get(`.ViewHeader .Editable[title='${tableViewTitle}']`).should('exist');
2020-12-17 21:02:12 +01:00
});
2020-12-17 21:02:12 +01:00
it('Can sort the table', () => {
// Sort
cy.get('.ViewHeader').contains('Sort').click();
cy.get('.ViewHeader').contains('Sort').parent().contains('Name').click();
2020-12-17 21:02:12 +01:00
});
it('Can delete the board', () => {
2020-12-10 22:45:56 +01:00
// Delete board
cy.get('.Sidebar .octo-sidebar-list').
contains(boardTitle).first().
next().
find('.Button.IconButton').
click({force: true});
2020-12-11 20:10:25 +01:00
cy.contains('Delete board').click({force: true});
2020-12-10 22:45:56 +01:00
// // Board should not exist
2020-12-10 22:45:56 +01:00
cy.contains(boardTitle).should('not.exist');
});
});