1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/test/e2e/snaps/test-snap-wasm.spec.js

93 lines
2.7 KiB
JavaScript
Raw Normal View History

2023-04-21 14:27:48 +02:00
const { withFixtures } = require('../helpers');
const FixtureBuilder = require('../fixture-builder');
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
describe('Test Snap WASM', function () {
it('can use webassembly inside a snap', async function () {
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: 25000000000000000000,
},
],
};
await withFixtures(
{
fixtures: new FixtureBuilder().build(),
ganacheOptions,
failOnConsoleError: false,
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.openNewPage(TEST_SNAPS_WEBSITE_URL);
await driver.delay(1000);
const snapButton = await driver.findElement('#connectwasm');
2023-04-21 14:27:48 +02:00
await driver.scrollToElement(snapButton);
await driver.delay(1000);
await driver.clickElement('#connectwasm');
2023-04-21 14:27:48 +02:00
await driver.delay(1000);
// switch to metamask extension and click connect
const windowHandles = await driver.waitUntilXWindowHandles(
3,
1000,
10000,
);
// const extensionPage = windowHandles[0];
await driver.switchToWindowWithTitle(
'MetaMask Notification',
windowHandles,
);
await driver.clickElement({
text: 'Connect',
tag: 'button',
});
await driver.waitForSelector({ text: 'Install' });
2023-04-21 14:27:48 +02:00
await driver.clickElement({
text: 'Install',
2023-04-21 14:27:48 +02:00
tag: 'button',
});
await driver.waitForSelector({ text: 'OK' });
2023-04-21 14:27:48 +02:00
await driver.clickElement({
text: 'OK',
2023-04-21 14:27:48 +02:00
tag: 'button',
});
// click send inputs on test snap page
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
// wait for npm installation success
await driver.waitForSelector({
css: '#connectwasm',
2023-04-21 14:27:48 +02:00
text: 'Reconnect to WebAssembly Snap',
});
// enter number for test to input field
await driver.pasteIntoField('#wasmInput', '23');
// find and click on send error
await driver.clickElement('#sendWasmMessage');
// wait for the correct output
await driver.waitForSelector({
css: '#wasmResult',
text: '28657',
});
},
);
});
});