1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/keeper/ContractBase.test.ts

74 lines
2.4 KiB
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { assert } from 'chai'
import Account from '../../src/ocean/Account'
import { Ocean } from '../../src/ocean/Ocean'
import config from '../config'
import ContractBaseMock from '../mocks/ContractBase.Mock'
import TestContractHandler from './TestContractHandler'
const wrappedContract = new ContractBaseMock('OceanToken')
2018-10-29 17:28:40 +01:00
let accounts: Account[]
2018-10-18 09:19:10 +02:00
2019-06-20 00:20:09 +02:00
describe('ContractWrapperBase', () => {
2018-10-26 10:40:46 +02:00
before(async () => {
await TestContractHandler.prepareContracts()
2018-10-29 17:28:40 +01:00
const ocean: Ocean = await Ocean.getInstance(config)
accounts = await ocean.accounts.list()
2019-03-21 03:17:36 +01:00
await wrappedContract.initMock((ocean as any).instanceConfig)
2018-10-26 10:40:46 +02:00
})
2019-06-20 00:20:09 +02:00
describe('#call()', () => {
it('should fail to call on an unknown contract function', done => {
wrappedContract.callMock('balanceOfxxx', []).catch(() => {
done()
})
2018-10-18 09:19:10 +02:00
})
2019-06-20 00:20:09 +02:00
it('should fail to call on an contract function with wrong set of parameters', done => {
wrappedContract.callMock('balanceOf', []).catch(() => {
done()
})
2018-10-18 09:19:10 +02:00
})
2019-06-20 00:20:09 +02:00
it('should fail to call on an unknown contract function', done => {
wrappedContract
.sendMock('balanceOfxxx', '0x00', ['0x00'])
2018-10-18 09:19:10 +02:00
.catch(() => {
done()
})
})
2019-06-20 00:20:09 +02:00
it('should fail to call on an contract function with wrong set of parameters', done => {
wrappedContract.sendMock('approve', '0x000', []).catch(() => {
done()
})
2018-10-18 09:19:10 +02:00
})
})
2019-06-20 00:20:09 +02:00
describe('#send()', () => {
it('should fail to call on an unknown contract function', done => {
wrappedContract
.sendMock('transferxxx', accounts[0].getId(), [])
2018-10-29 17:28:40 +01:00
.catch(() => {
done()
})
})
})
2019-06-20 00:20:09 +02:00
describe('#getSignatureOfMethod()', () => {
it('should a signature of the function', async () => {
const sig = wrappedContract.getSignatureOfMethod('name')
2018-10-29 17:28:40 +01:00
assert(sig)
2019-06-20 00:20:09 +02:00
assert(typeof sig === 'string')
assert(sig.startsWith('0x'))
2018-10-29 17:28:40 +01:00
})
})
2019-06-20 00:20:09 +02:00
describe('#getEventData()', () => {
it('should fail on unknown event', done => {
wrappedContract.getEventData('crazyevent', {}).catch(() => {
done()
})
2018-10-18 09:19:10 +02:00
})
})
})