tokenbridge/oracle/test/processAffirmationRequests.test.js

162 lines
5.2 KiB
JavaScript
Raw Normal View History

const chai = require('chai')
const chaiAsPromised = require('chai-as-promised')
const sinon = require('sinon')
const Web3 = require('web3')
const { HttpListProviderError } = require('http-list-provider')
const estimateGas = require('../src/events/processAffirmationRequests/estimateGas')
const errors = require('../src/utils/errors')
chai.use(chaiAsPromised)
const { expect } = chai
const web3 = new Web3()
describe('processAffirmationRequests', () => {
describe('estimateGas', () => {
const address = '0x02B18eF56cE0FE39F3bEEc8becA8bF2c78579596'
const recipient = '0xCA7693B1c6778f32Db4550D8f7df3C50792D596F'
const value = '0x2A'
const txHash = '0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421'
it('should return the gas estimate', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.withArgs(sinon.match({ from: address })).resolves(1000)
estimateGasStub.rejects()
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub })
}
}
// when
const gasEstimate = await estimateGas({ web3, homeBridge, address })
// then
expect(gasEstimate).to.equal(1000)
})
it('should rethrow the error if it was a HttpListProviderError', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.rejects(new HttpListProviderError('connection error'))
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub })
}
}
// when
const result = estimateGas({ web3, homeBridge, address })
// then
await expect(result).to.be.rejectedWith(HttpListProviderError)
})
it('should throw an AlreadyProcessedError if the transaction was already procesed', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.rejects(new Error())
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub }),
numAffirmationsSigned: () => ({ call: sinon.stub().resolves(1) }),
isAlreadyProcessed: () => ({ call: sinon.stub().resolves(true) })
}
}
// when
const result = estimateGas({ web3, homeBridge, address, recipient, value, txHash })
// then
await expect(result).to.be.rejectedWith(errors.AlreadyProcessedError)
})
it('should throw an AlreadySignedError if the transaction was already signed by this validator', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.rejects(new Error())
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub }),
numAffirmationsSigned: () => ({ call: sinon.stub().resolves(1) }),
isAlreadyProcessed: () => ({ call: sinon.stub().resolves(false) }),
affirmationsSigned: () => ({ call: sinon.stub().resolves(true) })
}
}
// when
const result = estimateGas({ web3, homeBridge, address, recipient, value, txHash })
// then
await expect(result).to.be.rejectedWith(errors.AlreadySignedError)
})
it('should throw an InvalidValidatorError if the transaction was not processed nor signed, by the validator is invalid', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.rejects(new Error())
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub }),
numAffirmationsSigned: () => ({ call: sinon.stub().resolves(1) }),
affirmationsSigned: () => ({ call: sinon.stub().resolves(false) }),
isAlreadyProcessed: () => ({ call: sinon.stub().resolves(false) })
}
}
const validatorContract = {
methods: {
isValidator: () => ({ call: sinon.stub().resolves(false) })
}
}
// when
const result = estimateGas({
web3,
homeBridge,
validatorContract,
address,
recipient,
value,
txHash
})
// then
await expect(result).to.be.rejectedWith(errors.InvalidValidatorError)
})
it('should throw an Error if the validator is valid', async () => {
// given
const estimateGasStub = sinon.stub()
estimateGasStub.rejects(new Error())
const homeBridge = {
methods: {
executeAffirmation: () => ({ estimateGas: estimateGasStub }),
numAffirmationsSigned: () => ({ call: sinon.stub().resolves(1) }),
affirmationsSigned: () => ({ call: sinon.stub().resolves(false) }),
isAlreadyProcessed: () => ({ call: sinon.stub().resolves(false) })
}
}
const validatorContract = {
methods: {
isValidator: () => ({ call: sinon.stub().resolves(true) })
}
}
// when
const result = estimateGas({
web3,
homeBridge,
validatorContract,
address,
recipient,
value,
txHash
})
// then
await expect(result).to.be.rejectedWith(Error, 'Unknown error while processing message')
})
})
})