mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Fix Windows bash
This commit is contained in:
parent
a68cf97f89
commit
7ed943d46f
2 changed files with 103 additions and 5 deletions
|
|
@ -46,10 +46,11 @@ function teardown(tools) {
|
||||||
|
|
||||||
function setup() {
|
function setup() {
|
||||||
const startupFile = getStartupFile();
|
const startupFile = getStartupFile();
|
||||||
|
const scriptsDir = getShellScriptsDir();
|
||||||
|
|
||||||
addLineToFile(
|
addLineToFile(
|
||||||
startupFile,
|
startupFile,
|
||||||
`source ${path.join(getScriptsDir(), "init-posix.sh")} # Safe-chain bash initialization script`,
|
`source ${path.posix.join(scriptsDir, "init-posix.sh")} # Safe-chain bash initialization script`,
|
||||||
eol
|
eol
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -96,6 +97,51 @@ function windowsFixPath(path) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getShellScriptsDir() {
|
||||||
|
return toBashPath(getScriptsDir());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} path
|
||||||
|
*
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function toBashPath(path) {
|
||||||
|
try {
|
||||||
|
if (os.platform() !== "win32") {
|
||||||
|
return path.replace(/\\/g, "/");
|
||||||
|
}
|
||||||
|
|
||||||
|
const directWindowsPath = windowsPathToBashPath(path);
|
||||||
|
if (directWindowsPath) {
|
||||||
|
return directWindowsPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasCygpath()) {
|
||||||
|
return cygpathu(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
return path.replace(/\\/g, "/");
|
||||||
|
} catch {
|
||||||
|
return path.replace(/\\/g, "/");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} path
|
||||||
|
*
|
||||||
|
* @returns {string | undefined}
|
||||||
|
*/
|
||||||
|
function windowsPathToBashPath(path) {
|
||||||
|
const match = /^([A-Za-z]):[\\/](.*)$/.exec(path);
|
||||||
|
if (!match) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
const [, driveLetter, rest] = match;
|
||||||
|
return `/${driveLetter.toLowerCase()}/${rest.replace(/\\/g, "/")}`;
|
||||||
|
}
|
||||||
|
|
||||||
function hasCygpath() {
|
function hasCygpath() {
|
||||||
try {
|
try {
|
||||||
var result = spawnSync("where", ["cygpath"], { shell: executableName });
|
var result = spawnSync("where", ["cygpath"], { shell: executableName });
|
||||||
|
|
@ -125,18 +171,40 @@ function cygpathw(path) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} path
|
||||||
|
*
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function cygpathu(path) {
|
||||||
|
try {
|
||||||
|
var result = spawnSync("cygpath", ["-u", path], {
|
||||||
|
encoding: "utf8",
|
||||||
|
shell: executableName,
|
||||||
|
});
|
||||||
|
if (result.status === 0) {
|
||||||
|
return result.stdout.trim();
|
||||||
|
}
|
||||||
|
return path.replace(/\\/g, "/");
|
||||||
|
} catch {
|
||||||
|
return path.replace(/\\/g, "/");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function getManualTeardownInstructions() {
|
function getManualTeardownInstructions() {
|
||||||
|
const scriptsDir = getShellScriptsDir();
|
||||||
return [
|
return [
|
||||||
`Remove the following line from your ~/.bashrc file:`,
|
`Remove the following line from your ~/.bashrc file:`,
|
||||||
` source ${path.join(getScriptsDir(), "init-posix.sh")}`,
|
` source ${path.posix.join(scriptsDir, "init-posix.sh")}`,
|
||||||
`Then restart your terminal or run: source ~/.bashrc`,
|
`Then restart your terminal or run: source ~/.bashrc`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
function getManualSetupInstructions() {
|
function getManualSetupInstructions() {
|
||||||
|
const scriptsDir = getShellScriptsDir();
|
||||||
return [
|
return [
|
||||||
`Add the following line to your ~/.bashrc file:`,
|
`Add the following line to your ~/.bashrc file:`,
|
||||||
` source ${path.join(getScriptsDir(), "init-posix.sh")}`,
|
` source ${path.posix.join(scriptsDir, "init-posix.sh")}`,
|
||||||
`Then restart your terminal or run: source ~/.bashrc`,
|
`Then restart your terminal or run: source ~/.bashrc`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ describe("Bash shell integration", () => {
|
||||||
let mockStartupFile;
|
let mockStartupFile;
|
||||||
let bash;
|
let bash;
|
||||||
let windowsCygwinPath = "";
|
let windowsCygwinPath = "";
|
||||||
|
let mockScriptsDir = "/test-home/.safe-chain/scripts";
|
||||||
let platform = "linux";
|
let platform = "linux";
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
|
|
@ -37,7 +38,7 @@ describe("Bash shell integration", () => {
|
||||||
|
|
||||||
mock.module("../../config/safeChainDir.js", {
|
mock.module("../../config/safeChainDir.js", {
|
||||||
namedExports: {
|
namedExports: {
|
||||||
getScriptsDir: () => "/test-home/.safe-chain/scripts",
|
getScriptsDir: () => mockScriptsDir,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -67,6 +68,17 @@ describe("Bash shell integration", () => {
|
||||||
stdout: windowsCygwinPath + "\n",
|
stdout: windowsCygwinPath + "\n",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
command === "cygpath" &&
|
||||||
|
args[0] === "-u" &&
|
||||||
|
args[1] === mockScriptsDir
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
status: 0,
|
||||||
|
stdout: "/c/test-home/.safe-chain/scripts\n",
|
||||||
|
};
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
@ -93,6 +105,7 @@ describe("Bash shell integration", () => {
|
||||||
|
|
||||||
// Reset mocks
|
// Reset mocks
|
||||||
mock.reset();
|
mock.reset();
|
||||||
|
mockScriptsDir = "/test-home/.safe-chain/scripts";
|
||||||
platform = "linux";
|
platform = "linux";
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -135,7 +148,24 @@ describe("Bash shell integration", () => {
|
||||||
const content = fs.readFileSync(windowsCygwinPath, "utf-8");
|
const content = fs.readFileSync(windowsCygwinPath, "utf-8");
|
||||||
assert.ok(
|
assert.ok(
|
||||||
content.includes(
|
content.includes(
|
||||||
"source /test-home/.safe-chain/scripts/init-posix.sh # Safe-chain bash initialization script"
|
"source /c/test-home/.safe-chain/scripts/init-posix.sh # Safe-chain bash initialization script"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should write a bash-compatible scripts path on Windows", () => {
|
||||||
|
platform = "win32";
|
||||||
|
windowsCygwinPath = mockStartupFile;
|
||||||
|
mockScriptsDir = "C:\\test-home\\.safe-chain\\scripts";
|
||||||
|
mockStartupFile = "DUMMY";
|
||||||
|
|
||||||
|
const result = bash.setup();
|
||||||
|
assert.strictEqual(result, true);
|
||||||
|
|
||||||
|
const content = fs.readFileSync(windowsCygwinPath, "utf-8");
|
||||||
|
assert.ok(
|
||||||
|
content.includes(
|
||||||
|
"source /c/test-home/.safe-chain/scripts/init-posix.sh # Safe-chain bash initialization script"
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue