-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathauto-connect.test.ts
353 lines (327 loc) · 10.8 KB
/
auto-connect.test.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
import { expect } from 'chai';
import type { Compass } from '../helpers/compass';
import {
init,
cleanup,
positionalArgs,
skipForWeb,
screenshotPathName,
connectionNameFromString,
} from '../helpers/compass';
import * as Selectors from '../helpers/selectors';
import os from 'os';
import path from 'path';
import { promises as fs } from 'fs';
const connectionStringSuccess = 'mongodb://127.0.0.1:27091/test';
const connectionNameSuccess = 'Success';
const connectionStringUnreachable =
'mongodb://127.0.0.1:27091/test?tls=true&serverSelectionTimeoutMS=10';
const connectionNameUnreachable = 'Unreachable';
const connectionStringInvalid = 'http://example.com';
const connectionNameInvalid = 'Invalid';
describe('Automatically connecting from the command line', function () {
let tmpdir: string;
let i = 0;
before(function () {
skipForWeb(this, 'cli parameters not supported in compass-web');
});
beforeEach(async function () {
tmpdir = path.join(
os.tmpdir(),
`compass-auto-connect-${Date.now().toString(32)}-${++i}`
);
await fs.mkdir(tmpdir, { recursive: true });
await fs.writeFile(
path.join(tmpdir, 'exported.json'),
`
{
"type": "Compass Connections",
"version": { "$numberInt": "1" },
"connections": [{
"id": "54dba8d8-fe31-463b-bfd8-7147517ce3ab",
"connectionOptions": { "connectionString": ${JSON.stringify(
connectionStringSuccess
)} },
"favorite": { "name": "Success" },
"connectionSecrets": "AAGgVnjgNTtXvIX8mepITskKWud9fBtnoy2aJQvQkdh01mBG1903YlOuix4fhZRcBl8PsMbLr6laqhk2WjO1Uw=="
}, {
"id": "d47681e6-1884-41ff-be8e-8843f1c21fd8",
"connectionOptions": { "connectionString": ${JSON.stringify(
connectionStringUnreachable
)} },
"favorite": { "name": "Unreachable" },
"connectionSecrets": "AAGgVnjgNTtXvIX8mepITskKWud9fBtnoy2aJQvQkdh01mBG1903YlOuix4fhZRcBl8PsMbLr6laqhk2WjO1Uw=="
}]
}
`
);
await fs.writeFile(
path.join(tmpdir, 'invalid.json'),
`
{
"type": "Compass Connections",
"version": { "$numberInt": "1" },
"connections": [{
"id": "9beea496-22b2-4973-b3d8-03d5010ff989",
"connectionOptions": { "connectionString": ${JSON.stringify(
connectionStringInvalid
)} },
"favorite": { "name": "Invalid" }
}]
}
`
);
});
afterEach(async function () {
await fs.rmdir(tmpdir, { recursive: true });
});
async function waitForConnectionSuccessAndCheckConnection(
compass: Compass,
connectionName: string
) {
await compass.browser.waitForConnectionResult(connectionName, {
connectionStatus: 'success',
});
const result = await compass.browser.shellEval(
connectionName,
'db.runCommand({ connectionStatus: 1 })',
true
);
expect(result).to.have.property('ok', 1);
}
it('works with a connection string on the command line', async function () {
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs([connectionStringSuccess]),
});
try {
await waitForConnectionSuccessAndCheckConnection(
compass,
connectionNameFromString(connectionStringSuccess)
);
} finally {
await cleanup(compass);
}
});
it('works with a connection file on the command line', async function () {
const args = [
`--file=${path.join(tmpdir, 'exported.json')}`,
'54dba8d8-fe31-463b-bfd8-7147517ce3ab',
`--passphrase=p4ssw0rd`,
];
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs(args),
});
try {
await waitForConnectionSuccessAndCheckConnection(compass, 'Success');
} finally {
await cleanup(compass);
}
});
it('fails with an unreachable URL', async function () {
const args = [
`--file=${path.join(tmpdir, 'exported.json')}`,
'd47681e6-1884-41ff-be8e-8843f1c21fd8',
`--passphrase=p4ssw0rd`,
];
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs(args),
});
try {
const error = await compass.browser.waitForConnectionResult(
connectionNameUnreachable,
{ connectionStatus: 'failure' }
);
expect(error).to.match(
/ECONNRESET|Server selection timed out|Client network socket disconnected/i
);
} finally {
await cleanup(compass);
}
});
it('fails with invalid auth', async function () {
const args = [
`--file=${path.join(tmpdir, 'exported.json')}`,
'54dba8d8-fe31-463b-bfd8-7147517ce3ab',
`--passphrase=p4ssw0rd`,
'--username=doesnotexist',
'--password=asdf/',
];
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs(args),
});
const { browser } = compass;
try {
const error = await browser.waitForConnectionResult(
connectionNameSuccess,
{ connectionStatus: 'failure' }
);
expect(error).to.include('Authentication failed');
await browser.clickVisible(Selectors.ConnectionToastErrorReviewButton);
await browser.$(Selectors.ConnectionModal).waitForDisplayed();
const connectFormState = await browser.getConnectFormState();
expect(connectFormState.defaultUsername).to.equal('doesnotexist');
expect(connectFormState.defaultPassword).to.equal('asdf/');
} catch (err: any) {
await browser.screenshot(screenshotPathName('fails with invalid auth'));
throw err;
} finally {
await cleanup(compass);
}
});
it('fails with an invalid connection string', async function () {
const args = [
`--file=${path.join(tmpdir, 'invalid.json')}`,
'9beea496-22b2-4973-b3d8-03d5010ff989',
];
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs(args),
});
try {
const error = await compass.browser.waitForConnectionResult(
connectionNameInvalid,
{ connectionStatus: 'failure' }
);
expect(error).to.include('Invalid scheme');
} finally {
await cleanup(compass);
}
});
it('fails with an invalid connections file', async function () {
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs([
`--file=${path.join(tmpdir, 'doesnotexist.json')}`,
]),
});
const connectionName =
'no connection can appear because the file is invalid';
try {
const error = await compass.browser.waitForConnectionResult(
connectionName,
{ connectionStatus: 'failure' }
);
expect(error).to.include('ENOENT');
} finally {
await cleanup(compass);
}
});
it('enters auto-connect mode again if the window is hard reloaded', async function () {
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs([connectionStringSuccess]),
});
try {
const { browser } = compass;
await browser.waitForConnectionResult(
connectionNameFromString(connectionStringSuccess),
{
connectionStatus: 'success',
}
);
await browser.execute(() => {
// eslint-disable-next-line no-restricted-globals
location.reload();
});
await browser.waitForConnectionResult(
connectionNameFromString(connectionStringSuccess),
{
connectionStatus: 'success',
}
);
await browser.disconnectAll();
await browser.execute(() => {
// eslint-disable-next-line no-restricted-globals
location.reload();
});
} catch (err: any) {
await compass.browser.screenshot(
screenshotPathName(
'enters auto-connect mode again if the window is hard reloaded'
)
);
throw err;
} finally {
await cleanup(compass);
}
});
it('does not enter auto-connect mode in new windows', async function () {
const compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs([connectionStringSuccess]),
});
try {
const { browser } = compass;
await browser.waitForConnectionResult(
connectionNameFromString(connectionStringSuccess),
{
connectionStatus: 'success',
}
);
// make sure the Welcome tab (if any) is gone
await browser.closeWorkspaceTabs();
await browser.execute(() => {
// eslint-disable-next-line @typescript-eslint/no-var-requires
(require('electron').ipcRenderer as any).call(
'test:show-connect-window'
);
});
// Switch to the other window
let currentWindow = await browser.getWindowHandle();
let allWindows: string[] = [];
await browser.waitUntil(async function () {
allWindows = await browser.getWindowHandles();
if (allWindows.length < 2) return false;
currentWindow = allWindows.find((w) => w !== currentWindow) as string;
await browser.switchToWindow(currentWindow);
// the new window should open on the welcome tab
const currentActiveTab = browser.$(
Selectors.workspaceTab({ active: true })
);
const type = await currentActiveTab.getAttribute('data-type');
return type === 'Welcome';
});
// no toasts to signify that anything is connecting
const numToasts = await browser.$(Selectors.LGToastContainer).$$('div')
.length;
expect(numToasts).to.equal(0);
// no active connections
const numConnectionItems = await browser.$$(
Selectors.Multiple.ConnectedConnectionItems
).length;
expect(numConnectionItems).to.equal(0);
} finally {
await cleanup(compass);
}
});
it('does not store the connection information as a recent connection', async function () {
let browser;
let compass = await init(this.test?.fullTitle(), {
wrapBinary: positionalArgs([connectionStringSuccess]),
});
try {
browser = compass.browser;
await browser.waitForConnectionResult(
connectionNameFromString(connectionStringSuccess),
{
connectionStatus: 'success',
}
);
// close compass
await cleanup(compass);
// open compass again
compass = await init(this.test?.fullTitle(), {
// reuse the same user directory so we'd get the same connections
firstRun: false,
});
browser = compass.browser;
// there should be no connection items
const numConnectionItems = await browser.$$(
Selectors.Multiple.ConnectionItems
).length;
expect(numConnectionItems).to.equal(0);
await browser.$(Selectors.Multiple.NoDeploymentsText).waitForDisplayed();
await browser
.$(Selectors.Multiple.AddNewConnectionButton)
.waitForDisplayed();
} finally {
await cleanup(compass);
}
});
});