Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/src/api-client.test.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Andrew Eisenberg
Use externalRepoAuth when getting a remote config
This allows users to specify a different token for retrieving the codeql config from a different repository. Fixes https://github.com/github/advanced-security-field/issues/185
94 lines (84 sloc)
1.83 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as githubUtils from "@actions/github/lib/utils"; | |
import test, { ExecutionContext } from "ava"; | |
import sinon from "sinon"; | |
import { getApiClient } from "./api-client"; | |
import { setupTests } from "./testing-utils"; | |
setupTests(test); | |
let githubStub: sinon.SinonStub; | |
test.beforeEach(() => { | |
githubStub = sinon.stub(githubUtils, "GitHub"); | |
}); | |
test("Get the client API", async (t) => { | |
doTest( | |
t, | |
{ | |
auth: "xyz", | |
externalRepoAuth: "abc", | |
url: "http://hucairz", | |
}, | |
undefined, | |
{ | |
auth: "token xyz", | |
baseUrl: "http://hucairz/api/v3", | |
userAgent: "CodeQL Action", | |
} | |
); | |
}); | |
test("Get the client API external", async (t) => { | |
doTest( | |
t, | |
{ | |
auth: "xyz", | |
externalRepoAuth: "abc", | |
url: "http://hucairz", | |
}, | |
{ allowExternal: true }, | |
{ | |
auth: "token abc", | |
baseUrl: "http://hucairz/api/v3", | |
userAgent: "CodeQL Action", | |
} | |
); | |
}); | |
test("Get the client API external not present", async (t) => { | |
doTest( | |
t, | |
{ | |
auth: "xyz", | |
url: "http://hucairz", | |
}, | |
{ allowExternal: true }, | |
{ | |
auth: "token xyz", | |
baseUrl: "http://hucairz/api/v3", | |
userAgent: "CodeQL Action", | |
} | |
); | |
}); | |
test("Get the client API with github url", async (t) => { | |
doTest( | |
t, | |
{ | |
auth: "xyz", | |
url: "https://github.com/some/invalid/url", | |
}, | |
undefined, | |
{ | |
auth: "token xyz", | |
baseUrl: "https://api.github.com", | |
userAgent: "CodeQL Action", | |
} | |
); | |
}); | |
function doTest( | |
t: ExecutionContext<unknown>, | |
clientArgs: any, | |
clientOptions: any, | |
expected: any | |
) { | |
getApiClient(clientArgs, clientOptions); | |
const firstCallArgs = githubStub.args[0]; | |
// log is a function, so we don't need to test for equality of it | |
delete firstCallArgs[0].log; | |
t.deepEqual(firstCallArgs, [expected]); | |
} |