From 9e9bf8c02bb94be9867617cecec0960c7dc335cb Mon Sep 17 00:00:00 2001 From: yurydubinin <62520712+yury-dubinin@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:56:25 +0100 Subject: [PATCH] updated console log --- .../tests/monitoring.market.wallet.spec.ts | 153 +++++++-------- packages/e2e/tests/select.spec.ts | 183 +++++++++--------- 2 files changed, 168 insertions(+), 168 deletions(-) diff --git a/packages/e2e/tests/monitoring.market.wallet.spec.ts b/packages/e2e/tests/monitoring.market.wallet.spec.ts index a14d0ad53b..87d596c258 100644 --- a/packages/e2e/tests/monitoring.market.wallet.spec.ts +++ b/packages/e2e/tests/monitoring.market.wallet.spec.ts @@ -1,98 +1,99 @@ -import { type BrowserContext, chromium, expect, test } from '@playwright/test' +import { type BrowserContext, chromium, expect, test } from "@playwright/test"; -import { TestConfig } from '../test-config' -import { UnzipExtension } from '../unzip-extension' +import { TestConfig } from "../test-config"; +import { UnzipExtension } from "../unzip-extension"; -import { WalletPage } from '../pages/keplr-page' -import { TradePage } from '../pages/trade-page' +import { WalletPage } from "../pages/keplr-page"; +import { TradePage } from "../pages/trade-page"; -test.describe('Test Market Buy/Sell Order feature', () => { - let context: BrowserContext - const privateKey = process.env.PRIVATE_KEY ?? 'private_key' - let tradePage: TradePage - const TRX_SUCCESS_TIMEOUT = 10000 +test.describe("Test Market Buy/Sell Order feature", () => { + let context: BrowserContext; + const privateKey = process.env.PRIVATE_KEY ?? "private_key"; + let tradePage: TradePage; + const TRX_SUCCESS_TIMEOUT = 10000; test.beforeAll(async () => { - const pathToExtension = new UnzipExtension().getPathToExtension() - console.log('\nSetup Wallet Extension before tests.') + const pathToExtension = new UnzipExtension().getPathToExtension(); + console.log("\nSetup Wallet Extension before tests."); // Launch Chrome with a Keplr wallet extension context = await chromium.launchPersistentContext( - '', - new TestConfig().getBrowserExtensionConfig(false, pathToExtension), - ) + "", + new TestConfig().getBrowserExtensionConfig(false, pathToExtension) + ); // Get all new pages (including Extension) in the context and wait - const emptyPage = context.pages()[0] - await emptyPage.waitForTimeout(2000) - const page = context.pages()[1] - const walletPage = new WalletPage(page) + const emptyPage = context.pages()[0]; + await emptyPage.waitForTimeout(2000); + const page = context.pages()[1]; + const walletPage = new WalletPage(page); // Import existing Wallet (could be aggregated in one function). - await walletPage.importWalletWithPrivateKey(privateKey) - await walletPage.setWalletNameAndPassword('Monitoring E2E Tests') - await walletPage.selectChainsAndSave() - await walletPage.finish() + await walletPage.importWalletWithPrivateKey(privateKey); + await walletPage.setWalletNameAndPassword("Monitoring E2E Tests"); + await walletPage.selectChainsAndSave(); + await walletPage.finish(); // Switch to Application - tradePage = new TradePage(context.pages()[0]) - await tradePage.goto() - await tradePage.connectWallet() - expect(await tradePage.isError(), 'Swap is not available!').toBeFalsy() - }) + tradePage = new TradePage(context.pages()[0]); + await tradePage.goto(); + await tradePage.connectWallet(); + expect(await tradePage.isError(), "Swap is not available!").toBeFalsy(); + }); test.afterAll(async () => { - await context.close() - }) + await context.close(); + }); // biome-ignore lint/correctness/noEmptyPattern: test.afterEach(async ({}, testInfo) => { - console.log(`Test [${testInfo.title}] status: ${testInfo.status}`) - if (testInfo.status === 'failed') { - const name = testInfo.title - process.env.GITHUB_STEP_SUMMARY = `Test ${name} failed.` + console.log(`Test [${testInfo.title}] status: ${testInfo.status}`); + if (testInfo.status === "failed") { + const name = testInfo.title; + process.env.GITHUB_STEP_SUMMARY = `Test ${name} failed.`; + console.log(`GITHUB_STEP_SUMMARY: ${process.env.GITHUB_STEP_SUMMARY}`); } - }) + }); // biome-ignore lint/complexity/noForEach: - ;[{ name: 'WBTC' }, { name: 'OSMO' }].forEach(({ name }) => { + [{ name: "WBTC" }, { name: "OSMO" }].forEach(({ name }) => { test(`User should be able to Market Buy ${name}`, async () => { - await tradePage.goto() - await tradePage.openBuyTab() - await tradePage.selectAsset(name) - await tradePage.enterAmount('1.55') - await tradePage.isSufficientBalanceForTrade() - await tradePage.showSwapInfo() - const { msgContentAmount } = await tradePage.buyAndGetWalletMsg(context) - expect(msgContentAmount).toBeTruthy() - expect(msgContentAmount).toContain('type: osmosis/poolmanager/') - await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT) - await tradePage.getTransactionUrl() - }) - }) + await tradePage.goto(); + await tradePage.openBuyTab(); + await tradePage.selectAsset(name); + await tradePage.enterAmount("1.55"); + await tradePage.isSufficientBalanceForTrade(); + await tradePage.showSwapInfo(); + const { msgContentAmount } = await tradePage.buyAndGetWalletMsg(context); + expect(msgContentAmount).toBeTruthy(); + expect(msgContentAmount).toContain("type: osmosis/poolmanager/"); + await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT); + await tradePage.getTransactionUrl(); + }); + }); // unwrapped market sell tests just in case this affects anything. - test('User should be able to Market Sell WBTC', async () => { - await tradePage.goto() - await tradePage.openSellTab() - await tradePage.selectAsset('WBTC') - await tradePage.enterAmount('1.54') - await tradePage.isSufficientBalanceForTrade() - await tradePage.showSwapInfo() - const { msgContentAmount } = await tradePage.sellAndGetWalletMsg(context) - expect(msgContentAmount).toBeTruthy() - expect(msgContentAmount).toContain('type: osmosis/poolmanager/') - await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT) - await tradePage.getTransactionUrl() - }) + test("User should be able to Market Sell WBTC", async () => { + await tradePage.goto(); + await tradePage.openSellTab(); + await tradePage.selectAsset("WBTC"); + await tradePage.enterAmount("1.54"); + await tradePage.isSufficientBalanceForTrade(); + await tradePage.showSwapInfo(); + const { msgContentAmount } = await tradePage.sellAndGetWalletMsg(context); + expect(msgContentAmount).toBeTruthy(); + expect(msgContentAmount).toContain("type: osmosis/poolmanager/"); + await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT); + await tradePage.getTransactionUrl(); + }); - test('User should be able to Market Sell OSMO', async () => { - await tradePage.goto() - await tradePage.openSellTab() - await tradePage.selectAsset('OSMO') - await tradePage.enterAmount('1.54') - await tradePage.isSufficientBalanceForTrade() - await tradePage.showSwapInfo() - const { msgContentAmount } = await tradePage.sellAndGetWalletMsg(context) - expect(msgContentAmount).toBeTruthy() - expect(msgContentAmount).toContain('type: osmosis/poolmanager/') - await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT) - await tradePage.getTransactionUrl() - }) -}) + test("User should be able to Market Sell OSMO", async () => { + await tradePage.goto(); + await tradePage.openSellTab(); + await tradePage.selectAsset("OSMO"); + await tradePage.enterAmount("1.54"); + await tradePage.isSufficientBalanceForTrade(); + await tradePage.showSwapInfo(); + const { msgContentAmount } = await tradePage.sellAndGetWalletMsg(context); + expect(msgContentAmount).toBeTruthy(); + expect(msgContentAmount).toContain("type: osmosis/poolmanager/"); + await tradePage.isTransactionSuccesful(TRX_SUCCESS_TIMEOUT); + await tradePage.getTransactionUrl(); + }); +}); diff --git a/packages/e2e/tests/select.spec.ts b/packages/e2e/tests/select.spec.ts index 2356287647..cfdca8fbaa 100644 --- a/packages/e2e/tests/select.spec.ts +++ b/packages/e2e/tests/select.spec.ts @@ -4,106 +4,105 @@ import { type Page, chromium, test, -} from '@playwright/test' +} from "@playwright/test"; -import { TradePage } from '../pages/trade-page' -import { TestConfig } from '../test-config' +import { TradePage } from "../pages/trade-page"; +import { TestConfig } from "../test-config"; // Pairs are selected from top 10 -test.describe('Test Select Swap Pair feature', () => { - let context: BrowserContext - let swapPage: TradePage - let page: Page +test.describe("Test Select Swap Pair feature", () => { + let context: BrowserContext; + let swapPage: TradePage; + let page: Page; test.beforeAll(async () => { context = await chromium.launchPersistentContext( - '', - new TestConfig().getBrowserConfig(true), - ) - page = context.pages()[0] - swapPage = new TradePage(page) - await swapPage.goto() - }) + "", + new TestConfig().getBrowserConfig(true) + ); + page = context.pages()[0]; + swapPage = new TradePage(page); + await swapPage.goto(); + }); test.afterAll(async () => { - console.log(test.info()) - await context.close() - }) + await context.close(); + }); // Price Impact-54.768% -> no liquidity - test('User should be able to select nBTC/USDC', async () => { - await swapPage.goto() - await swapPage.selectPair('nBTC', 'USDC') - await swapPage.enterAmount('0.01') - await swapPage.showSwapInfo() - }) - - test('User should be able to select WBTC/USDC', async () => { - await swapPage.goto() - await swapPage.selectPair('WBTC', 'USDC') - await swapPage.enterAmount('0.1') - await swapPage.showSwapInfo() - }) - - test('User should be able to select OSMO/USDC', async () => { - await swapPage.goto() - await swapPage.selectPair('OSMO', 'USDC') - await swapPage.enterAmount('1') - await swapPage.showSwapInfo() - }) - - test('User should be able to select INJ/USDC', async () => { - await swapPage.goto() - await swapPage.selectPair('INJ', 'USDC') - await swapPage.enterAmount('10') - await swapPage.showSwapInfo() - }) - - test('User should be able to select TIA/USDC', async () => { - await swapPage.goto() - await swapPage.selectPair('TIA', 'USDC') - await swapPage.enterAmount('100') - await swapPage.showSwapInfo() - }) - - test('User should be able to select ATOM/USDC', async () => { - await swapPage.selectPair('ATOM', 'USDC') - await swapPage.enterAmount('100') - }) - - test('User should be able to select USDT/USDC', async () => { - await swapPage.selectPair('USDT', 'USDC') - await swapPage.enterAmount('10000') - }) - - test('User should be able to select TIA/OSMO', async () => { - await swapPage.selectPair('TIA', 'OSMO') - await swapPage.enterAmount('100') - }) - - test('User should be able to select AKT/OSMO', async () => { - await swapPage.selectPair('AKT', 'OSMO') - await swapPage.enterAmount('100') - }) - - test('User should be able to select PICA/OSMO', async () => { - await swapPage.selectPair('PICA', 'OSMO') - await swapPage.enterAmount('100') - }) - - test('User should be able to select USDT/OSMO', async () => { - await swapPage.selectPair('USDT', 'OSMO') - await swapPage.enterAmount('100') - }) - - test('User should be able to select TIA/BOOT', async () => { + test("User should be able to select nBTC/USDC", async () => { + await swapPage.goto(); + await swapPage.selectPair("nBTC", "USDC"); + await swapPage.enterAmount("0.01"); + await swapPage.showSwapInfo(); + }); + + test("User should be able to select WBTC/USDC", async () => { + await swapPage.goto(); + await swapPage.selectPair("WBTC", "USDC"); + await swapPage.enterAmount("0.1"); + await swapPage.showSwapInfo(); + }); + + test("User should be able to select OSMO/USDC", async () => { + await swapPage.goto(); + await swapPage.selectPair("OSMO", "USDC"); + await swapPage.enterAmount("1"); + await swapPage.showSwapInfo(); + }); + + test("User should be able to select INJ/USDC", async () => { + await swapPage.goto(); + await swapPage.selectPair("INJ", "USDC"); + await swapPage.enterAmount("10"); + await swapPage.showSwapInfo(); + }); + + test("User should be able to select TIA/USDC", async () => { + await swapPage.goto(); + await swapPage.selectPair("TIA", "USDC"); + await swapPage.enterAmount("100"); + await swapPage.showSwapInfo(); + }); + + test("User should be able to select ATOM/USDC", async () => { + await swapPage.selectPair("ATOM", "USDC"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select USDT/USDC", async () => { + await swapPage.selectPair("USDT", "USDC"); + await swapPage.enterAmount("10000"); + }); + + test("User should be able to select TIA/OSMO", async () => { + await swapPage.selectPair("TIA", "OSMO"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select AKT/OSMO", async () => { + await swapPage.selectPair("AKT", "OSMO"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select PICA/OSMO", async () => { + await swapPage.selectPair("PICA", "OSMO"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select USDT/OSMO", async () => { + await swapPage.selectPair("USDT", "OSMO"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select TIA/BOOT", async () => { // Just to verify some odd pair - await swapPage.selectPair('TIA', 'BOOT') - await swapPage.enterAmount('100') - }) - - test('User should be able to select stATOM/USDC', async () => { - await swapPage.selectPair('stATOM', 'USDC') - await swapPage.enterAmount('100') - }) -}) + await swapPage.selectPair("TIA", "BOOT"); + await swapPage.enterAmount("100"); + }); + + test("User should be able to select stATOM/USDC", async () => { + await swapPage.selectPair("stATOM", "USDC"); + await swapPage.enterAmount("100"); + }); +});