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