2022-09-04 15:11:18 +00:00
|
|
|
import { setLoginInfo, defaultMocks } from './helpers';
|
|
|
|
|
|
|
|
function tradeMocks() {
|
|
|
|
cy.intercept('GET', '**/api/v1/status', { fixture: 'status_empty.json' }).as('Status');
|
|
|
|
cy.intercept('GET', '**/api/v1/profit', { fixture: 'profit.json' }).as('Profit');
|
|
|
|
cy.intercept('GET', '**/api/v1/trades*', { fixture: 'trades.json' }).as('Trades');
|
|
|
|
cy.intercept('GET', '**/api/v1/balance', { fixture: 'balance.json' }).as('Balance');
|
|
|
|
cy.intercept('GET', '**/api/v1/whitelist', { fixture: 'whitelist.json' }).as('Whitelist');
|
|
|
|
cy.intercept('GET', '**/api/v1/blacklist', { fixture: 'blacklist.json' }).as('Blacklist');
|
|
|
|
cy.intercept('GET', '**/api/v1/locks', { fixture: 'locks_empty.json' }).as('Locks');
|
|
|
|
cy.intercept('GET', '**/api/v1/performance', { fixture: 'performance.json' }).as('Performance');
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Trade', () => {
|
2022-12-04 08:03:46 +00:00
|
|
|
it('Trade view', { scrollBehavior: false }, () => {
|
2022-09-04 15:11:18 +00:00
|
|
|
defaultMocks();
|
|
|
|
tradeMocks();
|
|
|
|
setLoginInfo();
|
2022-12-04 08:03:46 +00:00
|
|
|
cy.viewport('macbook-11');
|
2022-09-04 15:11:18 +00:00
|
|
|
|
|
|
|
cy.visit('/trade');
|
|
|
|
cy.wait('@Ping');
|
|
|
|
cy.wait('@Status');
|
|
|
|
cy.wait('@Profit');
|
|
|
|
cy.wait('@Balance');
|
|
|
|
cy.wait('@Trades');
|
|
|
|
cy.wait('@Whitelist');
|
|
|
|
cy.wait('@Blacklist');
|
|
|
|
cy.wait('@Locks');
|
|
|
|
cy.wait('@Performance');
|
2022-12-04 07:39:28 +00:00
|
|
|
cy.get('.drag-header').contains('Multi Pane').should('be.visible');
|
2022-12-04 08:03:46 +00:00
|
|
|
cy.get('.drag-header').contains('Chart').should('be.visible');
|
2022-09-04 15:11:18 +00:00
|
|
|
cy.get('button').should('contain', 'BTC/USDT');
|
|
|
|
cy.get('button').should('contain', 'ETH/USDT').should('be.visible');
|
|
|
|
cy.get('button').contains('ETH/USDT').should('be.visible');
|
|
|
|
|
2022-12-04 08:21:54 +00:00
|
|
|
// Test messageBox behavior
|
|
|
|
// No modal visible
|
|
|
|
cy.get('.modal-dialog > .modal-content > .modal-footer > .btn-secondary')
|
|
|
|
.filter(':visible')
|
|
|
|
.should('have.length', 0);
|
|
|
|
|
|
|
|
cy.get('button[title*="Stop Trading"]').click();
|
|
|
|
// Modal open
|
|
|
|
cy.get('.modal-dialog > .modal-content > .modal-footer > .btn-secondary')
|
|
|
|
.filter(':visible')
|
|
|
|
.contains('Cancel')
|
|
|
|
.should('be.visible')
|
|
|
|
.click();
|
|
|
|
// Modal closed
|
|
|
|
cy.get('.modal-dialog > .modal-content > .modal-footer > .btn-secondary')
|
|
|
|
.filter(':visible')
|
|
|
|
.should('have.length', 0);
|
|
|
|
|
|
|
|
// General
|
2022-11-27 16:38:20 +00:00
|
|
|
cy.get('button[role="tab"]').contains('General').click();
|
2022-09-04 15:11:18 +00:00
|
|
|
cy.get('button').contains('ETH/USDT').should('not.be.visible');
|
2022-12-04 08:21:54 +00:00
|
|
|
// 2nd segment
|
2022-12-04 08:03:46 +00:00
|
|
|
cy.get('.drag-header').contains('Open Trades').scrollIntoView().should('be.visible');
|
|
|
|
cy.get('.drag-header').contains('Closed Trades').scrollIntoView().should('be.visible');
|
|
|
|
cy.get('span').contains('TRX/USDT').should('be.visible');
|
|
|
|
cy.get('td').contains('8070.5').should('be.visible');
|
2022-09-04 15:11:18 +00:00
|
|
|
});
|
|
|
|
});
|