-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ chore: Commands refactor with a few Metamask heleprs (#1205)
* chore: commands refactor with a few Metamask heleprs * fix: switchNetwork params
- Loading branch information
Showing
4 changed files
with
309 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,258 @@ | ||
import { lockPage } from '../selectors' | ||
import { MetaMaskAbstract } from '../type/MetaMaskAbstract' | ||
|
||
// @ts-ignore | ||
// TODO: To be implemented | ||
export class MetaMask extends MetaMaskAbstract { | ||
unlock() { | ||
cy.get(lockPage.passwordInput).type(this.password) | ||
cy.get(lockPage.submitButton).click() | ||
import { type BrowserContext, type Page, expect } from '@playwright/test' | ||
import { type CreateAnvilOptions, type Pool, createPool } from '@viem/anvil' | ||
import { MetaMask as MetaMaskPlaywright } from '../playwright/MetaMask' | ||
import { waitFor } from '../playwright/utils/waitFor' | ||
import HomePageSelectors from '../selectors/pages/HomePage' | ||
import Selectors from '../selectors/pages/HomePage' | ||
import type { Network } from '../type/Network' | ||
import getPlaywrightMetamask from './getPlaywrightMetamask' | ||
|
||
let pool: Pool | ||
|
||
export default class MetaMask { | ||
readonly metamaskPlaywright: MetaMaskPlaywright | ||
readonly metamaskExtensionPage: Page | ||
|
||
constructor(context: BrowserContext, metamaskExtensionPage: Page, metamaskExtensionId: string) { | ||
this.metamaskPlaywright = getPlaywrightMetamask(context, metamaskExtensionPage, metamaskExtensionId) | ||
this.metamaskExtensionPage = metamaskExtensionPage | ||
} | ||
|
||
async getAccount() { | ||
return await this.metamaskExtensionPage | ||
.locator(this.metamaskPlaywright.homePage.selectors.accountMenu.accountButton) | ||
.innerText() | ||
} | ||
|
||
async getNetwork() { | ||
return await this.metamaskExtensionPage | ||
.locator(this.metamaskPlaywright.homePage.selectors.currentNetwork) | ||
.innerText() | ||
} | ||
|
||
async connectToDapp(accounts?: string[]) { | ||
return this.metamaskPlaywright | ||
.connectToDapp(accounts) | ||
.then(() => true) | ||
.catch(() => false) | ||
} | ||
|
||
async addNewAccount(accountName: string) { | ||
await this.metamaskPlaywright.addNewAccount(accountName) | ||
|
||
await expect( | ||
this.metamaskExtensionPage.locator(this.metamaskPlaywright.homePage.selectors.accountMenu.accountButton) | ||
).toHaveText(accountName) | ||
|
||
return true | ||
} | ||
|
||
async switchAccount(accountName: string) { | ||
await this.metamaskPlaywright.switchAccount(accountName) | ||
|
||
await expect( | ||
this.metamaskExtensionPage.locator(this.metamaskPlaywright.homePage.selectors.accountMenu.accountButton) | ||
).toHaveText(accountName) | ||
|
||
return true | ||
} | ||
|
||
async renameAccount({ | ||
currentAccountName, | ||
newAccountName | ||
}: { | ||
currentAccountName: string | ||
newAccountName: string | ||
}) { | ||
await this.metamaskPlaywright.renameAccount(currentAccountName, newAccountName) | ||
|
||
await this.metamaskExtensionPage.locator(HomePageSelectors.threeDotsMenu.accountDetailsCloseButton).click() | ||
|
||
await expect( | ||
this.metamaskExtensionPage.locator(this.metamaskPlaywright.homePage.selectors.accountMenu.accountButton) | ||
).toHaveText(newAccountName) | ||
|
||
return true | ||
} | ||
|
||
async switchNetwork({ | ||
networkName, | ||
isTestnet = false | ||
}: { | ||
networkName: string | ||
isTestnet?: boolean | ||
}) { | ||
return await this.metamaskPlaywright | ||
.switchNetwork(networkName, isTestnet) | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async createAnvilNode(options?: CreateAnvilOptions) { | ||
pool = createPool() | ||
|
||
const nodeId = Array.from(pool.instances()).length | ||
const anvil = await pool.start(nodeId, options) | ||
|
||
const rpcUrl = `http://${anvil.host}:${anvil.port}` | ||
|
||
const DEFAULT_ANVIL_CHAIN_ID = 31337 | ||
const chainId = options?.chainId ?? DEFAULT_ANVIL_CHAIN_ID | ||
|
||
return { anvil, rpcUrl, chainId } | ||
} | ||
|
||
async emptyAnvilNode() { | ||
await pool.empty() | ||
return true | ||
} | ||
|
||
async connectToAnvil({ | ||
rpcUrl, | ||
chainId | ||
}: { | ||
rpcUrl: string | ||
chainId: number | ||
}) { | ||
try { | ||
await this.metamaskPlaywright.addNetwork({ | ||
name: 'Anvil', | ||
rpcUrl, | ||
chainId, | ||
symbol: 'ETH', | ||
blockExplorerUrl: 'https://etherscan.io/' | ||
}) | ||
|
||
await this.metamaskPlaywright.switchNetwork('Anvil') | ||
return true | ||
} catch (e) { | ||
console.error('Error connecting to Anvil network', e) | ||
return false | ||
} | ||
} | ||
|
||
async addNetwork(network: Network) { | ||
await this.metamaskPlaywright.addNetwork(network) | ||
|
||
await waitFor( | ||
() => this.metamaskExtensionPage.locator(HomePageSelectors.networkAddedPopover.switchToNetworkButton).isVisible(), | ||
3_000, | ||
false | ||
) | ||
|
||
await this.metamaskExtensionPage.locator(HomePageSelectors.networkAddedPopover.switchToNetworkButton).click() | ||
|
||
return true | ||
} | ||
|
||
// Token | ||
|
||
async deployToken() { | ||
await this.metamaskPlaywright.confirmTransaction() | ||
|
||
return true | ||
} | ||
|
||
async addNewToken() { | ||
await this.metamaskPlaywright.addNewToken() | ||
|
||
await expect(this.metamaskExtensionPage.locator(Selectors.portfolio.singleToken).nth(1)).toContainText('TST') | ||
|
||
return true | ||
} | ||
|
||
async approveNewNetwork() { | ||
await this.metamaskPlaywright.approveNewNetwork() | ||
|
||
return true | ||
} | ||
|
||
async approveSwitchNetwork() { | ||
await this.metamaskPlaywright.approveSwitchNetwork() | ||
|
||
return true | ||
} | ||
|
||
// Others | ||
|
||
async providePublicEncryptionKey() { | ||
return await this.metamaskPlaywright | ||
.providePublicEncryptionKey() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async decrypt() { | ||
return await this.metamaskPlaywright | ||
.decrypt() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async confirmSignature() { | ||
return await this.metamaskPlaywright | ||
.confirmSignature() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async confirmTransaction() { | ||
return await this.metamaskPlaywright | ||
.confirmTransaction() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async confirmTransactionAndWaitForMining() { | ||
return this.metamaskPlaywright | ||
.confirmTransactionAndWaitForMining() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async openTransactionDetails(txIndex: number) { | ||
return this.metamaskPlaywright | ||
.openTransactionDetails(txIndex) | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
|
||
async closeTransactionDetails() { | ||
return this.metamaskPlaywright | ||
.closeTransactionDetails() | ||
.then(() => { | ||
return true | ||
}) | ||
.catch(() => { | ||
return false | ||
}) | ||
} | ||
} |
Oops, something went wrong.