|
@@ -44,6 +44,11 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported.length).to.equal(1);
|
|
|
expect(supported[0]).to.equal(false);
|
|
|
});
|
|
|
+
|
|
|
+ it('does not support mock interface via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, DUMMY_ID);
|
|
|
+ expect(supported).to.equal(false);
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
context('ERC165 not supported', function () {
|
|
@@ -71,6 +76,11 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported.length).to.equal(1);
|
|
|
expect(supported[0]).to.equal(false);
|
|
|
});
|
|
|
+
|
|
|
+ it('does not support mock interface via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, DUMMY_ID);
|
|
|
+ expect(supported).to.equal(false);
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
context('ERC165 supported', function () {
|
|
@@ -98,6 +108,11 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported.length).to.equal(1);
|
|
|
expect(supported[0]).to.equal(false);
|
|
|
});
|
|
|
+
|
|
|
+ it('does not support mock interface via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, DUMMY_ID);
|
|
|
+ expect(supported).to.equal(false);
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
context('ERC165 and single interface supported', function () {
|
|
@@ -125,6 +140,11 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported.length).to.equal(1);
|
|
|
expect(supported[0]).to.equal(true);
|
|
|
});
|
|
|
+
|
|
|
+ it('supports mock interface via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, DUMMY_ID);
|
|
|
+ expect(supported).to.equal(true);
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
context('ERC165 and many interfaces supported', function () {
|
|
@@ -191,6 +211,13 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported[2]).to.equal(true);
|
|
|
expect(supported[3]).to.equal(false);
|
|
|
});
|
|
|
+
|
|
|
+ it('supports each interfaceId via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ for (const interfaceId of this.supportedInterfaces) {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(this.target.address, interfaceId);
|
|
|
+ expect(supported).to.equal(true);
|
|
|
+ };
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
context('account address does not support ERC165', function () {
|
|
@@ -214,5 +241,10 @@ contract('ERC165Checker', function (accounts) {
|
|
|
expect(supported.length).to.equal(1);
|
|
|
expect(supported[0]).to.equal(false);
|
|
|
});
|
|
|
+
|
|
|
+ it('does not support mock interface via supportsERC165InterfaceUnchecked', async function () {
|
|
|
+ const supported = await this.mock.supportsERC165InterfaceUnchecked(DUMMY_ACCOUNT, DUMMY_ID);
|
|
|
+ expect(supported).to.equal(false);
|
|
|
+ });
|
|
|
});
|
|
|
});
|