mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-09 08:02:24 +02:00
Cypress integrated with some tests
This commit is contained in:
0
cypress.json
Normal file
0
cypress.json
Normal file
5
cypress/fixtures/example.json
Normal file
5
cypress/fixtures/example.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "Using fixtures to represent data",
|
||||
"email": "hello@cypress.io",
|
||||
"body": "Fixtures are a great way to mock data for responses to routes"
|
||||
}
|
64
cypress/integration/console.test.js
Normal file
64
cypress/integration/console.test.js
Normal file
@ -0,0 +1,64 @@
|
||||
/// <reference types="cypress" />
|
||||
|
||||
const consoleAssert = (prompt, expected) => {
|
||||
cy.get('#consolePromptEl').type(`${prompt}{enter}`);
|
||||
|
||||
// append the prompt at the beginning of the expected items
|
||||
expected.unshift(`"> ${prompt}"`);
|
||||
|
||||
cy.get('ul[data-testid=consoleItems] li').should(
|
||||
'have.length',
|
||||
expected.length
|
||||
);
|
||||
|
||||
expected.forEach((expectedValue, index) => {
|
||||
cy.get('ul[data-testid=consoleItems] li').eq(index).contains(expectedValue);
|
||||
});
|
||||
};
|
||||
|
||||
describe('Console checks', () => {
|
||||
beforeEach(() => {
|
||||
cy.init();
|
||||
|
||||
cy.get('a[data-testid=toggleConsole]').click();
|
||||
});
|
||||
|
||||
it('Simple arithmetic addition', () => {
|
||||
consoleAssert('4+5', ['9']);
|
||||
});
|
||||
|
||||
it('Simple arithmetic subtraction', () => {
|
||||
consoleAssert('4-5', ['-1']);
|
||||
});
|
||||
|
||||
it('Simple arithmetic multiplication', () => {
|
||||
consoleAssert('4*5', ['20']);
|
||||
});
|
||||
|
||||
it('Simple arithmetic division', () => {
|
||||
consoleAssert('4/5', ['0.8']);
|
||||
});
|
||||
|
||||
it('Division by Zero', () => {
|
||||
consoleAssert('4/0', ['Infinity']);
|
||||
});
|
||||
|
||||
it('Console log a message', () => {
|
||||
consoleAssert("console.log('hello')", ['hello', 'undefined']);
|
||||
});
|
||||
|
||||
it('Equality check', () => {
|
||||
consoleAssert("100 == '100'", ['true']);
|
||||
});
|
||||
|
||||
it('Strict-Equality check', () => {
|
||||
consoleAssert("100 === '100'", ['false']);
|
||||
});
|
||||
|
||||
it.only('Minimizing console', () => {
|
||||
cy.get('#consoleEl').should('not.have.class', 'is-minimized');
|
||||
cy.wait(200); // wait for animation to complete
|
||||
cy.get('a[data-testid=toggleConsole]').click();
|
||||
cy.get('#consoleEl').should('have.class', 'is-minimized');
|
||||
});
|
||||
});
|
94
cypress/integration/layouts.test.js
Normal file
94
cypress/integration/layouts.test.js
Normal file
@ -0,0 +1,94 @@
|
||||
/// <reference types="cypress" />
|
||||
|
||||
describe('Pressing the layout buttons should change the layouts accordingly', () => {
|
||||
before(() => {
|
||||
cy.init();
|
||||
cy.viewport(1270, 720);
|
||||
});
|
||||
|
||||
const getLayoutBtnId = index => `#layoutBtn${index}`;
|
||||
|
||||
it('Default Layout', () => {
|
||||
cy.get('body').should('have.class', 'layout-1');
|
||||
|
||||
cy.get('#js-code-side').should('be.visible');
|
||||
cy.get('#js-demo-side').should('be.visible');
|
||||
|
||||
cy.get('#js-code-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'width: calc(50% - 3px);'
|
||||
);
|
||||
cy.get('#js-code-side').should('have.attr', 'direction', 'vertical');
|
||||
|
||||
cy.get('#js-demo-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'width: calc(50% - 3px);'
|
||||
);
|
||||
});
|
||||
|
||||
it('Layout 2', () => {
|
||||
cy.get(getLayoutBtnId(2)).click();
|
||||
|
||||
cy.get('body').should('have.class', 'layout-2');
|
||||
|
||||
cy.get('#js-code-side').should('be.visible');
|
||||
cy.get('#js-demo-side').should('be.visible');
|
||||
|
||||
cy.get('#js-code-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'height: calc(50% - 3px);'
|
||||
);
|
||||
cy.get('#js-code-side').should('have.attr', 'direction', 'horizontal');
|
||||
|
||||
cy.get('#js-demo-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'height: calc(50% - 3px);'
|
||||
);
|
||||
});
|
||||
|
||||
it('Layout 3', () => {
|
||||
cy.get(getLayoutBtnId(3)).click();
|
||||
|
||||
cy.get('body').should('have.class', 'layout-3');
|
||||
|
||||
cy.get('#js-code-side').should('be.visible');
|
||||
cy.get('#js-demo-side').should('be.visible');
|
||||
|
||||
cy.get('#js-code-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'width: calc(50% - 3px);'
|
||||
);
|
||||
cy.get('#js-code-side').should('have.attr', 'direction', 'vertical');
|
||||
|
||||
cy.get('#js-demo-side').should(
|
||||
'have.attr',
|
||||
'style',
|
||||
'width: calc(50% - 3px);'
|
||||
);
|
||||
});
|
||||
|
||||
it('Layout 4', () => {
|
||||
cy.get(getLayoutBtnId(4)).click();
|
||||
|
||||
cy.get('body').should('have.class', 'layout-4');
|
||||
|
||||
cy.get('#js-code-side').should('not.be.visible');
|
||||
cy.get('#js-demo-side').should('be.visible');
|
||||
});
|
||||
|
||||
it('Layout 5', () => {
|
||||
cy.get(getLayoutBtnId(5)).click();
|
||||
|
||||
cy.get('body').should('have.class', 'layout-5');
|
||||
|
||||
cy.get('#js-code-side').should('be.visible');
|
||||
cy.get('#js-demo-side').should('be.visible');
|
||||
|
||||
cy.get('#js-code-side').should('have.attr', 'direction', 'horizontal');
|
||||
});
|
||||
});
|
27
cypress/integration/modals.test.js
Normal file
27
cypress/integration/modals.test.js
Normal file
@ -0,0 +1,27 @@
|
||||
/// <reference types="cypress" />
|
||||
|
||||
describe('Modals pop-up when header btns are pressed', () => {
|
||||
beforeEach(() => {
|
||||
cy.init();
|
||||
});
|
||||
|
||||
// Selectors for each button
|
||||
const ADD_LIBRARY_SEL = '[data-event-action=addLibraryButtonClick]';
|
||||
const NEW_SEL = '[aria-label="Start a new creation"]';
|
||||
const LOGIN_SEL = '[data-event-action=loginButtonClick]';
|
||||
|
||||
it('Add Library', () => {
|
||||
cy.get(ADD_LIBRARY_SEL).click();
|
||||
cy.get('.modal__content').should('be.visible');
|
||||
});
|
||||
|
||||
it('+ New', () => {
|
||||
cy.get(NEW_SEL).click();
|
||||
cy.get('.modal__content').should('be.visible');
|
||||
});
|
||||
|
||||
it('Login/SignUp', () => {
|
||||
cy.get(LOGIN_SEL).click();
|
||||
cy.get('.modal__content').should('be.visible');
|
||||
});
|
||||
});
|
22
cypress/plugins/index.js
Normal file
22
cypress/plugins/index.js
Normal file
@ -0,0 +1,22 @@
|
||||
/// <reference types="cypress" />
|
||||
// ***********************************************************
|
||||
// This example plugins/index.js can be used to load plugins
|
||||
//
|
||||
// You can change the location of this file or turn off loading
|
||||
// the plugins file with the 'pluginsFile' configuration option.
|
||||
//
|
||||
// You can read more here:
|
||||
// https://on.cypress.io/plugins-guide
|
||||
// ***********************************************************
|
||||
|
||||
// This function is called when a project is opened or re-opened (e.g. due to
|
||||
// the project's config changing)
|
||||
|
||||
/**
|
||||
* @type {Cypress.PluginConfig}
|
||||
*/
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
module.exports = (on, config) => {
|
||||
// `on` is used to hook into various events Cypress emits
|
||||
// `config` is the resolved Cypress config
|
||||
};
|
31
cypress/support/commands.js
Normal file
31
cypress/support/commands.js
Normal file
@ -0,0 +1,31 @@
|
||||
// ***********************************************
|
||||
// This example commands.js shows you how to
|
||||
// create various custom commands and overwrite
|
||||
// existing commands.
|
||||
//
|
||||
// For more comprehensive examples of custom
|
||||
// commands please read more here:
|
||||
// https://on.cypress.io/custom-commands
|
||||
// ***********************************************
|
||||
//
|
||||
//
|
||||
// -- This is a parent command --
|
||||
// Cypress.Commands.add('login', (email, password) => { ... })
|
||||
Cypress.Commands.add('init', () => {
|
||||
cy.visit('http://localhost:8080');
|
||||
|
||||
// closing the Welcome modal
|
||||
cy.get('button[aria-label="Close modal"]').click();
|
||||
});
|
||||
//
|
||||
//
|
||||
// -- This is a child command --
|
||||
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is a dual command --
|
||||
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This will overwrite an existing command --
|
||||
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
|
20
cypress/support/index.js
Normal file
20
cypress/support/index.js
Normal file
@ -0,0 +1,20 @@
|
||||
// ***********************************************************
|
||||
// This example support/index.js is processed and
|
||||
// loaded automatically before your test files.
|
||||
//
|
||||
// This is a great place to put global configuration and
|
||||
// behavior that modifies Cypress.
|
||||
//
|
||||
// You can change the location of this file or turn off
|
||||
// automatically serving support files with the
|
||||
// 'supportFile' configuration option.
|
||||
//
|
||||
// You can read more here:
|
||||
// https://on.cypress.io/configuration
|
||||
// ***********************************************************
|
||||
|
||||
// Import commands.js using ES2015 syntax:
|
||||
import './commands';
|
||||
|
||||
// Alternatively you can use CommonJS syntax:
|
||||
// require('./commands')
|
BIN
cypress/videos/console.test.js.mp4
Normal file
BIN
cypress/videos/console.test.js.mp4
Normal file
Binary file not shown.
BIN
cypress/videos/layouts.test.js.mp4
Normal file
BIN
cypress/videos/layouts.test.js.mp4
Normal file
Binary file not shown.
BIN
cypress/videos/modals.test.js.mp4
Normal file
BIN
cypress/videos/modals.test.js.mp4
Normal file
Binary file not shown.
@ -14,7 +14,9 @@
|
||||
"add-locale": "lingui add-locale",
|
||||
"extract": "lingui extract",
|
||||
"compile": "lingui compile",
|
||||
"release:dev": "gulp devRelease"
|
||||
"release:dev": "gulp devRelease",
|
||||
"cypress:open": "cypress open",
|
||||
"cypress": "cypress run"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "eslint-config-synacor"
|
||||
@ -42,6 +44,7 @@
|
||||
"babel-minify": "^0.2.0",
|
||||
"babel-plugin-macros": "^2.6.1",
|
||||
"concurrently": "^7.0.0",
|
||||
"cypress": "^9.5.3",
|
||||
"eslint": "^4.9.0",
|
||||
"eslint-config-prettier": "^2.3.0",
|
||||
"eslint-config-synacor": "^2.0.2",
|
||||
|
@ -119,6 +119,7 @@ export class Console extends PureComponent {
|
||||
class="code-wrap__header-btn code-wrap__collapse-btn"
|
||||
title={i18n._(t`Toggle console`)}
|
||||
onClick={toggleConsole}
|
||||
data-testid="toggleConsole"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -127,6 +128,7 @@ export class Console extends PureComponent {
|
||||
ref={el => {
|
||||
this.logContainerEl = el;
|
||||
}}
|
||||
data-testid="consoleItems"
|
||||
>
|
||||
{logs.map(log => (
|
||||
<LogRow data={log} />
|
||||
|
Reference in New Issue
Block a user