Skip to content

Commit a9b6edf

Browse files
committed
test tls pass through
1 parent 4a3d3c3 commit a9b6edf

File tree

5 files changed

+57
-3
lines changed

5 files changed

+57
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
*-lock.json
3-
*.lock
3+
*.lock
4+
coverage/

jest.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ module.exports = {
44
testRegex: "/src/.*\\.(test|spec)?\\.(ts|tsx)$",
55
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
66
collectCoverage: true,
7-
coverageReporters: ["text-summary"],
7+
coverageReporters: ["text-summary", "html"],
88
};

src/from.ts

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const Stream = require("stream");
55
const createError = require("http-errors");
66
const buildRequest = require("./request");
77
const Url = require("url");
8+
const https = require("https");
89
const {
910
filterPseudoHeaders,
1011
copyHeaders,
@@ -62,6 +63,20 @@ export default fp(
6263
const req = this.request.raw;
6364
const getUpstream = opts.getUpstream || upstreamNoOp;
6465

66+
const { proxy_key, proxy_cert } = this.request.body || {};
67+
68+
if (proxy_cert && proxy_key) {
69+
opts.http = {
70+
...opts.http,
71+
agents: {
72+
https: new https.Agent({
73+
key: proxy_key,
74+
cert: proxy_cert,
75+
}),
76+
},
77+
};
78+
}
79+
6580
// we can forward the cert and key here, if we have them
6681
const { request, close, retryOnError } = buildRequest({
6782
http: opts.http,

src/index.test.ts

+37
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,41 @@ describe("testing proxy", () => {
3838
}
3939
);
4040
});
41+
42+
test("should return TLS certificate was presented", (done) => {
43+
return app.inject(
44+
{
45+
headers: {
46+
upstream: "https://certauth.cryptomix.com",
47+
},
48+
method: "POST",
49+
url: "/",
50+
payload: {
51+
proxy_cert: `-----BEGIN CERTIFICATE-----
52+
MIIBljCCAT2gAwIBAgIGAXpec6QTMAoGCCqGSM49BAMCMDcxNTAzBgNVBAMTLGFr
53+
YXNoMWcyazlhejhmYWZnbmhheGN6ajJwY2Y3ZHh6bTk2cjN3MGVhM2Z2MB4XDTIx
54+
MDYzMDA1MDAwMFoXDTIzMDYzMDA1MDAwMFowNzE1MDMGA1UEAxMsYWthc2gxZzJr
55+
OWF6OGZhZmduaGF4Y3pqMnBjZjdkeHptOTZyM3cwZWEzZnYwWTATBgcqhkjOPQIB
56+
BggqhkjOPQMBBwNCAAQxL+j8g6BVY90Qhosaywz/FnAPZSudeKxp1R+7xZp3ObnI
57+
isXvOeFVxgI4QlZ18XkNzCkH0ld3jE9wM9oWpFlBozUwMzAOBgNVHQ8BAf8EBAMC
58+
ADAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAKBggqhkjOPQQD
59+
AgNHADBEAiACxXpENnv/0z+YY8O5PxNcZhCoy0cYEHP7taJSqYCNxAIgezBwfet7
60+
2fT9yAO55qii1pg9yUTUb+0bLDc4iUSOU60=
61+
-----END CERTIFICATE-----`,
62+
proxy_key: `-----BEGIN PRIVATE KEY-----
63+
MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQgGYAxjsEAPUfNblnM
64+
1hpJhwwEcGNJ2UQ5ZVqgPVggmFugCgYIKoZIzj0DAQehRANCAAQxL+j8g6BVY90Q
65+
hosaywz/FnAPZSudeKxp1R+7xZp3ObnIisXvOeFVxgI4QlZ18XkNzCkH0ld3jE9w
66+
M9oWpFlB
67+
-----END PRIVATE KEY-----`,
68+
},
69+
},
70+
(err, response) => {
71+
if (response) {
72+
expect(JSON.parse(response.body).data).toContain("success");
73+
}
74+
done(err);
75+
}
76+
);
77+
});
4178
});

src/request.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ function buildRequest(opts: any) {
6363
);
6464
}
6565
} else {
66-
agents = httpOpts.agents || {
66+
agents = {
6767
"http:": new http.Agent(httpOpts.agentOptions),
6868
"https:": new https.Agent(httpOpts.agentOptions),
69+
...httpOpts.agents,
6970
};
7071
}
7172

0 commit comments

Comments
 (0)