2019-05-17 14:17:27 +02:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
context('Consume', () => {
|
2019-06-19 15:28:31 +02:00
|
|
|
before(() => {
|
2019-06-26 11:13:41 +02:00
|
|
|
cy.visit(Cypress.env('CONSUME_ASSET'))
|
2019-06-21 14:58:24 +02:00
|
|
|
|
2019-06-19 15:28:31 +02:00
|
|
|
// Wait for end of loading
|
2019-06-20 13:41:11 +02:00
|
|
|
cy.get('button', { timeout: 60000 }).should('have.length', 1)
|
2019-05-17 14:17:27 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Download button is clickable when user is connected.', () => {
|
|
|
|
cy.get('button').should('not.be.disabled')
|
|
|
|
})
|
2019-06-19 15:28:31 +02:00
|
|
|
|
|
|
|
it('Consume asset and check if there is no error', () => {
|
|
|
|
// Click consume button
|
|
|
|
cy.get('button').click()
|
|
|
|
// Wait consume process to end
|
2019-06-20 11:55:16 +02:00
|
|
|
cy.get('button', { timeout: 120000 }).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-05-17 14:17:27 +02:00
|
|
|
})
|