|
@@ -7,6 +7,7 @@ const ERC165MissingData = artifacts.require('ERC165MissingData');
|
|
|
const ERC165MaliciousData = artifacts.require('ERC165MaliciousData');
|
|
|
const ERC165NotSupported = artifacts.require('ERC165NotSupported');
|
|
|
const ERC165InterfacesSupported = artifacts.require('ERC165InterfacesSupported');
|
|
|
+const ERC165ReturnBombMock = artifacts.require('ERC165ReturnBombMock');
|
|
|
|
|
|
const DUMMY_ID = '0xdeadbeef';
|
|
|
const DUMMY_ID_2 = '0xcafebabe';
|
|
@@ -280,4 +281,23 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported).to.equal(false);
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
+ it('Return bomb resistance', async function () {
|
|
|
+ this.target = await ERC165ReturnBombMock.new();
|
|
|
+
|
|
|
+ const tx1 = await this.mock.supportsInterface.sendTransaction(this.target.address, DUMMY_ID);
|
|
|
+ expect(tx1.receipt.gasUsed).to.be.lessThan(120000); // 3*30k + 21k + some margin
|
|
|
+
|
|
|
+ const tx2 = await this.mock.getSupportedInterfaces.sendTransaction(
|
|
|
+ this.target.address,
|
|
|
+ [
|
|
|
+ DUMMY_ID,
|
|
|
+ DUMMY_ID_2,
|
|
|
+ DUMMY_ID_3,
|
|
|
+ DUMMY_UNSUPPORTED_ID,
|
|
|
+ DUMMY_UNSUPPORTED_ID_2,
|
|
|
+ ],
|
|
|
+ );
|
|
|
+ expect(tx2.receipt.gasUsed).to.be.lessThan(250000); // (2+5)*30k + 21k + some margin
|
|
|
+ });
|
|
|
});
|