|
| 1 | +import { expect, test } from '@playwright/test'; |
| 2 | +import { Page } from 'playwright'; |
| 3 | + |
| 4 | +import { startInstalledApp } from '../installed-utils'; |
| 5 | +import { TestUtils } from '../../utils'; |
| 6 | +import { colors } from '../../../../src/config.json'; |
| 7 | +import { RoutePath } from '../../../../src/renderer/lib/routes'; |
| 8 | + |
| 9 | +// This test expects the daemon to be logged in and not have a custom bridge configured. |
| 10 | +// Env parameters: |
| 11 | +// `SHADOWSOCKS_SERVER_IP` |
| 12 | +// `SHADOWSOCKS_SERVER_PORT` |
| 13 | +// `SHADOWSOCKS_SERVER_CIPHER` |
| 14 | +// `SHADOWSOCKS_SERVER_PASSWORD` |
| 15 | + |
| 16 | +let page: Page; |
| 17 | +let util: TestUtils; |
| 18 | + |
| 19 | +test.beforeAll(async () => { |
| 20 | + ({ page, util } = await startInstalledApp()); |
| 21 | +}); |
| 22 | + |
| 23 | +test.afterAll(async () => { |
| 24 | + await page.close(); |
| 25 | +}); |
| 26 | + |
| 27 | +test('App should enable bridge mode', async () => { |
| 28 | + await util.waitForNavigation(async () => await page.click('button[aria-label="Settings"]')); |
| 29 | + expect( |
| 30 | + await util.waitForNavigation(async () => await page.getByText('VPN settings').click()), |
| 31 | + ).toBe(RoutePath.vpnSettings); |
| 32 | + |
| 33 | + await page.getByRole('option', { name: 'OpenVPN' }).click(); |
| 34 | + |
| 35 | + expect( |
| 36 | + await util.waitForNavigation(async () => await page.getByText('OpenVPN settings').click()), |
| 37 | + ).toBe(RoutePath.openVpnSettings); |
| 38 | + |
| 39 | + await page.getByTestId('bridge-mode-on').click(); |
| 40 | + await expect(page.getByText('Enable bridge mode?')).toBeVisible(); |
| 41 | + |
| 42 | + page.getByTestId('enable-confirm').click(); |
| 43 | + |
| 44 | + await util.waitForNavigation(async () => await page.click('button[aria-label="Back"]')); |
| 45 | + await util.waitForNavigation(async () => await page.click('button[aria-label="Back"]')); |
| 46 | + expect( |
| 47 | + await util.waitForNavigation(async () => await page.click('button[aria-label="Close"]')), |
| 48 | + ).toBe(RoutePath.main); |
| 49 | +}); |
| 50 | + |
| 51 | +test('App display disabled custom bridge', async () => { |
| 52 | + expect( |
| 53 | + await util.waitForNavigation( |
| 54 | + async () => await page.click('button[aria-label^="Select location"]'), |
| 55 | + ), |
| 56 | + ).toBe(RoutePath.selectLocation); |
| 57 | + |
| 58 | + const title = page.locator('h1') |
| 59 | + await expect(title).toHaveText('Select location'); |
| 60 | + |
| 61 | + await page.getByText(/^Entry$/).click(); |
| 62 | + |
| 63 | + const customBridgeButton = page.getByText('Custom bridge'); |
| 64 | + await expect(customBridgeButton).toBeDisabled(); |
| 65 | +}); |
| 66 | + |
| 67 | +test('App should add new custom bridge', async () => { |
| 68 | + expect( |
| 69 | + await util.waitForNavigation( |
| 70 | + async () => await page.click('button[aria-label="Add new custom bridge"]'), |
| 71 | + ), |
| 72 | + ).toBe(RoutePath.editCustomBridge); |
| 73 | + |
| 74 | + const title = page.locator('h1') |
| 75 | + await expect(title).toHaveText('Add custom bridge'); |
| 76 | + |
| 77 | + const inputs = page.locator('input'); |
| 78 | + const addButton = page.locator('button:has-text("Add")'); |
| 79 | + await expect(addButton).toBeVisible(); |
| 80 | + await expect(addButton).toBeDisabled(); |
| 81 | + |
| 82 | + await inputs.first().fill(process.env.SHADOWSOCKS_SERVER_IP!); |
| 83 | + await expect(addButton).toBeDisabled(); |
| 84 | + |
| 85 | + await inputs.nth(1).fill('443'); |
| 86 | + await expect(addButton).toBeEnabled(); |
| 87 | + |
| 88 | + await inputs.nth(2).fill(process.env.SHADOWSOCKS_SERVER_PASSWORD!); |
| 89 | + |
| 90 | + await page.getByTestId('ciphers').click(); |
| 91 | + await page.getByRole('option', { name: process.env.SHADOWSOCKS_SERVER_CIPHER!, exact: true }).click(); |
| 92 | + |
| 93 | + expect( |
| 94 | + await util.waitForNavigation(async () => await addButton.click()) |
| 95 | + ).toEqual(RoutePath.selectLocation); |
| 96 | + |
| 97 | + const customBridgeButton = page.getByText('Custom bridge'); |
| 98 | + await expect(customBridgeButton).toBeEnabled(); |
| 99 | + |
| 100 | + await expect(page.locator('button[aria-label="Edit custom bridge"]')).toBeVisible(); |
| 101 | +}); |
| 102 | + |
| 103 | +test('App should select custom bridge', async () => { |
| 104 | + const customBridgeButton = page.locator('button:has-text("Custom bridge")'); |
| 105 | + await expect(customBridgeButton).toHaveCSS('background-color', colors.green); |
| 106 | + |
| 107 | + const automaticButton = page.getByText('Automatic'); |
| 108 | + await automaticButton.click(); |
| 109 | + await page.getByText(/^Entry$/).click(); |
| 110 | + await expect(customBridgeButton).not.toHaveCSS('background-color', colors.green); |
| 111 | + |
| 112 | + |
| 113 | + await customBridgeButton.click(); |
| 114 | + await page.getByText(/^Entry$/).click(); |
| 115 | + await expect(customBridgeButton).toHaveCSS('background-color', colors.green); |
| 116 | + |
| 117 | +}); |
| 118 | + |
| 119 | +test('App should edit custom bridge', async () => { |
| 120 | + const automaticButton = page.getByText('Automatic'); |
| 121 | + await automaticButton.click(); |
| 122 | + await page.getByText(/^Entry$/).click(); |
| 123 | + |
| 124 | + expect( |
| 125 | + await util.waitForNavigation( |
| 126 | + async () => await page.click('button[aria-label="Edit custom bridge"]'), |
| 127 | + ), |
| 128 | + ).toBe(RoutePath.editCustomBridge); |
| 129 | + |
| 130 | + const title = page.locator('h1') |
| 131 | + await expect(title).toHaveText('Edit custom bridge'); |
| 132 | + |
| 133 | + const inputs = page.locator('input'); |
| 134 | + const saveButton = page.locator('button:has-text("Save")'); |
| 135 | + await expect(saveButton).toBeVisible(); |
| 136 | + await expect(saveButton).toBeEnabled(); |
| 137 | + |
| 138 | + await inputs.nth(1).fill(process.env.SHADOWSOCKS_SERVER_PORT!); |
| 139 | + await expect(saveButton).toBeEnabled(); |
| 140 | + |
| 141 | + |
| 142 | + expect( |
| 143 | + await util.waitForNavigation(async () => await saveButton.click()) |
| 144 | + ).toEqual(RoutePath.selectLocation); |
| 145 | + |
| 146 | + const customBridgeButton = page.locator('button:has-text("Custom bridge")'); |
| 147 | + await expect(customBridgeButton).toBeEnabled(); |
| 148 | + await expect(customBridgeButton).toHaveCSS('background-color', colors.green); |
| 149 | +}); |
| 150 | + |
| 151 | +test('App should delete custom bridge', async () => { |
| 152 | + expect( |
| 153 | + await util.waitForNavigation( |
| 154 | + async () => await page.click('button[aria-label="Edit custom bridge"]'), |
| 155 | + ), |
| 156 | + ).toBe(RoutePath.editCustomBridge); |
| 157 | + |
| 158 | + const deleteButton = page.locator('button:has-text("Delete")'); |
| 159 | + await expect(deleteButton).toBeVisible(); |
| 160 | + await expect(deleteButton).toBeEnabled(); |
| 161 | + |
| 162 | + await deleteButton.click(); |
| 163 | + await expect(page.getByText('Delete custom bridge?')).toBeVisible(); |
| 164 | + |
| 165 | + const confirmButton = page.getByTestId('delete-confirm'); |
| 166 | + expect( |
| 167 | + await util.waitForNavigation(async () => await confirmButton.click()) |
| 168 | + ).toEqual(RoutePath.selectLocation); |
| 169 | + |
| 170 | + const customBridgeButton = page.locator('button:has-text("Custom bridge")'); |
| 171 | + await expect(customBridgeButton).toBeDisabled(); |
| 172 | + await expect(customBridgeButton).not.toHaveCSS('background-color', colors.green); |
| 173 | +}); |
0 commit comments