mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
98 lines
3.0 KiB
TypeScript
98 lines
3.0 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import https from "https";
|
|
import os from "os";
|
|
import { getMacRootCA, getWinRootCA, injectCAs, DSTRootCAX3 } from "../system-ca";
|
|
import { dependencies, devDependencies } from "../../../package.json";
|
|
|
|
const deps = { ...dependencies, ...devDependencies };
|
|
|
|
// Skip the test if mac-ca is not installed, or os is not darwin
|
|
(deps["mac-ca"] && os.platform().includes("darwin") ? describe: describe.skip)("inject CA for Mac", () => {
|
|
// for reset https.globalAgent.options.ca after testing
|
|
let _ca: string | Buffer | (string | Buffer)[];
|
|
|
|
beforeEach(() => {
|
|
_ca = https.globalAgent.options.ca;
|
|
});
|
|
|
|
afterEach(() => {
|
|
https.globalAgent.options.ca = _ca;
|
|
});
|
|
|
|
/**
|
|
* The test to ensure using getMacRootCA + injectCAs injects CAs in the same way as using
|
|
* the auto injection (require('mac-ca'))
|
|
*/
|
|
it("should inject the same ca as mac-ca", async () => {
|
|
const osxCAs = await getMacRootCA();
|
|
|
|
injectCAs(osxCAs);
|
|
const injected = https.globalAgent.options.ca as (string | Buffer)[];
|
|
|
|
await import("mac-ca");
|
|
const injectedByMacCA = https.globalAgent.options.ca as (string | Buffer)[];
|
|
|
|
expect(new Set(injected)).toEqual(new Set(injectedByMacCA));
|
|
});
|
|
|
|
it("shouldn't included the expired DST Root CA X3 on Mac", async () => {
|
|
const osxCAs = await getMacRootCA();
|
|
|
|
injectCAs(osxCAs);
|
|
const injected = https.globalAgent.options.ca;
|
|
|
|
expect(injected.includes(DSTRootCAX3)).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
// Skip the test if win-ca is not installed, or os is not win32
|
|
(deps["win-ca"] && os.platform().includes("win32") ? describe: describe.skip)("inject CA for Windows", () => {
|
|
// for reset https.globalAgent.options.ca after testing
|
|
let _ca: string | Buffer | (string | Buffer)[];
|
|
|
|
beforeEach(() => {
|
|
_ca = https.globalAgent.options.ca;
|
|
});
|
|
|
|
afterEach(() => {
|
|
https.globalAgent.options.ca = _ca;
|
|
});
|
|
|
|
/**
|
|
* The test to ensure using win-ca/api injects CAs in the same way as using
|
|
* the auto injection (require('win-ca').inject('+'))
|
|
*/
|
|
it("should inject the same ca as winca.inject('+')", async () => {
|
|
const winCAs = await getWinRootCA();
|
|
|
|
const wincaAPI = await import("win-ca/api");
|
|
|
|
wincaAPI.inject("+", winCAs);
|
|
const injected = https.globalAgent.options.ca as (string | Buffer)[];
|
|
|
|
const winca = await import("win-ca");
|
|
|
|
winca.inject("+"); // see: https://github.com/ukoloff/win-ca#caveats
|
|
const injectedByWinCA = https.globalAgent.options.ca as (string | Buffer)[];
|
|
|
|
expect(new Set(injected)).toEqual(new Set(injectedByWinCA));
|
|
});
|
|
|
|
it("shouldn't included the expired DST Root CA X3 on Windows", async () => {
|
|
const winCAs = await getWinRootCA();
|
|
|
|
const wincaAPI = await import("win-ca/api");
|
|
|
|
wincaAPI.inject("true", winCAs);
|
|
const injected = https.globalAgent.options.ca as (string | Buffer)[];
|
|
|
|
expect(injected.includes(DSTRootCAX3)).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
|
|
|