@0xcert/ethereum-gateway-contracts
Version:
Smart contracts used by the gateway on the Ethereum blockchain.
175 lines (152 loc) • 5.28 kB
text/typescript
import { NFTokenSafeTransferProxyAbilities } from '@0xcert/ethereum-proxy-contracts/src/core/types';
import { Spec } from '@specron/spec';
import { ActionsGatewayAbilities } from '../../../core/types';
import * as common from '../../helpers/common';
import { getSignature } from '../../helpers/signature';
/**
* Test definition.
*
* ERC-721: Cat
*/
/**
* Spec context interfaces.
*/
interface Data {
actionsGateway?: any;
nftSafeProxy?: any;
cat?: any;
owner?: string;
bob?: string;
jane?: string;
sara?: string;
signatureTuple?: any;
dataTuple?: any;
id1: any;
}
/**
* Spec stack instances.
*/
const spec = new Spec<Data>();
spec.before(async (ctx) => {
const accounts = await ctx.web3.eth.getAccounts();
ctx.set('id1', '0x0000000000000000000000000000000000000000000000000000000000000001');
ctx.set('owner', accounts[0]);
ctx.set('bob', accounts[1]);
ctx.set('jane', accounts[2]);
ctx.set('sara', accounts[3]);
});
/**
* Cat
* Jane owns: #1, #4
* Bob owns: #2, #3
*/
spec.beforeEach(async (ctx) => {
const cat = await ctx.deploy({
src: '@0xcert/ethereum-erc721-contracts/build/nf-token-metadata-enumerable-mock.json',
contract: 'NFTokenMetadataEnumerableMock',
args: ['cat', 'CAT', 'https://0xcert.org/', '.json'],
});
await cat.instance.methods
.create(ctx.get('jane'), 1)
.send({
from: ctx.get('owner'),
gas: 4000000,
});
await cat.instance.methods
.create(ctx.get('jane'), 4)
.send({
from: ctx.get('owner'),
gas: 4000000,
});
await cat.instance.methods
.create(ctx.get('bob'), 2)
.send({
from: ctx.get('owner'),
gas: 4000000,
});
await cat.instance.methods
.create(ctx.get('bob'), 3)
.send({
from: ctx.get('owner'),
gas: 4000000,
});
ctx.set('cat', cat);
});
spec.beforeEach(async (ctx) => {
const nftSafeProxy = await ctx.deploy({
src: '@0xcert/ethereum-proxy-contracts/build/nftoken-safe-transfer-proxy.json',
contract: 'NFTokenSafeTransferProxy',
});
ctx.set('nftSafeProxy', nftSafeProxy);
});
spec.beforeEach(async (ctx) => {
const nftSafeProxy = ctx.get('nftSafeProxy');
const owner = ctx.get('owner');
const actionsGateway = await ctx.deploy({
src: './build/actions-gateway.json',
contract: 'ActionsGateway',
});
await actionsGateway.instance.methods.grantAbilities(owner, ActionsGatewayAbilities.SET_PROXIES).send();
await actionsGateway.instance.methods.addProxy(nftSafeProxy.receipt._address, 1).send({ from: owner });
ctx.set('actionsGateway', actionsGateway);
});
spec.beforeEach(async (ctx) => {
const nftSafeProxy = ctx.get('nftSafeProxy');
const actionsGateway = ctx.get('actionsGateway');
const owner = ctx.get('owner');
await nftSafeProxy.instance.methods.grantAbilities(actionsGateway.receipt._address, NFTokenSafeTransferProxyAbilities.EXECUTE).send({ from: owner });
});
spec.beforeEach(async (ctx) => {
const actionsGateway = ctx.get('actionsGateway');
const nftSafeProxy = ctx.get('nftSafeProxy');
const jane = ctx.get('jane');
const bob = ctx.get('bob');
const cat = ctx.get('cat');
const id1 = ctx.get('id1');
const actions = [
{
proxyId: 0,
contractAddress: cat.receipt._address,
params: `${id1}${bob.substring(2)}00`,
},
];
const orderData = {
signers: [jane],
actions,
seed: common.getCurrentTime(),
expiration: common.getCurrentTime() + 600,
};
const orderDataTuple = ctx.tuple(orderData);
const claim = await actionsGateway.instance.methods.getOrderDataClaim(orderDataTuple).call();
const signature = await getSignature(ctx.web3, claim, jane);
const signatureDataTuple = ctx.tuple([signature]);
await cat.instance.methods.approve(nftSafeProxy.receipt._address, 1).send({ from: jane });
ctx.set('signatureTuple', signatureDataTuple);
ctx.set('dataTuple', orderDataTuple);
});
spec.test('succeeds', async (ctx) => {
const signatureTuple = ctx.get('signatureTuple');
const dataTuple = ctx.get('dataTuple');
const actionsGateway = ctx.get('actionsGateway');
const jane = ctx.get('jane');
const bob = ctx.get('bob');
const logs = await actionsGateway.instance.methods.cancel(dataTuple).send({ from: jane });
ctx.not(logs.events.Cancel, undefined);
await ctx.reverts(() => actionsGateway.instance.methods.perform(dataTuple, signatureTuple).send({ from: bob }), '015006');
});
spec.test('throws when trying to cancel an already performed atomic swap', async (ctx) => {
const signatureTuple = ctx.get('signatureTuple');
const dataTuple = ctx.get('dataTuple');
const actionsGateway = ctx.get('actionsGateway');
const jane = ctx.get('jane');
const bob = ctx.get('bob');
await actionsGateway.instance.methods.perform(dataTuple, signatureTuple).send({ from: bob });
await ctx.reverts(() => actionsGateway.instance.methods.cancel(dataTuple).send({ from: jane }), '015007');
});
spec.test('throws when a third party tries to cancel an atomic swap', async (ctx) => {
const dataTuple = ctx.get('dataTuple');
const actionsGateway = ctx.get('actionsGateway');
const sara = ctx.get('sara');
await ctx.reverts(() => actionsGateway.instance.methods.cancel(dataTuple).send({ from: sara }), '015008');
});
export default spec;