mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
378bf19c05
* eth_call test * eth_chainId test * run json rpc tests * add ci job * remove query string param from url * eth_sendTransaction test * eth_sendTransaction test --------- Co-authored-by: Brad Decker <bhdecker84@gmail.com>
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const { keccak256 } = require('@truffle/codec/dist/lib/evm/utils');
|
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
|
const { SMART_CONTRACTS } = require('../seeder/smart-contracts');
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
describe('eth_call', function () {
|
|
const smartContract = SMART_CONTRACTS.NFTS;
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: convertToHexValue(25000000000000000000),
|
|
},
|
|
],
|
|
};
|
|
it('executes a new message call', async function () {
|
|
await withFixtures(
|
|
{
|
|
dapp: true,
|
|
fixtures: new FixtureBuilder()
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
.build(),
|
|
ganacheOptions,
|
|
smartContract,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver, _, contractRegistry }) => {
|
|
const contract = contractRegistry.getContractAddress(smartContract);
|
|
await driver.navigate();
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
// eth_call
|
|
await driver.openNewPage(`http://127.0.0.1:8080`);
|
|
const balanceOf = `0x${keccak256('balanceOf(address)').toString(
|
|
'hex',
|
|
)}`;
|
|
const walletAddress = '0x5cfe73b6021e818b776b421b1c4db2474086a7e1';
|
|
const request = JSON.stringify({
|
|
jsonrpc: '2.0',
|
|
method: 'eth_call',
|
|
params: [
|
|
{
|
|
to: `${contract}`,
|
|
data:
|
|
`${balanceOf.slice(0, 10)}` +
|
|
'000000000000000000000000' +
|
|
`${walletAddress.substring(2)}`,
|
|
},
|
|
'latest',
|
|
],
|
|
id: 0,
|
|
});
|
|
const result = await driver.executeScript(
|
|
`return window.ethereum.request(${request})`,
|
|
);
|
|
|
|
assert.equal(
|
|
result,
|
|
'0x0000000000000000000000000000000000000000000000000000000000000001',
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|