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/codeql.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.

Esben Sparre Andreasen
use ExtraOptions in codeql commands
97 lines (68 sloc)
2.86 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 toolcache from '@actions/tool-cache'; | |
import test from 'ava'; | |
import nock from 'nock'; | |
import * as path from 'path'; | |
import * as codeql from './codeql'; | |
import {setupTests} from './testing-utils'; | |
import * as util from './util'; | |
setupTests(test); | |
test('download codeql bundle cache', async t => { | |
await util.withTmpDir(async tmpDir => { | |
process.env['GITHUB_WORKSPACE'] = tmpDir; | |
process.env['RUNNER_TEMP'] = path.join(tmpDir, 'temp'); | |
process.env['RUNNER_TOOL_CACHE'] = path.join(tmpDir, 'cache'); | |
const versions = ['20200601', '20200610']; | |
for (let i = 0; i < versions.length; i++) { | |
const version = versions[i]; | |
nock('https://example.com') | |
.get(`/download/codeql-bundle-${version}/codeql-bundle.tar.gz`) | |
.replyWithFile(200, path.join(__dirname, `/../src/testdata/codeql-bundle.tar.gz`)); | |
process.env['INPUT_TOOLS'] = `https://example.com/download/codeql-bundle-${version}/codeql-bundle.tar.gz`; | |
await codeql.setupCodeQL(); | |
t.assert(toolcache.find('CodeQL', `0.0.0-${version}`)); | |
} | |
const cachedVersions = toolcache.findAllVersions('CodeQL'); | |
t.is(cachedVersions.length, 2); | |
}); | |
}); | |
test('parse codeql bundle url version', t => { | |
const tests = { | |
'20200601': '0.0.0-20200601', | |
'20200601.0': '0.0.0-20200601.0', | |
'20200601.0.0': '20200601.0.0', | |
'1.2.3': '1.2.3', | |
'1.2.3-alpha': '1.2.3-alpha', | |
'1.2.3-beta.1': '1.2.3-beta.1', | |
}; | |
for (const [version, expectedVersion] of Object.entries(tests)) { | |
const url = `https://github.com/.../codeql-bundle-${version}/...`; | |
try { | |
const parsedVersion = codeql.getCodeQLURLVersion(url); | |
t.deepEqual(parsedVersion, expectedVersion); | |
} catch (e) { | |
t.fail(e.message); | |
} | |
} | |
}); | |
test('getExtraOptions works for explicit paths', t => { | |
t.deepEqual(codeql.getExtraOptions({}, ['foo'], []), []); | |
t.deepEqual(codeql.getExtraOptions({foo: [42]}, ['foo'], []), ['42']); | |
t.deepEqual(codeql.getExtraOptions({foo: {bar: [42]}}, ['foo', 'bar'], []), ['42']); | |
}); | |
test('getExtraOptions works for wildcards', t => { | |
t.deepEqual(codeql.getExtraOptions({'*': [42]}, ['foo'], []), ['42']); | |
}); | |
test('getExtraOptions works for wildcards and explicit paths', t => { | |
let o1 = {'*': [42], foo: [87]}; | |
t.deepEqual(codeql.getExtraOptions(o1, ['foo'], []), ['42', '87']); | |
let o2 = {'*': [42], foo: [87]}; | |
t.deepEqual(codeql.getExtraOptions(o2, ['foo', 'bar'], []), ['42']); | |
let o3 = {'*': [42], foo: { '*': [87], bar: [99]}}; | |
let p = ['foo', 'bar']; | |
t.deepEqual(codeql.getExtraOptions(o3, p, []), ['42', '87', '99']); | |
}); | |
test('getExtraOptions throws for bad content', t => { | |
t.throws(() => codeql.getExtraOptions({'*': 42}, ['foo'], [])); | |
t.throws(() => codeql.getExtraOptions({foo: 87}, ['foo'], [])); | |
t.throws(() => codeql.getExtraOptions({'*': [42], foo: { '*': 87, bar: [99]}}, ['foo', 'bar'], [])); | |
}); |