-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathParseServer.spec.js
63 lines (58 loc) · 1.88 KB
/
ParseServer.spec.js
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
'use strict';
/* Tests for ParseServer.js */
const express = require('express');
const ParseServer = require('../lib/ParseServer').default;
const path = require('path');
const { spawn } = require('child_process');
describe('Server Url Checks', () => {
let server;
beforeEach(done => {
if (!server) {
const app = express();
app.get('/health', function (req, res) {
res.json({
status: 'ok',
});
});
server = app.listen(13376, undefined, done);
} else {
done();
}
});
afterAll(done => {
Parse.serverURL = 'http://localhost:8378/1';
server.close(done);
});
it('validate good server url', async () => {
Parse.serverURL = 'http://localhost:13376';
const response = await ParseServer.verifyServerUrl();
expect(response).toBeTrue();
});
it('mark bad server url', async () => {
spyOn(console, 'warn').and.callFake(() => {});
Parse.serverURL = 'notavalidurl';
const response = await ParseServer.verifyServerUrl();
expect(response).not.toBeTrue();
expect(console.warn).toHaveBeenCalledWith(
`\nWARNING, Unable to connect to 'notavalidurl' as the URL is invalid. Cloud code and push notifications may be unavailable!\n`
);
});
it('does not have unhandled promise rejection in the case of load error', done => {
const parseServerProcess = spawn(path.resolve(__dirname, './support/FailingServer.js'));
let stdout;
let stderr;
parseServerProcess.stdout.on('data', data => {
stdout = data.toString();
});
parseServerProcess.stderr.on('data', data => {
stderr = data.toString();
});
parseServerProcess.on('close', async code => {
expect(code).toEqual(1);
expect(stdout).not.toContain('UnhandledPromiseRejectionWarning');
expect(stderr).toContain('MongoServerSelectionError');
await reconfigureServer();
done();
});
});
});