2020-05-04 20:28:01 +03:00
|
|
|
"use strict";
|
|
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
};
|
|
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
var result = {};
|
|
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
|
|
result["default"] = mod;
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const ava_1 = __importDefault(require("ava"));
|
|
|
|
const fs = __importStar(require("fs"));
|
2020-06-22 18:17:25 +03:00
|
|
|
const os = __importStar(require("os"));
|
2020-09-01 16:13:10 +03:00
|
|
|
const logging_1 = require("./logging");
|
2020-06-23 15:24:41 +03:00
|
|
|
const testing_utils_1 = require("./testing-utils");
|
2020-05-04 20:28:01 +03:00
|
|
|
const util = __importStar(require("./util"));
|
2020-07-06 18:04:02 +03:00
|
|
|
testing_utils_1.setupTests(ava_1.default);
|
2020-05-04 20:28:01 +03:00
|
|
|
ava_1.default('getToolNames', t => {
|
|
|
|
const input = fs.readFileSync(__dirname + '/../src/testdata/tool-names.sarif', 'utf8');
|
|
|
|
const toolNames = util.getToolNames(input);
|
|
|
|
t.deepEqual(toolNames, ["CodeQL command-line toolchain", "ESLint"]);
|
|
|
|
});
|
2020-06-22 18:17:25 +03:00
|
|
|
ava_1.default('getMemoryFlag() should return the correct --ram flag', t => {
|
|
|
|
const totalMem = Math.floor(os.totalmem() / (1024 * 1024));
|
|
|
|
const tests = {
|
|
|
|
"": `--ram=${totalMem - 256}`,
|
|
|
|
"512": "--ram=512",
|
|
|
|
};
|
|
|
|
for (const [input, expectedFlag] of Object.entries(tests)) {
|
2020-09-01 16:13:10 +03:00
|
|
|
const flag = util.getMemoryFlag(input);
|
2020-06-22 18:17:25 +03:00
|
|
|
t.deepEqual(flag, expectedFlag);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ava_1.default('getMemoryFlag() throws if the ram input is < 0 or NaN', t => {
|
|
|
|
for (const input of ["-1", "hello!"]) {
|
2020-09-01 16:13:10 +03:00
|
|
|
t.throws(() => util.getMemoryFlag(input));
|
2020-06-22 18:17:25 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
ava_1.default('getThreadsFlag() should return the correct --threads flag', t => {
|
|
|
|
const numCpus = os.cpus().length;
|
|
|
|
const tests = {
|
|
|
|
"0": "--threads=0",
|
|
|
|
"1": "--threads=1",
|
2020-06-22 22:39:09 +03:00
|
|
|
[`${numCpus + 1}`]: `--threads=${numCpus}`,
|
|
|
|
[`${-numCpus - 1}`]: `--threads=${-numCpus}`
|
2020-06-22 18:17:25 +03:00
|
|
|
};
|
|
|
|
for (const [input, expectedFlag] of Object.entries(tests)) {
|
2020-09-01 16:13:10 +03:00
|
|
|
const flag = util.getThreadsFlag(input, logging_1.getRunnerLogger(true));
|
2020-06-22 18:17:25 +03:00
|
|
|
t.deepEqual(flag, expectedFlag);
|
|
|
|
}
|
|
|
|
});
|
2020-06-26 18:01:59 +03:00
|
|
|
ava_1.default('getThreadsFlag() throws if the threads input is not an integer', t => {
|
2020-09-01 16:13:10 +03:00
|
|
|
t.throws(() => util.getThreadsFlag("hello!", logging_1.getRunnerLogger(true)));
|
2020-06-22 18:17:25 +03:00
|
|
|
});
|
2020-06-26 13:44:17 +03:00
|
|
|
ava_1.default('getRef() throws on the empty string', t => {
|
2020-06-26 17:11:00 +03:00
|
|
|
process.env["GITHUB_REF"] = "";
|
|
|
|
t.throws(util.getRef);
|
2020-06-26 13:44:17 +03:00
|
|
|
});
|
2020-08-05 00:35:20 +03:00
|
|
|
ava_1.default('isLocalRun() runs correctly', t => {
|
|
|
|
const origLocalRun = process.env.CODEQL_LOCAL_RUN;
|
|
|
|
process.env.CODEQL_LOCAL_RUN = '';
|
|
|
|
t.assert(!util.isLocalRun());
|
|
|
|
process.env.CODEQL_LOCAL_RUN = 'false';
|
|
|
|
t.assert(!util.isLocalRun());
|
|
|
|
process.env.CODEQL_LOCAL_RUN = '0';
|
|
|
|
t.assert(!util.isLocalRun());
|
|
|
|
process.env.CODEQL_LOCAL_RUN = 'true';
|
|
|
|
t.assert(util.isLocalRun());
|
|
|
|
process.env.CODEQL_LOCAL_RUN = 'hucairz';
|
|
|
|
t.assert(util.isLocalRun());
|
|
|
|
process.env.CODEQL_LOCAL_RUN = origLocalRun;
|
|
|
|
});
|
|
|
|
ava_1.default('prepareEnvironment() when a local run', t => {
|
|
|
|
const origLocalRun = process.env.CODEQL_LOCAL_RUN;
|
|
|
|
process.env.CODEQL_LOCAL_RUN = 'false';
|
|
|
|
process.env.GITHUB_JOB = 'YYY';
|
|
|
|
util.prepareLocalRunEnvironment();
|
|
|
|
// unchanged
|
|
|
|
t.deepEqual(process.env.GITHUB_JOB, 'YYY');
|
|
|
|
process.env.CODEQL_LOCAL_RUN = 'true';
|
|
|
|
util.prepareLocalRunEnvironment();
|
|
|
|
// unchanged
|
|
|
|
t.deepEqual(process.env.GITHUB_JOB, 'YYY');
|
|
|
|
process.env.GITHUB_JOB = '';
|
|
|
|
util.prepareLocalRunEnvironment();
|
|
|
|
// updated
|
|
|
|
t.deepEqual(process.env.GITHUB_JOB, 'UNKNOWN-JOB');
|
|
|
|
process.env.CODEQL_LOCAL_RUN = origLocalRun;
|
|
|
|
});
|
2020-08-10 10:25:14 +03:00
|
|
|
ava_1.default('getExtraOptionsEnvParam() succeeds on valid JSON with invalid options (for now)', t => {
|
|
|
|
const origExtraOptions = process.env.CODEQL_ACTION_EXTRA_OPTIONS;
|
|
|
|
const options = { foo: 42 };
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS = JSON.stringify(options);
|
|
|
|
t.deepEqual(util.getExtraOptionsEnvParam(), options);
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS = origExtraOptions;
|
|
|
|
});
|
|
|
|
ava_1.default('getExtraOptionsEnvParam() succeeds on valid options', t => {
|
|
|
|
const origExtraOptions = process.env.CODEQL_ACTION_EXTRA_OPTIONS;
|
|
|
|
const options = { database: { init: ["--debug"] } };
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS =
|
|
|
|
JSON.stringify(options);
|
|
|
|
t.deepEqual(util.getExtraOptionsEnvParam(), options);
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS = origExtraOptions;
|
|
|
|
});
|
|
|
|
ava_1.default('getExtraOptionsEnvParam() fails on invalid JSON', t => {
|
|
|
|
const origExtraOptions = process.env.CODEQL_ACTION_EXTRA_OPTIONS;
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS = "{{invalid-json}}";
|
|
|
|
t.throws(util.getExtraOptionsEnvParam);
|
|
|
|
process.env.CODEQL_ACTION_EXTRA_OPTIONS = origExtraOptions;
|
|
|
|
});
|
2020-05-13 18:31:24 +03:00
|
|
|
//# sourceMappingURL=util.test.js.map
|