2019-05-17 14:17:27 +02:00
|
|
|
/// <reference types="Cypress" />
|
|
|
|
import Web3 from 'web3'
|
2019-06-17 16:27:57 +02:00
|
|
|
import HDWalletProvider from 'truffle-hdwallet-provider'
|
2019-05-17 14:17:27 +02:00
|
|
|
|
|
|
|
context('Consume', () => {
|
2019-06-19 15:28:31 +02:00
|
|
|
before(() => {
|
2019-05-17 14:17:27 +02:00
|
|
|
cy.on('window:before:load', win => {
|
2019-06-17 16:27:57 +02:00
|
|
|
const provider = new HDWalletProvider(
|
2019-06-25 10:17:43 +02:00
|
|
|
Cypress.env('SEEDPHRASE')
|
|
|
|
? Cypress.env('SEEDPHRASE')
|
|
|
|
: 'taxi music thumb unique chat sand crew more leg another off lamp',
|
2019-06-21 15:18:53 +02:00
|
|
|
Cypress.env('NODE_URI')
|
2019-06-25 10:17:43 +02:00
|
|
|
? Cypress.env('NODE_URI')
|
2019-06-25 16:07:55 +02:00
|
|
|
: 'https://nile.dev-ocean.com'
|
2019-05-17 14:17:27 +02:00
|
|
|
)
|
|
|
|
win.web3 = new Web3(provider)
|
2019-06-17 16:27:57 +02:00
|
|
|
win.ethereum = win.web3
|
2019-05-17 14:17:27 +02:00
|
|
|
})
|
|
|
|
|
2019-06-25 10:17:43 +02:00
|
|
|
cy.visit(
|
|
|
|
Cypress.env('CONSUME_ASSET')
|
|
|
|
? Cypress.env('CONSUME_ASSET')
|
2019-06-25 16:07:55 +02:00
|
|
|
: 'http://localhost:3000/asset/did:op:8014d305dcb44b42a5355791a2f016a654a61184456a4d178dc6e5913deb3a5c'
|
2019-06-25 10:17:43 +02:00
|
|
|
)
|
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
|
|
|
})
|