/* eslint-disable @typescript-eslint/no-floating-promises */ import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers'; import { expect } from 'chai'; import { ContractTransaction } from 'ethers'; import { ethers } from 'hardhat'; import { utils } from '@hyperlane-xyz/utils'; import { InterchainGasPaymaster, InterchainGasPaymaster__factory, TestIsm__factory, TestMailbox, TestMailbox__factory, TestRouter, TestRouter__factory, } from '../types'; import { inferMessageValues } from './lib/mailboxes'; const ONLY_OWNER_REVERT_MSG = 'Ownable: caller is not the owner'; const origin = 1; const destination = 2; const destinationWithoutRouter = 3; const body = '0xdeadbeef'; describe('Router', async () => { let router: TestRouter, mailbox: TestMailbox, signer: SignerWithAddress, nonOwner: SignerWithAddress; before(async () => { [signer, nonOwner] = await ethers.getSigners(); }); beforeEach(async () => { const mailboxFactory = new TestMailbox__factory(signer); mailbox = await mailboxFactory.deploy(origin); router = await new TestRouter__factory(signer).deploy(); }); describe('#initialize', () => { it('should set the mailbox', async () => { await router.initialize(mailbox.address); expect(await router.mailbox()).to.equal(mailbox.address); }); it('should transfer owner to deployer', async () => { await router.initialize(mailbox.address); expect(await router.owner()).to.equal(signer.address); }); it('should use overloaded initialize', async () => { await expect(router.initialize(mailbox.address)).to.emit( router, 'InitializeOverload', ); }); it('cannot be initialized twice', async () => { await router.initialize(ethers.constants.AddressZero); await expect( router.initialize(ethers.constants.AddressZero), ).to.be.revertedWith('Initializable: contract is already initialized'); }); }); describe('when initialized', () => { beforeEach(async () => { await router.initialize(mailbox.address); const ism = await new TestIsm__factory(signer).deploy(); await ism.setAccept(true); await mailbox.initialize(ism.address); }); it('accepts message from enrolled mailbox and router', async () => { const sender = utils.addressToBytes32(nonOwner.address); await router.enrollRemoteRouter(origin, sender); const recipient = utils.addressToBytes32(router.address); // Does not revert. await mailbox.testHandle(origin, sender, recipient, body); }); it('rejects message from unenrolled mailbox', async () => { await expect( router.handle(origin, utils.addressToBytes32(nonOwner.address), body), ).to.be.revertedWith('!mailbox'); }); it('rejects message from unenrolled router', async () => { const sender = utils.addressToBytes32(nonOwner.address); const recipient = utils.addressToBytes32(router.address); await expect( mailbox.testHandle(origin, sender, recipient, body), ).to.be.revertedWith( `No router enrolled for domain. Did you specify the right domain ID?`, ); }); it('owner can enroll remote router', async () => { const remote = nonOwner.address; const remoteBytes = utils.addressToBytes32(nonOwner.address); expect(await router.isRemoteRouter(origin, remoteBytes)).to.equal(false); await expect(router.mustHaveRemoteRouter(origin)).to.be.revertedWith( `No router enrolled for domain. Did you specify the right domain ID?`, ); await router.enrollRemoteRouter(origin, utils.addressToBytes32(remote)); expect(await router.isRemoteRouter(origin, remoteBytes)).to.equal(true); expect(await router.mustHaveRemoteRouter(origin)).to.equal(remoteBytes); }); it('non-owner cannot enroll remote router', async () => { await expect( router .connect(nonOwner) .enrollRemoteRouter(origin, utils.addressToBytes32(nonOwner.address)), ).to.be.revertedWith(ONLY_OWNER_REVERT_MSG); }); describe('dispatch functions', () => { let interchainGasPaymaster: InterchainGasPaymaster; beforeEach(async () => { const interchainGasPaymasterFactory = new InterchainGasPaymaster__factory(signer); interchainGasPaymaster = await interchainGasPaymasterFactory.deploy(); await router.setInterchainGasPaymaster(interchainGasPaymaster.address); // Enroll a remote router on the destination domain. // The address is arbitrary because no messages will actually be processed. await router.enrollRemoteRouter( destination, utils.addressToBytes32(nonOwner.address), ); }); // Helper for testing different variations of dispatch functions const runDispatchFunctionTests = async ( dispatchFunction: ( destinationDomain: number, interchainGasPayment?: number, ) => Promise, expectGasPayment: boolean, ) => { // Allows a Chai Assertion to be programmatically negated const expectAssertion = ( assertion: Chai.Assertion, expected: boolean, ) => { return expected ? assertion : assertion.not; }; it('dispatches a message', async () => { await expect(dispatchFunction(destination)).to.emit( mailbox, 'Dispatch', ); }); it(`${ expectGasPayment ? 'pays' : 'does not pay' } interchain gas`, async () => { const testInterchainGasPayment = 1234; const { id } = await inferMessageValues( mailbox, router.address, destination, await router.routers(destination), '', ); const assertion = expectAssertion( expect(dispatchFunction(destination, testInterchainGasPayment)).to, expectGasPayment, ); await assertion .emit(interchainGasPaymaster, 'GasPayment') .withArgs(id, testInterchainGasPayment); }); it('reverts when dispatching a message to an unenrolled remote router', async () => { await expect( dispatchFunction(destinationWithoutRouter), ).to.be.revertedWith( `No router enrolled for domain. Did you specify the right domain ID?`, ); }); }; describe('#dispatch', () => { runDispatchFunctionTests( (destinationDomain) => router.dispatch(destinationDomain, '0x'), false, ); }); describe('#dispatchWithGas', () => { runDispatchFunctionTests( (destinationDomain, interchainGasPayment = 0) => router.dispatchWithGas( destinationDomain, '0x', interchainGasPayment, { value: interchainGasPayment, }, ), true, ); }); }); }); });