mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import * as githubUtils from "@actions/github/lib/utils";
|
|
import test from "ava";
|
|
import * as sinon from "sinon";
|
|
|
|
import * as actionsUtil from "./actions-util";
|
|
import { getApiClient } from "./api-client";
|
|
import { setupTests } from "./testing-utils";
|
|
import * as util from "./util";
|
|
|
|
setupTests(test);
|
|
|
|
let pluginStub: sinon.SinonStub;
|
|
let githubStub: sinon.SinonStub;
|
|
|
|
test.beforeEach(() => {
|
|
pluginStub = sinon.stub(githubUtils.GitHub, "plugin");
|
|
githubStub = sinon.stub();
|
|
pluginStub.returns(githubStub);
|
|
util.initializeEnvironment(actionsUtil.getActionVersion());
|
|
});
|
|
|
|
test("getApiClient", async (t) => {
|
|
sinon.stub(actionsUtil, "getRequiredInput").withArgs("token").returns("xyz");
|
|
const requiredEnvParamStub = sinon.stub(util, "getRequiredEnvParam");
|
|
requiredEnvParamStub
|
|
.withArgs("GITHUB_SERVER_URL")
|
|
.returns("http://github.localhost");
|
|
requiredEnvParamStub
|
|
.withArgs("GITHUB_API_URL")
|
|
.returns("http://api.github.localhost");
|
|
|
|
getApiClient();
|
|
|
|
t.assert(
|
|
githubStub.calledOnceWithExactly({
|
|
auth: "token xyz",
|
|
baseUrl: "http://api.github.localhost",
|
|
log: sinon.match.any,
|
|
userAgent: `CodeQL-Action/${actionsUtil.getActionVersion()}`,
|
|
})
|
|
);
|
|
});
|