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/count-loc.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.
112 lines (95 sloc)
2.54 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 path from "path"; | |
import test from "ava"; | |
import { countLoc } from "./count-loc"; | |
import { Language } from "./languages"; | |
import { getRunnerLogger } from "./logging"; | |
import { setupTests } from "./testing-utils"; | |
setupTests(test); | |
test("ensure lines of code works for cpp and js", async (t) => { | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
[], | |
[], | |
[Language.cpp, Language.javascript], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
cpp: 6, | |
javascript: 9, | |
}); | |
}); | |
test("ensure lines of code works for csharp", async (t) => { | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
[], | |
[], | |
[Language.csharp], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
csharp: 10, | |
}); | |
}); | |
test("ensure lines of code can handle undefined language", async (t) => { | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
[], | |
[], | |
[Language.javascript, Language.python, "hucairz" as Language], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
javascript: 9, | |
python: 5, | |
}); | |
}); | |
test("ensure lines of code can handle empty languages", async (t) => { | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
[], | |
[], | |
[], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, {}); | |
}); | |
test("ensure lines of code can handle includes", async (t) => { | |
// note that "**" is always included. The includes are for extra | |
// directories outside the normal structure. | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
["../../src/testdata"], | |
[], | |
[Language.javascript], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
javascript: 12, | |
}); | |
}); | |
test("ensure lines of code can handle empty includes", async (t) => { | |
// note that "**" is always included. The includes are for extra | |
// directories outside the normal structure. | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
["idontexist"], | |
[], | |
[Language.javascript], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
// should get no results | |
}); | |
}); | |
test("ensure lines of code can handle exclude", async (t) => { | |
const results = await countLoc( | |
path.join(__dirname, "../tests/multi-language-repo"), | |
[], | |
["**/*.py"], | |
[Language.javascript, Language.python], | |
getRunnerLogger(true) | |
); | |
t.deepEqual(results, { | |
javascript: 9, | |
}); | |
}); |