2019-05-17 14:17:27 +02:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
context('Consume', () => {
|
2019-06-19 15:28:31 +02:00
|
|
|
before(() => {
|
2019-07-19 16:38:29 +02:00
|
|
|
cy.fixture('did').then(did => {
|
|
|
|
cy.visit(`/asset/${did}`)
|
|
|
|
})
|
2019-06-21 14:58:24 +02:00
|
|
|
|
2019-07-05 16:15:00 +02:00
|
|
|
// Alias button selector & wait for end of loading
|
|
|
|
cy.get('button[name="Download"]', { timeout: 60000 })
|
|
|
|
.first()
|
|
|
|
.should('have.length', 1)
|
|
|
|
})
|
|
|
|
|
2019-05-17 14:17:27 +02:00
|
|
|
it('Download button is clickable when user is connected.', () => {
|
2019-07-12 13:57:33 +02:00
|
|
|
cy.get('button[name="Download"]').should('not.be.disabled')
|
2019-05-17 14:17:27 +02:00
|
|
|
})
|
2019-06-19 15:28:31 +02:00
|
|
|
|
|
|
|
it('Consume asset and check if there is no error', () => {
|
2019-08-05 12:26:35 +02:00
|
|
|
// eslint-disable-next-line
|
|
|
|
cy.wait(10000)
|
|
|
|
// 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-07-12 13:57:33 +02: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
|
|
|
|
cy.wait(10000)
|
|
|
|
// wait for file to download before closing browser
|
|
|
|
// to prevent alert poping up
|
2019-06-19 15:28:31 +02:00
|
|
|
})
|
2019-05-17 14:17:27 +02:00
|
|
|
})
|