mirror of
https://github.com/mempool/mempool.git
synced 2025-01-01 03:04:27 +01:00
9e46cde9b7
* initial version of the update config script
* fix duplicated content
* update cypress ci settings
* add workflow to run e2e tests when pushing
* record cypress results to the dashboard
* pull the cypress record key and project id from the secrets
* add start-server-and-test to replace concurrently
* replace concurrently with start-server-and-test
* remove concurrently
* add new cypress target to record
* update cypress to 7.7.0
* add tests for signet
* add tests for testnet
* run tests on chrome and firefox
* update test matrix: add edge and run firefox on container
* fix copypasta
* update docker image for firefox
* fix task name again
* fix edge tests task name
* improve bisq tests
* update workflow config
* enable cypress debug logs
* add a manual trigger for the e2e tests
* add config:defaults target
* use more of the GHA options
* fix config command
* add cypress-fail-on-console-error
* upgrade cypress to v8.0.0
* add helper to wait for the loader skeleton to be gone
* use skeleton waiter on the tests
* remove manual test trigger
* fix tv test when only one mempool block is available
* add waiter for pagination
* add extra steps to debug firefox launch issue
* remove whoami step
* Revert "upgrade cypress to v8.0.0"
This reverts commit cb3ff7d906
.
* remove userinfo debug step
* enable test retries in run mode
* update proxy config to reduce ECONNRESET errors
* add mock-socket dev dependency
* add helpers to mock websockets and detect page idleness
* stabilize mainnet tests
* fix tv mode test on Liquid
* add basic tests for the mainnet status page
* cleanup mainnet tests
* update bisq tests
* update signet tests
* update testnet tests
* add initial support for parameterized websocket mocks
* move testing dependencies to optionalDependencies
* comment out mempool size check until the live updates are fixed
* comment out tx regex test
* update fixture for the new difficulty adjustment component
* fix the assertions on the status page
173 lines
6.5 KiB
TypeScript
173 lines
6.5 KiB
TypeScript
import { emitMempoolInfo } from "../../support/websocket";
|
|
|
|
describe('Mainnet', () => {
|
|
beforeEach(() => {
|
|
//cy.intercept('/sockjs-node/info*').as('socket');
|
|
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');
|
|
cy.intercept('/resources/pools.json').as('pools');
|
|
|
|
Cypress.Commands.add('waitForBlockData', () => {
|
|
cy.wait('@tx-outspends');
|
|
cy.wait('@pools');
|
|
});
|
|
});
|
|
|
|
it('loads the status screen', () => {
|
|
cy.visit('/status');
|
|
cy.get('#mempool-block-0').should('be.visible');
|
|
cy.get('[id^="bitcoin-block-"]').should('have.length', 8);
|
|
cy.get('.footer').should('be.visible');
|
|
cy.get('.row > :nth-child(1)').invoke('text').then((text) => {
|
|
expect(text).to.match(/Tx vBytes per second:.* vB\/s/);
|
|
});
|
|
cy.get('.row > :nth-child(2)').invoke('text').then((text) => {
|
|
expect(text).to.match(/Unconfirmed:(.*)/);
|
|
});
|
|
cy.get('.row > :nth-child(3)').invoke('text').then((text) => {
|
|
expect(text).to.match(/Mempool size:(.*) (kB|MB) \((\d+) (block|blocks)\)/);
|
|
});
|
|
});
|
|
|
|
it('loads the dashboard', () => {
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
});
|
|
|
|
it('loads the dashboard with the skeleton blocks', () => {
|
|
cy.mockMempoolSocket();
|
|
cy.visit("/");
|
|
cy.get(':nth-child(1) > #bitcoin-block-0').should('be.visible');
|
|
cy.get(':nth-child(2) > #bitcoin-block-0').should('be.visible');
|
|
cy.get(':nth-child(3) > #bitcoin-block-0').should('be.visible');
|
|
cy.get('#mempool-block-0').should('be.visible');
|
|
cy.get('#mempool-block-1').should('be.visible');
|
|
cy.get('#mempool-block-2').should('be.visible');
|
|
|
|
emitMempoolInfo({
|
|
'params': {
|
|
loaded: true
|
|
}
|
|
});
|
|
cy.get(':nth-child(1) > #bitcoin-block-0').should('not.exist');
|
|
cy.get(':nth-child(2) > #bitcoin-block-0').should('not.exist');
|
|
cy.get(':nth-child(3) > #bitcoin-block-0').should('not.exist');
|
|
});
|
|
|
|
it('loads the blocks screen', () => {
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('li:nth-of-type(2) > a').click().then(() => {
|
|
cy.waitForPageIdle();
|
|
});
|
|
});
|
|
|
|
it('loads the graphs screen', () => {
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('li:nth-of-type(3) > a').click().then(() => {
|
|
cy.wait(1000);
|
|
});
|
|
});
|
|
|
|
describe('tv mode', () => {
|
|
it('loads the tv screen - desktop', () => {
|
|
cy.viewport('macbook-16');
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
|
cy.viewport('macbook-16');
|
|
cy.get('.chart-holder');
|
|
cy.get('.blockchain-wrapper').should('be.visible');
|
|
cy.get('#mempool-block-0').should('be.visible');
|
|
});
|
|
});
|
|
|
|
it('loads the tv screen - mobile', () => {
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
|
cy.viewport('iphone-6');
|
|
cy.get('.chart-holder');
|
|
cy.get('.blockchain-wrapper').should('not.be.visible');
|
|
});
|
|
});
|
|
});
|
|
|
|
it('loads the api screen', () => {
|
|
cy.visit('/');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('li:nth-of-type(5) > a').click().then(() => {
|
|
cy.wait(1000);
|
|
});
|
|
});
|
|
|
|
describe('blocks', () => {
|
|
it('shows empty blocks properly', () => {
|
|
cy.visit('/block/0000000000000000000bd14f744ef2e006e61c32214670de7eb891a5732ee775');
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
cy.get('h2').invoke('text').should('equal', '1 transaction');
|
|
});
|
|
|
|
it('expands and collapses the block details', () => {
|
|
cy.visit('/block/0');
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
cy.get('.btn.btn-outline-info').click().then(() => {
|
|
cy.get('#details').should('be.visible');
|
|
});
|
|
|
|
cy.get('.btn.btn-outline-info').click().then(() => {
|
|
cy.get('#details').should('not.be.visible');
|
|
});
|
|
});
|
|
it('shows blocks with no pagination', () => {
|
|
cy.visit('/block/00000000000000000001ba40caf1ad4cec0ceb77692662315c151953bfd7c4c4');
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
cy.get('.block-tx-title h2').invoke('text').should('equal', '19 transactions');
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 5);
|
|
});
|
|
|
|
it('supports pagination on the block screen', () => {
|
|
// 41 txs
|
|
cy.visit('/block/00000000000000000009f9b7b0f63ad50053ad12ec3b7f5ca951332f134f83d8');
|
|
cy.waitForSkeletonGone();
|
|
cy.get('.pagination-container a').invoke('text').then((text1) => {
|
|
cy.get('.active + li').first().click().then(() => {
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
cy.get('.header-bg.box > a').invoke('text').then((text2) => {
|
|
expect(text1).not.to.eq(text2);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
it('shows blocks pagination with 5 pages (desktop)', () => {
|
|
cy.viewport(760, 800);
|
|
cy.visit('/block/000000000000000000049281946d26fcba7d99fdabc1feac524bc3a7003d69b3').then(() => {
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
});
|
|
|
|
// 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').then(() => {
|
|
cy.waitForSkeletonGone();
|
|
cy.waitForPageIdle();
|
|
});
|
|
|
|
// 3 pages + 4 buttons = 7 buttons
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 7);
|
|
});
|
|
});
|
|
});
|