mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
0b4532ec1b
* remove state.json files * move file * Update Readme * Create fixture builder * load test fixture * remove redundant method * update snap tests * update stats tests * update extension tests * update extension tests * Update fixture data * snap test dapp connection * Update fixture data * add onboarding fixture * use onboarding fixture * reuse import account vault * remove unnecessary use of class * use fixture builder in new tests * switch to function * update default fixture * update default fixture * update test * update 1559 test fixttures * update 1559 test fixtures * update 1559 test fixtures * dismiss 3box whats new * remove redundant code * move docs * remove unused code * token detection * use default timeout * remove redundant code * Update fixture builder hide `Protect your funds` dialog remove browser environment remove default network details hide dismiss seed backup reminder recursively merges fixture data * add token to tokencontroller * remove network details * add missing identities to preference controller * remove duplicate properties * update bip-32 to use fixturebuilder * alphabetise snap permissions * update get snaps to use fixturebuilder * Update test-snap-bip-32.spec.js wait for window * add popular network state * update test * lint
158 lines
5.7 KiB
JavaScript
158 lines
5.7 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const { withFixtures } = require('../helpers');
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
|
|
|
describe('Test Snap bip-32', function () {
|
|
it('tests various functions of bip-32', async function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
},
|
|
],
|
|
};
|
|
await withFixtures(
|
|
{
|
|
fixtures: new FixtureBuilder()
|
|
.withPermissionControllerConnectedToSnapDapp()
|
|
.build(),
|
|
ganacheOptions,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver }) => {
|
|
await driver.navigate();
|
|
|
|
// enter pw into extension
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
// navigate to test snaps page and connect
|
|
await driver.driver.get(TEST_SNAPS_WEBSITE_URL);
|
|
await driver.delay(1000);
|
|
|
|
// find and scroll to the correct card and click first
|
|
const snapButton = await driver.findElement('#sendUpdateHello');
|
|
await driver.scrollToElement(snapButton);
|
|
await driver.delay(500);
|
|
await driver.fill('#snapId6', 'npm:@metamask/test-snap-bip32');
|
|
await driver.clickElement('#connectBip32');
|
|
|
|
// approve install of snap
|
|
await driver.waitUntilXWindowHandles(2, 5000, 10000);
|
|
let windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
await driver.clickElement({
|
|
text: 'Approve & install',
|
|
tag: 'button',
|
|
});
|
|
|
|
// wait for permissions popover, click checkboxes and confirm
|
|
await driver.delay(1000);
|
|
await driver.clickElement('#key-access-bip32-m-44h-0h-secp256k1-0');
|
|
await driver.clickElement('#key-access-bip32-m-44h-0h-ed25519-0');
|
|
await driver.clickElement({
|
|
text: 'Confirm',
|
|
tag: 'button',
|
|
});
|
|
|
|
// switch back to test-snaps window
|
|
await driver.waitUntilXWindowHandles(1, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
// wait then run SECP256K1 test
|
|
await driver.delay(1000);
|
|
await driver.fill('#bip32SignMessage', 'foo bar');
|
|
await driver.clickElement('#sendBip32Secp256k1');
|
|
|
|
// hit 'approve' on the custom confirm
|
|
await driver.waitUntilXWindowHandles(2, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
await driver.clickElement({
|
|
text: 'Approve',
|
|
tag: 'button',
|
|
});
|
|
|
|
await driver.waitUntilXWindowHandles(1, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
// check result
|
|
await driver.delay(1000);
|
|
const secp256k1Result = await driver.findElement(
|
|
'#bip32Secp256k1Result',
|
|
);
|
|
assert.equal(
|
|
await secp256k1Result.getText(),
|
|
'Signature: "0xd30561eb9e3195e47d49198fb0bc66eda867a7dff4c5e8b60c2ec13851aa7d8cc3d485da177de63dad331f315d440cbb693a629efe228389c4693ea90465b101"',
|
|
);
|
|
|
|
// wait then run ed25519 test
|
|
await driver.delay(1000);
|
|
await driver.clickElement('#sendBip32Ed25519');
|
|
|
|
// hit 'approve' on the custom confirm
|
|
await driver.waitUntilXWindowHandles(2, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
await driver.clickElement({
|
|
text: 'Approve',
|
|
tag: 'button',
|
|
});
|
|
|
|
await driver.waitUntilXWindowHandles(1, 5000, 10000);
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
// check result
|
|
await driver.delay(1000);
|
|
const ed25519Result = await driver.findElement('#bip32Ed25519Result');
|
|
assert.equal(
|
|
await ed25519Result.getText(),
|
|
'Signature: "0xf3215b4d6c59aac7e01b4ceef530d1e2abf4857926b85a81aaae3894505699243768a887b7da4a8c2e0f25196196ba290b6531050db8dc15c252bdd508532a0a"',
|
|
);
|
|
|
|
const publicKeyButton = await driver.findElement('#sendBip32PublicKey');
|
|
await driver.scrollToElement(publicKeyButton);
|
|
// wait then run public key test
|
|
await driver.delay(1000);
|
|
await driver.clickElement('#sendBip32PublicKey');
|
|
// check result
|
|
await driver.delay(1000);
|
|
const publicKeyResult = await driver.findElement(
|
|
'#bip32PublicKeyResult',
|
|
);
|
|
assert.equal(
|
|
await publicKeyResult.getText(),
|
|
'Public key: "043e98d696ae15caef75fa8dd204a7c5c08d1272b2218ba3c20feeb4c691eec366606ece56791c361a2320e7fad8bcbb130f66d51c591fc39767ab2856e93f8dfb"',
|
|
);
|
|
|
|
// wait then run compressed public key test
|
|
await driver.delay(1000);
|
|
await driver.clickElement('#sendBip32CompressedPublicKey');
|
|
// check result
|
|
await driver.delay(1000);
|
|
const compressedPublicKeyResult = await driver.findElement(
|
|
'#bip32CompressedPublicKeyResult',
|
|
);
|
|
assert.equal(
|
|
await compressedPublicKeyResult.getText(),
|
|
'Public key: "033e98d696ae15caef75fa8dd204a7c5c08d1272b2218ba3c20feeb4c691eec366"',
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|