mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
03e3edb00c
* Refactor checking if address is contract into a new module. Tests for new module. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * addressIsContract is an async function, use await when calling it. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Mock ethQuery change variable names refactor in transaction.utils. fix possible boolean destructiring. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Refactor isContractAddress boolean checks. Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com> * Lint fixes Signed-off-by: Akintayo A. Olusegun <akintayo.segun@gmail.com>
31 lines
773 B
JavaScript
31 lines
773 B
JavaScript
const { readAddressAsContract } = require('./contract-utils');
|
|
|
|
describe('Contract Utils', () => {
|
|
it('checks is an address is a contract address or not', async () => {
|
|
let mockEthQuery = {
|
|
getCode: () => {
|
|
return '0xa';
|
|
},
|
|
};
|
|
const { isContractAddress } = await readAddressAsContract(
|
|
mockEthQuery,
|
|
'0x76B4aa9Fc4d351a0062c6af8d186DF959D564A84',
|
|
);
|
|
expect(isContractAddress).toStrictEqual(true);
|
|
|
|
mockEthQuery = {
|
|
getCode: () => {
|
|
return '0x';
|
|
},
|
|
};
|
|
|
|
const {
|
|
isContractAddress: isNotContractAddress,
|
|
} = await readAddressAsContract(
|
|
mockEthQuery,
|
|
'0x76B4aa9Fc4d351a0062c6af8d186DF959D564A84',
|
|
);
|
|
expect(isNotContractAddress).toStrictEqual(false);
|
|
});
|
|
});
|