mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Cleanup
This commit is contained in:
parent
1cf8fd1241
commit
d064d46668
32 changed files with 429 additions and 400 deletions
|
|
@ -1,16 +1,14 @@
|
|||
import forge from "node-forge";
|
||||
import path from "path";
|
||||
import fs from "fs";
|
||||
import os from "os";
|
||||
import { getSafeChainDir } from "../config/environmentVariables.js";
|
||||
import { getSafeChainBaseDir } from "../config/safeChainDir.js";
|
||||
|
||||
const ca = loadCa();
|
||||
|
||||
const certCache = new Map();
|
||||
|
||||
function getCertFolder() {
|
||||
const safeChainDir = getSafeChainDir() ?? path.join(os.homedir(), ".safe-chain");
|
||||
return path.join(safeChainDir, "certs");
|
||||
return path.join(getSafeChainBaseDir(), "certs");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -2,24 +2,23 @@ import { describe, it, beforeEach, afterEach, mock } from "node:test";
|
|||
import assert from "node:assert";
|
||||
|
||||
describe("certUtils", () => {
|
||||
let originalSafeChainDir;
|
||||
let installedSafeChainDir;
|
||||
|
||||
beforeEach(() => {
|
||||
originalSafeChainDir = process.env.SAFE_CHAIN_DIR;
|
||||
installedSafeChainDir = undefined;
|
||||
mock.module("../config/safeChainDir.js", {
|
||||
namedExports: {
|
||||
getSafeChainBaseDir: () => installedSafeChainDir ?? "/home/test/.safe-chain",
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
if (originalSafeChainDir === undefined) {
|
||||
delete process.env.SAFE_CHAIN_DIR;
|
||||
} else {
|
||||
process.env.SAFE_CHAIN_DIR = originalSafeChainDir;
|
||||
}
|
||||
|
||||
mock.reset();
|
||||
});
|
||||
|
||||
it("stores CA certificates in SAFE_CHAIN_DIR when configured", async () => {
|
||||
process.env.SAFE_CHAIN_DIR = "/custom/safe-chain";
|
||||
it("stores CA certificates in the packaged install dir when available", async () => {
|
||||
installedSafeChainDir = "/custom/safe-chain";
|
||||
|
||||
mock.module("fs", {
|
||||
defaultExport: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue