nix-config/tests/lib.ts

56 lines
1.5 KiB
TypeScript
Raw Normal View History

import { assert } from "https://deno.land/std@0.200.0/assert/mod.ts";
import { walk } from "https://deno.land/std@0.200.0/fs/walk.ts";
async function getFilesInDirectory(directory: string): Promise<string[]> {
const files = [];
for await (const walkEntry of walk(directory)) {
if (walkEntry.isFile) {
2023-08-31 17:51:44 +02:00
if (walkEntry.path.includes("default.nix")) continue;
files.push(walkEntry.path);
}
}
2023-08-31 17:51:44 +02:00
return files;
}
async function getImportsInFile(file: string): Promise<string[]> {
const text = await Deno.readTextFile(file);
2023-08-31 17:51:44 +02:00
const lines = text.split("\n");
const imports = [];
for (let i = 0; i < lines.length; i++) {
if (lines[i].includes("./")) {
2023-08-31 17:51:44 +02:00
imports.push(
file.split("./")[1].split("/")[0] + "/" +
lines[i].split("./")[1].split(" ")[0],
);
}
}
2023-08-31 17:51:44 +02:00
return imports;
}
/** Assets that all files in a given directory are imported in default.nix.
*
* @param directory The directory to assert.
* @param excludes Files to exclude from assertion. Useful for files imported elsewhere.
*/
export async function assertAllModulesInDirectory(
directory: string,
excludes?: string[],
) {
2023-08-31 17:51:44 +02:00
const files = await getFilesInDirectory(`./${directory}`);
const imports = await getImportsInFile(`./${directory}/default.nix`);
for (const file of files) {
const basename = file.split(`${directory}/`)[1];
if (excludes && excludes.includes(basename)) {
continue;
}
2023-08-31 17:51:44 +02:00
assert(imports.includes(file));
}
}