dd9add50a0
* Started monitor-e2e rewrite * axios * Implemented tests * Monitor start * First deploy * Wait for monitor * Removed redundant files * Tests. * TODO * Links to minitor in constants * Typo. * [PR-into-PR] Monitor E2E rewrite - balance (#191) * Test run for more monitor-e2e tests * macos/docker * timeout * Little refactor * Trying to test balances in other types of bridges. * Utils. * test * check all * erc to erc try * Final tests * typo * All jobs * Lint * Roll back docker in docker * WaitUntil * Axios version * New validator checks (#192)
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
const assert = require('assert')
|
|
const axios = require('axios')
|
|
const { ercToNativeBridge, user, foreignRPC, validator } = require('../../e2e-commons/constants.json')
|
|
const { waitUntil, sendTokens, addValidator } = require('../utils')
|
|
|
|
const baseUrl = ercToNativeBridge.monitor
|
|
|
|
describe('ERC TO NATIVE', () => {
|
|
let data
|
|
|
|
before(async () => {
|
|
;({ data } = await axios.get(`${baseUrl}`))
|
|
})
|
|
|
|
it('balance', () => assert(parseInt(data.foreign.erc20Balance, 10) >= 0))
|
|
it('should contain totalSupply', () => assert(data.home.totalSupply === '0'))
|
|
})
|
|
|
|
describe('ERC TO NATIVE with changing state of contracts', () => {
|
|
let data
|
|
|
|
before(async () => {
|
|
assert((await axios.get(`${baseUrl}`)).data.balanceDiff === 0)
|
|
assert((await axios.get(`${baseUrl}/validators`)).data.validatorsMatch === true)
|
|
})
|
|
|
|
it('should change balanceDiff', async () => {
|
|
await sendTokens(foreignRPC.URL, user, ercToNativeBridge.foreignToken, ercToNativeBridge.foreign)
|
|
|
|
await waitUntil(async () => {
|
|
;({ data } = await axios.get(`${baseUrl}`))
|
|
return data.balanceDiff !== 0
|
|
})
|
|
})
|
|
|
|
it('should change validatorsMatch', async () => {
|
|
await addValidator(foreignRPC.URL, validator, ercToNativeBridge.foreign)
|
|
await waitUntil(async () => {
|
|
;({ data } = await axios.get(`${baseUrl}/validators`))
|
|
return data.validatorsMatch === false
|
|
})
|
|
})
|
|
})
|