Fixed unit test.

This commit is contained in:
Daan Vanden Bosch 2020-09-29 16:14:57 +02:00
parent 93f6b41c00
commit c633176925
3 changed files with 21 additions and 5 deletions

View File

@ -94,7 +94,7 @@ function walk_qst_files_internal(
}
} else if (stat.isDirectory()) {
for (const file of readdirSync(path)) {
walk_qst_files_internal(f, `${path}/${file}`, name, exclude);
walk_qst_files_internal(f, `${path}/${file}`, file, exclude);
}
}
}

View File

@ -23,11 +23,27 @@ test("Parse a GC quest.", () => {
expect(qst!.files[1].quest_name).toBe("PSO/Lost HEAT SWORD");
});
// TODO: some quests aren't written correctly.
const EXCLUDED = [
"/ep2/shop/gallon.qst",
"/princ/ep1/",
"/princ/ep4/",
"/solo/ep1/04.qst", // Skip because it contains every chuck twice.
"/fragmentofmemoryen.qst",
"/lost havoc vulcan.qst",
"/goodluck.qst",
];
/**
* Parse a file, convert the resulting structure to QST again and check whether the end result is equal to the original.
* Parse a file, convert the resulting structure to QST again and check whether the end result is
* equal to the original.
*/
test("parse_qst and write_qst", () => {
walk_qst_files((_file_path, _file_name, file_content) => {
walk_qst_files((file_path, file_name, file_content) => {
if (EXCLUDED.some(e => file_path.includes(e))) {
return;
}
test(`parse_qst and write_qst ${file_name}`, () => {
const orig_qst = new BufferCursor(file_content, Endianness.Little);
const orig_quest = unwrap(parse_qst(orig_qst));

View File

@ -61,7 +61,7 @@ export function next_animation_frame(): Promise<void> {
*/
export function walk_qst_files(
f: (path: string, file_name: string, contents: Buffer) => void,
dir: string,
dir?: string,
): void {
walk_quests.walk_qst_files(f, dir);
}