test: add parameter options to usage of type ExecFileFn

This commit is contained in:
Jörg Krzeslak 2025-07-24 18:38:21 +02:00
parent c0f0dc5192
commit 08a833f1cf
22 changed files with 71 additions and 41 deletions

View file

@ -121,7 +121,7 @@ export async function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("assimp", ["export", filePath, targetPath], (error, stdout, stderr) => {
execFile("assimp", ["export", filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -67,7 +67,7 @@ export async function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("ebook-convert", [filePath, targetPath], (error, stdout, stderr) => {
execFile("ebook-convert", [filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -30,20 +30,25 @@ export function convert(
}
return new Promise((resolve, reject) => {
execFile("dvisvgm", [...inputArgs, filePath, "-o", targetPath], (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}
execFile(
"dvisvgm",
[...inputArgs, filePath, "-o", targetPath],
options,
(error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}
if (stdout) {
console.log(`stdout: ${stdout}`);
}
if (stdout) {
console.log(`stdout: ${stdout}`);
}
if (stderr) {
console.error(`stderr: ${stderr}`);
}
if (stderr) {
console.error(`stderr: ${stderr}`);
}
resolve("Done");
});
resolve("Done");
},
);
});
}

View file

@ -735,6 +735,7 @@ export async function convert(
execFile(
"ffmpeg",
[...ffmpegArgs, "-i", filePath, ...extraArgs, targetPath],
options,
(error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);

View file

@ -318,7 +318,7 @@ export function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("gm", ["convert", filePath, targetPath], (error, stdout, stderr) => {
execFile("gm", ["convert", filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -472,6 +472,7 @@ export function convert(
execFile(
"magick",
[...inputArgs, filePath, ...outputArgs, targetPath],
options,
(error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);

View file

@ -37,7 +37,7 @@ export function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("inkscape", [filePath, "-o", targetPath], (error, stdout, stderr) => {
execFile("inkscape", [filePath, "-o", targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -19,7 +19,7 @@ export function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("heif-convert", [filePath, targetPath], (error, stdout, stderr) => {
execFile("heif-convert", [filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -31,7 +31,7 @@ export function convert(
}
return new Promise((resolve, reject) => {
execFile(tool, [filePath, targetPath], (error, stdout, stderr) => {
execFile(tool, [filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -1,4 +1,5 @@
import { execFile } from "node:child_process";
import { execFile as execFileOriginal } from "node:child_process";
import { ExecFileFn } from "./types.ts";
export const properties = {
from: {
@ -136,8 +137,8 @@ export function convert(
fileType: string,
convertTo: string,
targetPath: string,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
options?: unknown,
execFile: ExecFileFn = execFileOriginal,
): Promise<string> {
const outputPath = targetPath.split("/").slice(0, -1).join("/").replace("./", "") ?? targetPath;
@ -157,7 +158,7 @@ export function convert(
}
return new Promise((resolve, reject) => {
execFile("soffice", args, (error, stdout, stderr) => {
execFile("soffice", args, options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -1,4 +1,5 @@
import { execFile } from "node:child_process";
import { execFile as execFileOriginal } from "node:child_process";
import { ExecFileFn } from "./types.ts";
export const properties = {
from: {
@ -124,8 +125,8 @@ export function convert(
fileType: string,
convertTo: string,
targetPath: string,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
options?: unknown,
execFile: ExecFileFn = execFileOriginal,
): Promise<string> {
// set xelatex here
const xelatex = ["pdf", "latex"];
@ -143,7 +144,7 @@ export function convert(
args.push("-o", targetPath);
return new Promise((resolve, reject) => {
execFile("pandoc", args, (error, stdout, stderr) => {
execFile("pandoc", args, options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -31,20 +31,25 @@ export function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("potrace", [filePath, "-o", targetPath, "-b", convertTo], (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}
execFile(
"potrace",
[filePath, "-o", targetPath, "-b", convertTo],
options,
(error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}
if (stdout) {
console.log(`stdout: ${stdout}`);
}
if (stdout) {
console.log(`stdout: ${stdout}`);
}
if (stderr) {
console.error(`stderr: ${stderr}`);
}
if (stderr) {
console.error(`stderr: ${stderr}`);
}
resolve("Done");
});
resolve("Done");
},
);
});
}

View file

@ -19,7 +19,7 @@ export function convert(
execFile: ExecFileFn = execFileOriginal, // to make it mockable
): Promise<string> {
return new Promise((resolve, reject) => {
execFile("resvg", [filePath, targetPath], (error, stdout, stderr) => {
execFile("resvg", [filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -1,7 +1,7 @@
export type ExecFileFn = (
cmd: string,
args: string[],
options: import("child_process").ExecFileOptions | undefined,
options: import("child_process").ExecFileOptions | unknown | undefined | null,
callback: (err: Error | null, stdout: string, stderr: string) => void,
) => void;

View file

@ -120,7 +120,7 @@ export function convert(
}
return new Promise((resolve, reject) => {
execFile("vips", [action, filePath, targetPath], (error, stdout, stderr) => {
execFile("vips", [action, filePath, targetPath], options, (error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);
}

View file

@ -25,6 +25,7 @@ export function convert(
execFile(
"latexmk",
["-xelatex", "-interaction=nonstopmode", `-output-directory=${outputPath}`, filePath],
options,
(error, stdout, stderr) => {
if (error) {
reject(`error: ${error}`);