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
|
'use strict';
const assert = require('assert');
let http = require('http');
let https = require('https');
const os = require('os');
const fs = require('fs');
const express = require('../support/express');
const request = require('../support/client');
const app = express();
const key = fs.readFileSync(`${__dirname}/fixtures/key.pem`);
const cert = fs.readFileSync(`${__dirname}/fixtures/cert.pem`);
const cacert = fs.readFileSync(`${__dirname}/fixtures/ca.cert.pem`);
const httpSockPath = [os.tmpdir(), 'superagent-http.sock'].join('/');
const httpsSockPath = [os.tmpdir(), 'superagent-https.sock'].join('/');
let httpServer;
let httpsServer;
if (process.env.HTTP2_TEST) {
http = https = require('http2');
}
app.get('/', (request_, res) => {
res.send('root ok!');
});
app.get('/request/path', (request_, res) => {
res.send('request path ok!');
});
describe('[unix-sockets] http', () => {
if (process.platform === 'win32') {
return;
}
before((done) => {
if (fs.existsSync(httpSockPath) === true) {
// try unlink if sock file exists
fs.unlinkSync(httpSockPath);
}
httpServer = http.createServer(app);
httpServer.listen(httpSockPath, done);
});
const base = `http+unix://${httpSockPath.replace(/\//g, '%2F')}`;
describe('request', () => {
it('path: / (root)', (done) => {
request.get(`${base}/`).end((error, res) => {
assert(res.ok);
assert.strictEqual('root ok!', res.text);
done();
});
});
it('path: /request/path', (done) => {
request.get(`${base}/request/path`).end((error, res) => {
assert(res.ok);
assert.strictEqual('request path ok!', res.text);
done();
});
});
});
after(() => {
if (typeof httpServer.close === 'function') {
httpServer.close();
} else httpServer.destroy();
});
});
describe('[unix-sockets] https', () => {
if (process.platform === 'win32') {
return;
}
before((done) => {
if (fs.existsSync(httpsSockPath) === true) {
// try unlink if sock file exists
fs.unlinkSync(httpsSockPath);
}
httpsServer = process.env.HTTP2_TEST
? https.createSecureServer({ key, cert }, app)
: https.createServer({ key, cert }, app);
httpsServer.listen(httpsSockPath, done);
});
const base = `https+unix://${httpsSockPath.replace(/\//g, '%2F')}`;
describe('request', () => {
it('path: / (root)', (done) => {
request
.get(`${base}/`)
.ca(cacert)
.end((error, res) => {
assert.ifError(error);
assert(res.ok);
assert.strictEqual('root ok!', res.text);
done();
});
});
it('path: /request/path', (done) => {
request
.get(`${base}/request/path`)
.ca(cacert)
.end((error, res) => {
assert.ifError(error);
assert(res.ok);
assert.strictEqual('request path ok!', res.text);
done();
});
});
});
after((done) => {
httpsServer.close(done);
});
});
|