mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2026-05-13 15:19:33 +03:00
SQSCANGHA-140 Add OpenPGP signature verification for scanner downloads (#235)
This commit is contained in:
@@ -0,0 +1,486 @@
|
||||
/*
|
||||
* sonarqube-scan-action
|
||||
* Copyright (C) 2025 SonarSource SA
|
||||
* mailto:info AT sonarsource DOT com
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
import assert from "node:assert/strict";
|
||||
import * as fs from "node:fs";
|
||||
import {afterEach, describe, it, mock} from "node:test";
|
||||
import {setupGpgHome,} from "../gpg-verification.js";
|
||||
|
||||
/**
|
||||
* Helper function to create a temporary GPG home directory for testing.
|
||||
* @param {Array} tempDirs - Array to track temp directories for cleanup
|
||||
* @returns {string} Path to the created GPG home directory
|
||||
*/
|
||||
function createTrackedGpgHome(tempDirs) {
|
||||
const gpgHome = setupGpgHome();
|
||||
tempDirs.push(gpgHome);
|
||||
assert.ok(fs.existsSync(gpgHome));
|
||||
return gpgHome;
|
||||
}
|
||||
|
||||
describe("gpg-verification with mocked exec", () => {
|
||||
let tempDirs = [];
|
||||
|
||||
afterEach(() => {
|
||||
// Clean up temporary directories
|
||||
tempDirs.forEach((dir) => {
|
||||
try {
|
||||
if (fs.existsSync(dir)) {
|
||||
fs.rmSync(dir, { recursive: true, force: true });
|
||||
}
|
||||
} catch (error) {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
tempDirs = [];
|
||||
});
|
||||
|
||||
describe("isGpgAvailable", () => {
|
||||
it("should return true when GPG is available", async (t) => {
|
||||
const execFn = mock.fn(async () => 0);
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { isGpgAvailable } = await import("../gpg-verification.js?test=gpg-available");
|
||||
|
||||
const result = await isGpgAvailable();
|
||||
|
||||
assert.equal(result, true);
|
||||
assert.equal(execFn.mock.calls.length, 1);
|
||||
assert.equal(execFn.mock.calls[0].arguments[0], "gpg");
|
||||
assert.deepEqual(execFn.mock.calls[0].arguments[1], ["--version"]);
|
||||
});
|
||||
|
||||
it("should return false when GPG is not available", async (t) => {
|
||||
const execFn = mock.fn(async () => {
|
||||
throw new Error("GPG not found");
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { isGpgAvailable } = await import("../gpg-verification.js?test=gpg-unavailable");
|
||||
|
||||
const result = await isGpgAvailable();
|
||||
|
||||
assert.equal(result, false);
|
||||
});
|
||||
});
|
||||
|
||||
describe("runGpgVerify", () => {
|
||||
it("should successfully verify valid signature", async (t) => {
|
||||
const execCalls = [];
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { runGpgVerify } = await import("../gpg-verification.js?test=verify-success");
|
||||
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await runGpgVerify(zipPath, signaturePath, gpgHome);
|
||||
|
||||
assert.equal(execCalls.length, 1);
|
||||
assert.equal(execCalls[0].command, "gpg");
|
||||
assert.ok(execCalls[0].args.includes("--verify"));
|
||||
assert.ok(execCalls[0].args.includes(signaturePath));
|
||||
assert.ok(execCalls[0].args.includes(zipPath));
|
||||
});
|
||||
|
||||
it("should throw error when signature verification fails", async (t) => {
|
||||
const execFn = mock.fn(async () => {
|
||||
throw new Error("BAD signature");
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { runGpgVerify } = await import("../gpg-verification.js?test=verify-fail");
|
||||
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await assert.rejects(
|
||||
() => runGpgVerify(zipPath, signaturePath, gpgHome),
|
||||
{
|
||||
message: /GPG signature verification failed - file may be corrupted or tampered/
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
it("should convert Windows paths for GPG", async (t) => {
|
||||
const execCalls = [];
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { runGpgVerify } = await import("../gpg-verification.js?test=verify-windows");
|
||||
|
||||
const originalPlatform = process.platform;
|
||||
Object.defineProperty(process, "platform", {
|
||||
value: "win32",
|
||||
writable: true,
|
||||
configurable: true,
|
||||
});
|
||||
|
||||
try {
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const zipPath = String.raw`C:\temp\scanner.zip`;
|
||||
const signaturePath = String.raw`C:\temp\scanner.zip.asc`;
|
||||
|
||||
await runGpgVerify(zipPath, signaturePath, gpgHome);
|
||||
|
||||
// Verify paths were converted to Unix format
|
||||
const args = execCalls[0].args;
|
||||
const homeDirIndex = args.indexOf("--homedir");
|
||||
const zipIndex = args.indexOf("--verify") + 1;
|
||||
|
||||
// Check that Windows paths are converted (should start with /c/ instead of C:\)
|
||||
assert.ok(!args[homeDirIndex + 1].includes("\\"));
|
||||
assert.ok(!args[zipIndex].includes("\\"));
|
||||
assert.ok(!args[zipIndex + 1].includes("\\"));
|
||||
} finally {
|
||||
Object.defineProperty(process, "platform", {
|
||||
value: originalPlatform,
|
||||
writable: true,
|
||||
configurable: true,
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("verifySignature", () => {
|
||||
it("should successfully verify signature with GPG available", async (t) => {
|
||||
const execCalls = [];
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=full-verify-success");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await verifySignature(zipPath, signaturePath);
|
||||
|
||||
assert.equal(execCalls.length, 3);
|
||||
assert.deepEqual(execCalls[0].args, ["--version"]);
|
||||
assert.ok(execCalls[1].args.includes("--recv-keys"));
|
||||
assert.ok(execCalls[2].args.includes("--verify"));
|
||||
});
|
||||
|
||||
it("should throw error when GPG is not available", async (t) => {
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
if (args.includes("--version")) {
|
||||
throw new Error("GPG not found");
|
||||
}
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=no-gpg");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await assert.rejects(
|
||||
() => verifySignature(zipPath, signaturePath),
|
||||
{
|
||||
message: /GPG is not available/
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
it("should throw error when signature verification fails", async (t) => {
|
||||
let callCount = 0;
|
||||
const execFn = mock.fn(async () => {
|
||||
callCount++;
|
||||
// First call: gpg --version (success)
|
||||
if (callCount === 1) {
|
||||
return 0;
|
||||
}
|
||||
// Second call: recv-keys (success)
|
||||
if (callCount === 2) {
|
||||
return 0;
|
||||
}
|
||||
// Third call: verify (failure - bad signature)
|
||||
throw new Error("BAD signature from 679F1EE92B19609DE816FDE81DB198F93525EC1A");
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=bad-signature");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await assert.rejects(
|
||||
() => verifySignature(zipPath, signaturePath),
|
||||
{
|
||||
message: /GPG signature verification failed - file may be corrupted or tampered/
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
it("should cleanup GPG home directory even on failure", async (t) => {
|
||||
let createdGpgHome;
|
||||
let callCount = 0;
|
||||
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
callCount++;
|
||||
// First call: gpg --version (success)
|
||||
if (callCount === 1) {
|
||||
return 0;
|
||||
}
|
||||
// Second call: recv-keys (success)
|
||||
if (callCount === 2) {
|
||||
// Capture the GPG home directory from the args
|
||||
const homeDirIndex = args.indexOf("--homedir");
|
||||
if (homeDirIndex !== -1) {
|
||||
createdGpgHome = args[homeDirIndex + 1];
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
// Third call: verify (failure)
|
||||
throw new Error("BAD signature");
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=cleanup-on-fail");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await assert.rejects(
|
||||
() => verifySignature(zipPath, signaturePath),
|
||||
{
|
||||
message: /GPG signature verification failed/
|
||||
}
|
||||
);
|
||||
|
||||
assert.ok(!fs.existsSync(createdGpgHome), "GPG home should have been deleted after failure");
|
||||
});
|
||||
|
||||
it("should use custom keyserver and fingerprint when provided", async (t) => {
|
||||
const execCalls = [];
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=custom-options");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
const customKeyserver = "hkps://custom.keyserver.example.com";
|
||||
const customFingerprint = "ABCD1234ABCD1234ABCD1234ABCD1234ABCD1234";
|
||||
|
||||
await verifySignature(zipPath, signaturePath, {
|
||||
keyserver: customKeyserver,
|
||||
keyFingerprint: customFingerprint,
|
||||
});
|
||||
|
||||
const recvKeysCall = execCalls.find(call => call.args.includes("--recv-keys"));
|
||||
assert.ok(recvKeysCall, "Should have recv-keys call");
|
||||
assert.ok(recvKeysCall.args.includes(customKeyserver));
|
||||
assert.ok(recvKeysCall.args.includes(customFingerprint));
|
||||
});
|
||||
|
||||
it("should use default keyserver and fingerprint when not provided", async (t) => {
|
||||
const execCalls = [];
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { verifySignature } = await import("../gpg-verification.js?test=default-options");
|
||||
|
||||
const zipPath = "/tmp/scanner.zip";
|
||||
const signaturePath = "/tmp/scanner.zip.asc";
|
||||
|
||||
await verifySignature(zipPath, signaturePath);
|
||||
|
||||
const recvKeysCall = execCalls.find(call => call.args.includes("--recv-keys"));
|
||||
assert.ok(recvKeysCall, "Should have recv-keys call");
|
||||
assert.ok(recvKeysCall.args.includes("hkps://keyserver.ubuntu.com"));
|
||||
assert.ok(recvKeysCall.args.includes("679F1EE92B19609DE816FDE81DB198F93525EC1A"));
|
||||
});
|
||||
});
|
||||
|
||||
describe("importSonarSourceKey", () => {
|
||||
it("should use fallback keyserver when primary fails", async (t) => {
|
||||
const execCalls = [];
|
||||
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
|
||||
const argsString = args.join(" ");
|
||||
if (argsString.includes("invalid.keyserver.that.does.not.exist.example.com")) {
|
||||
throw new Error("Failed to import key from invalid keyserver");
|
||||
}
|
||||
if (argsString.includes("keys.openpgp.org")) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { importSonarSourceKey } = await import("../gpg-verification.js?test=fallback");
|
||||
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const invalidKeyserver = "hkps://invalid.keyserver.that.does.not.exist.example.com";
|
||||
const keyFingerprint = "679F1EE92B19609DE816FDE81DB198F93525EC1A";
|
||||
|
||||
await importSonarSourceKey(gpgHome, keyFingerprint, invalidKeyserver);
|
||||
|
||||
assert.equal(execCalls.length, 2, "Should attempt two keyservers");
|
||||
|
||||
// Verify primary keyserver call
|
||||
assert.equal(execCalls[0].command, "gpg");
|
||||
assert.ok(execCalls[0].args.includes(invalidKeyserver));
|
||||
assert.ok(execCalls[0].args.includes(keyFingerprint));
|
||||
|
||||
// Verify fallback keyserver call
|
||||
assert.equal(execCalls[1].command, "gpg");
|
||||
assert.ok(execCalls[1].args.includes("hkps://keys.openpgp.org"));
|
||||
assert.ok(execCalls[1].args.includes(keyFingerprint));
|
||||
});
|
||||
|
||||
it("should succeed with valid keyserver", async (t) => {
|
||||
const execCalls = [];
|
||||
|
||||
const execFn = mock.fn(async (command, args) => {
|
||||
execCalls.push({ command, args });
|
||||
return 0;
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { importSonarSourceKey } = await import("../gpg-verification.js?test=valid");
|
||||
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const keyserver = "hkps://keyserver.ubuntu.com";
|
||||
const keyFingerprint = "679F1EE92B19609DE816FDE81DB198F93525EC1A";
|
||||
|
||||
await importSonarSourceKey(gpgHome, keyFingerprint, keyserver);
|
||||
|
||||
assert.equal(execCalls.length, 1);
|
||||
assert.equal(execCalls[0].command, "gpg");
|
||||
assert.ok(execCalls[0].args.includes(keyserver));
|
||||
assert.ok(execCalls[0].args.includes(keyFingerprint));
|
||||
assert.ok(execCalls[0].args.includes("--recv-keys"));
|
||||
});
|
||||
|
||||
it("should throw error when both keyservers fail", async (t) => {
|
||||
const execFn = mock.fn(async () => {
|
||||
throw new Error("Connection failed");
|
||||
});
|
||||
|
||||
t.mock.module("@actions/exec", {
|
||||
namedExports: {
|
||||
exec: execFn,
|
||||
},
|
||||
});
|
||||
|
||||
const { importSonarSourceKey } = await import("../gpg-verification.js?test=both-fail");
|
||||
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
const keyserver = "hkps://keyserver.ubuntu.com";
|
||||
const keyFingerprint = "679F1EE92B19609DE816FDE81DB198F93525EC1A";
|
||||
|
||||
await assert.rejects(
|
||||
() => importSonarSourceKey(gpgHome, keyFingerprint, keyserver),
|
||||
{
|
||||
message: /Failed to import SonarSource public key from all keyservers/
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,228 @@
|
||||
/*
|
||||
* sonarqube-scan-action
|
||||
* Copyright (C) 2025 SonarSource SA
|
||||
* mailto:info AT sonarsource DOT com
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
import { describe, it, afterEach } from "node:test";
|
||||
import assert from "node:assert/strict";
|
||||
import * as fs from "node:fs";
|
||||
import * as os from "node:os";
|
||||
import * as path from "node:path";
|
||||
import {
|
||||
getGpgCommand,
|
||||
setupGpgHome,
|
||||
cleanupGpgHome,
|
||||
convertToUnixPath,
|
||||
} from "../gpg-verification.js";
|
||||
|
||||
/**
|
||||
* Helper function to temporarily mock process.platform for a test.
|
||||
* Automatically restores the original platform value after the test.
|
||||
* @param {string} platform - The platform to mock (e.g., "win32", "linux")
|
||||
* @param {Function} testFn - The test function to run with the mocked platform
|
||||
*/
|
||||
function withMockedPlatform(platform, testFn) {
|
||||
const originalPlatform = process.platform;
|
||||
Object.defineProperty(process, "platform", {
|
||||
value: platform,
|
||||
writable: true,
|
||||
configurable: true,
|
||||
});
|
||||
|
||||
try {
|
||||
testFn();
|
||||
} finally {
|
||||
Object.defineProperty(process, "platform", {
|
||||
value: originalPlatform,
|
||||
writable: true,
|
||||
configurable: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to create a GPG home directory and track it for cleanup.
|
||||
* @param {Array} tempDirs - Array to track temporary directories for cleanup
|
||||
* @returns {string} The path to the created GPG home directory
|
||||
*/
|
||||
function createTrackedGpgHome(tempDirs) {
|
||||
const gpgHome = setupGpgHome();
|
||||
tempDirs.push(gpgHome);
|
||||
assert.ok(fs.existsSync(gpgHome));
|
||||
return gpgHome;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to temporarily mock environment variables for a test.
|
||||
* Automatically restores or deletes environment variables after the test.
|
||||
* @param {Object} envVars - Object with environment variable names as keys and values as values
|
||||
* @param {Function} testFn - The async test function to run with the mocked environment
|
||||
*/
|
||||
async function withMockedEnv(envVars, testFn) {
|
||||
const originalValues = {};
|
||||
|
||||
// Save original values and set new ones
|
||||
for (const [key, value] of Object.entries(envVars)) {
|
||||
originalValues[key] = process.env[key];
|
||||
process.env[key] = value;
|
||||
}
|
||||
|
||||
try {
|
||||
await testFn();
|
||||
} finally {
|
||||
// Restore or delete environment variables
|
||||
for (const [key, originalValue] of Object.entries(originalValues)) {
|
||||
if (originalValue === undefined) {
|
||||
delete process.env[key];
|
||||
} else {
|
||||
process.env[key] = originalValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to create a temporary directory.
|
||||
* @returns {string} The path to the created temporary directory
|
||||
*/
|
||||
function createTempDir() {
|
||||
const tempDir = path.join(os.tmpdir(), `test-runner-temp-${Date.now()}`);
|
||||
fs.mkdirSync(tempDir, { recursive: true });
|
||||
return tempDir;
|
||||
}
|
||||
|
||||
describe("gpg-verification", () => {
|
||||
let tempDirs = [];
|
||||
|
||||
afterEach(() => {
|
||||
// Clean up any temporary directories created during tests
|
||||
tempDirs.forEach((dir) => {
|
||||
try {
|
||||
if (fs.existsSync(dir)) {
|
||||
fs.rmSync(dir, { recursive: true, force: true });
|
||||
}
|
||||
} catch (error) {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
tempDirs = [];
|
||||
});
|
||||
|
||||
describe("getGpgCommand", () => {
|
||||
it("should return 'gpg' as the command", () => {
|
||||
const command = getGpgCommand();
|
||||
assert.equal(command, "gpg");
|
||||
});
|
||||
});
|
||||
|
||||
describe("convertToUnixPath", () => {
|
||||
it("should convert Windows path with drive letter to Unix path", () => {
|
||||
withMockedPlatform("win32", () => {
|
||||
assert.equal(
|
||||
convertToUnixPath(String.raw`C:\a\_temp\gpg-home`),
|
||||
"/c/a/_temp/gpg-home"
|
||||
);
|
||||
assert.equal(
|
||||
convertToUnixPath(String.raw`D:\Users\test\file.txt`),
|
||||
"/d/Users/test/file.txt"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
it("should handle mixed slashes on Windows", () => {
|
||||
withMockedPlatform("win32", () => {
|
||||
assert.equal(
|
||||
convertToUnixPath(String.raw`C:\a/_temp\gpg-home`),
|
||||
"/c/a/_temp/gpg-home"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
it("should return path unchanged on non-Windows platforms", () => {
|
||||
withMockedPlatform("linux", () => {
|
||||
assert.equal(
|
||||
convertToUnixPath("/tmp/gpg-home"),
|
||||
"/tmp/gpg-home"
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe("setupGpgHome", () => {
|
||||
it("should create a temporary GPG home directory", () => {
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
|
||||
assert.ok(fs.statSync(gpgHome).isDirectory());
|
||||
|
||||
// Check directory permissions (on Unix systems)
|
||||
if (process.platform !== "win32") {
|
||||
const stats = fs.statSync(gpgHome);
|
||||
const mode = stats.mode & Number.parseInt("777", 8);
|
||||
assert.equal(mode, Number.parseInt("700", 8));
|
||||
}
|
||||
});
|
||||
|
||||
it("should create unique directories on multiple calls", async () => {
|
||||
const gpgHome1 = createTrackedGpgHome(tempDirs);
|
||||
// Small delay to ensure different timestamps
|
||||
await new Promise((resolve) => setTimeout(resolve, 10));
|
||||
const gpgHome2 = createTrackedGpgHome(tempDirs);
|
||||
|
||||
assert.notEqual(gpgHome1, gpgHome2);
|
||||
});
|
||||
|
||||
it("should use RUNNER_TEMP if available", async () => {
|
||||
const testTemp = createTempDir();
|
||||
|
||||
await withMockedEnv({ RUNNER_TEMP: testTemp }, async () => {
|
||||
const gpgHome = createTrackedGpgHome(tempDirs);
|
||||
assert.ok(gpgHome.startsWith(testTemp));
|
||||
});
|
||||
|
||||
if (fs.existsSync(testTemp)) {
|
||||
fs.rmSync(testTemp, { recursive: true, force: true });
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe("cleanupGpgHome", () => {
|
||||
it("should remove the GPG home directory", () => {
|
||||
const gpgHome = setupGpgHome();
|
||||
assert.ok(fs.existsSync(gpgHome));
|
||||
|
||||
cleanupGpgHome(gpgHome);
|
||||
assert.ok(!fs.existsSync(gpgHome));
|
||||
});
|
||||
|
||||
it("should not throw if directory does not exist", () => {
|
||||
const nonExistentDir = path.join(os.tmpdir(), `non-existent-${Date.now()}`);
|
||||
assert.doesNotThrow(() => {
|
||||
cleanupGpgHome(nonExistentDir);
|
||||
});
|
||||
});
|
||||
|
||||
it("should handle cleanup errors gracefully", () => {
|
||||
// This test verifies the function doesn't throw on permission errors
|
||||
// In practice, permission errors are rare in test environments
|
||||
assert.doesNotThrow(() => {
|
||||
cleanupGpgHome("/invalid/path/that/does/not/exist");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user