123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- const { ethers } = require('hardhat');
- const { expect } = require('chai');
- const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
- const { getDomain, domainSeparator, hashTypedData } = require('../../helpers/eip712');
- const { formatType } = require('../../helpers/eip712-types');
- const LENGTHS = {
- short: ['A Name', '1'],
- long: ['A'.repeat(40), 'B'.repeat(40)],
- };
- const fixture = async () => {
- const [from, to] = await ethers.getSigners();
- const lengths = {};
- for (const [shortOrLong, [name, version]] of Object.entries(LENGTHS)) {
- lengths[shortOrLong] = { name, version };
- lengths[shortOrLong].eip712 = await ethers.deployContract('$EIP712Verifier', [name, version]);
- lengths[shortOrLong].domain = {
- name,
- version,
- chainId: await ethers.provider.getNetwork().then(({ chainId }) => chainId),
- verifyingContract: lengths[shortOrLong].eip712.target,
- };
- }
- return { from, to, lengths };
- };
- describe('EIP712', function () {
- for (const [shortOrLong, [name, version]] of Object.entries(LENGTHS)) {
- describe(`with ${shortOrLong} name and version`, function () {
- beforeEach('deploying', async function () {
- Object.assign(this, await loadFixture(fixture));
- Object.assign(this, this.lengths[shortOrLong]);
- });
- describe('domain separator', function () {
- it('is internally available', async function () {
- const expected = await domainSeparator(this.domain);
- expect(await this.eip712.$_domainSeparatorV4()).to.equal(expected);
- });
- it("can be rebuilt using EIP-5267's eip712Domain", async function () {
- const rebuildDomain = await getDomain(this.eip712);
- expect(rebuildDomain).to.be.deep.equal(this.domain);
- });
- if (shortOrLong === 'short') {
- // Long strings are in storage, and the proxy will not be properly initialized unless
- // the upgradeable contract variant is used and the initializer is invoked.
- it('adjusts when behind proxy', async function () {
- const factory = await ethers.deployContract('$Clones');
- const clone = await factory
- .$clone(this.eip712)
- .then(tx => tx.wait())
- .then(receipt => receipt.logs.find(ev => ev.fragment.name == 'return$clone_address').args.instance)
- .then(address => ethers.getContractAt('$EIP712Verifier', address));
- const expectedDomain = { ...this.domain, verifyingContract: clone.target };
- expect(await getDomain(clone)).to.be.deep.equal(expectedDomain);
- const expectedSeparator = await domainSeparator(expectedDomain);
- expect(await clone.$_domainSeparatorV4()).to.equal(expectedSeparator);
- });
- }
- });
- it('hash digest', async function () {
- const structhash = ethers.hexlify(ethers.randomBytes(32));
- expect(await this.eip712.$_hashTypedDataV4(structhash)).to.equal(hashTypedData(this.domain, structhash));
- });
- it('digest', async function () {
- const types = {
- Mail: formatType({
- to: 'address',
- contents: 'string',
- }),
- };
- const message = {
- to: this.to.address,
- contents: 'very interesting',
- };
- const signature = await this.from.signTypedData(this.domain, types, message);
- await expect(this.eip712.verify(signature, this.from.address, message.to, message.contents)).to.not.be.reverted;
- });
- it('name', async function () {
- expect(await this.eip712.$_EIP712Name()).to.equal(name);
- });
- it('version', async function () {
- expect(await this.eip712.$_EIP712Version()).to.equal(version);
- });
- });
- }
- });
|