1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/cypress/integration/3_consume.spec.js

63 lines
1.9 KiB
JavaScript
Raw Normal View History

/// <reference types="Cypress" />
describe('Consume', () => {
2019-10-29 16:14:07 +01:00
it('should consume https:// file', () => {
cy.fixture('did').then(did => {
cy.visit(`/asset/${did}`)
})
2019-06-21 14:58:24 +02:00
2019-10-29 16:14:07 +01:00
// Button selector & wait for end of loading
cy.get('button[name="Download"]', { timeout: 60000 }).should(
'not.be.disabled'
)
2019-06-19 15:28:31 +02:00
// eslint-disable-next-line
2019-10-29 16:14:07 +01:00
cy.wait(5000)
// Wait for faucet
// Click consume button
cy.get('button[name="Download"]').click()
// Wait consume process to end
2019-10-29 16:14:07 +01:00
cy.get('button[name="Download"]', {
timeout: 600000
}).should('contain', 'Get file')
// check if there is no error
cy.get('article>div').should(
'not.contain',
'. Sorry about that, can you try again?'
)
// eslint-disable-next-line
2019-10-29 16:14:07 +01:00
cy.wait(5000)
// wait for file to download before closing browser
// to prevent alert poping up
})
it('should consume ipfs:// file', () => {
cy.fixture('did-ipfs').then(did => {
cy.visit(`/asset/${did}`)
})
2019-10-29 16:14:07 +01:00
// Button selector & wait for end of loading
cy.get('button[name="Download"]', { timeout: 60000 }).should(
'not.be.disabled'
)
// eslint-disable-next-line
2019-10-29 16:14:07 +01:00
cy.wait(5000)
// Wait for faucet
2019-06-19 15:28:31 +02:00
// Click consume button
2019-07-12 13:57:33 +02:00
cy.get('button[name="Download"]').click()
2019-06-19 15:28:31 +02:00
// Wait consume process to end
2019-10-29 16:14:07 +01:00
cy.get('button[name="Download"]', {
timeout: 600000
}).should('contain', 'Get file')
2019-06-19 15:28:31 +02:00
// check if there is no error
cy.get('article>div').should(
'not.contain',
'. Sorry about that, can you try again?'
)
2019-08-02 11:58:24 +02:00
// eslint-disable-next-line
2019-10-29 16:14:07 +01:00
cy.wait(5000)
2019-08-02 11:58:24 +02:00
// wait for file to download before closing browser
// to prevent alert poping up
2019-06-19 15:28:31 +02:00
})
})