2021-06-07 16:36:41 +02:00
|
|
|
describe('Mainnet', () => {
|
|
|
|
beforeEach(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.intercept('/api/block-height/*').as('block-height');
|
|
|
|
cy.intercept('/api/block/*').as('block');
|
|
|
|
cy.intercept('/api/block/*/txs/0').as('block-txs');
|
|
|
|
cy.intercept('/api/tx/*/outspends').as('tx-outspends');
|
2021-06-07 16:36:41 +02:00
|
|
|
|
2021-06-07 21:48:27 +02:00
|
|
|
// TODO: Fix ng serve to deliver this file
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.fixture('pools').then((json) => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.intercept('/resources/pools.json', json);
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the dashboard', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/');
|
|
|
|
cy.wait(1000);
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the blocks screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(2) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait(1000);
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the graphs screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(3) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait(1000);
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
describe('tv mode', () => {
|
|
|
|
it('loads the tv screen - desktop', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.viewport('macbook-16');
|
|
|
|
cy.visit('/');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
2021-06-29 19:10:15 +02:00
|
|
|
cy.viewport('macbook-16');
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait(1000);
|
2021-06-29 19:10:15 +02:00
|
|
|
cy.get('.blockchain-wrapper').should('be.visible');
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the tv screen - mobile', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.viewport('iphone-6');
|
|
|
|
cy.wait(1000);
|
2021-06-29 19:10:15 +02:00
|
|
|
cy.get('.blockchain-wrapper').should('not.be.visible');
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
it('loads the api screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(5) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait(1000);
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
describe('blocks', () => {
|
|
|
|
it('shows empty blocks properly', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/block/0000000000000000000bd14f744ef2e006e61c32214670de7eb891a5732ee775');
|
|
|
|
cy.get('h2').invoke('text').should('equal', '1 transaction');
|
|
|
|
});
|
|
|
|
|
2021-06-07 16:36:41 +02:00
|
|
|
it('expands and collapses the block details', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/block/0');
|
|
|
|
cy.wait('@tx-outspends');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('.btn.btn-outline-info').click().then(() => {
|
|
|
|
cy.get('#details').should('be.visible');
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('.btn.btn-outline-info').click().then(() => {
|
|
|
|
cy.get('#details').should('not.be.visible');
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
it('shows blocks with no pagination', () => {
|
2021-07-05 21:28:56 +02:00
|
|
|
cy.viewport('iphone-6');
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/block/00000000000000000001ba40caf1ad4cec0ceb77692662315c151953bfd7c4c4');
|
2021-07-05 21:28:56 +02:00
|
|
|
cy.get('.block-tx-title h2').invoke('text').should('equal', '19 transactions');
|
|
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 6);
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
|
2021-06-07 16:36:41 +02:00
|
|
|
it('supports pagination on the block screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
// 41 txs
|
|
|
|
cy.visit('/block/00000000000000000009f9b7b0f63ad50053ad12ec3b7f5ca951332f134f83d8');
|
2021-07-05 21:28:56 +02:00
|
|
|
cy.get('.pagination-container a').invoke('text').then((text1) => {
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('.active + li').first().click().then(() => {
|
|
|
|
cy.get('.header-bg.box > a').invoke('text').then((text2) => {
|
2021-06-07 21:48:27 +02:00
|
|
|
expect(text1).not.to.eq(text2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2021-07-05 21:28:56 +02:00
|
|
|
|
|
|
|
it('shows blocks pagination with 5 pages (desktop)', () => {
|
|
|
|
cy.viewport(760, 800);
|
|
|
|
cy.visit('/block/000000000000000000049281946d26fcba7d99fdabc1feac524bc3a7003d69b3');
|
|
|
|
// 5 pages + 4 buttons = 9 buttons
|
|
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 9);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shows blocks pagination with 3 pages (mobile)', () => {
|
|
|
|
cy.viewport(669, 800);
|
|
|
|
cy.visit('/block/000000000000000000049281946d26fcba7d99fdabc1feac524bc3a7003d69b3');
|
|
|
|
// 3 pages + 4 buttons = 7 buttons
|
|
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 7);
|
|
|
|
});
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
});
|