-
Notifications
You must be signed in to change notification settings - Fork 439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor test script for improved readability and modularity #1956
base: main
Are you sure you want to change the base?
Conversation
Thanks for the PR! This section of the codebase is owned by @saschanaz - if they write a comment saying "LGTM" then it will be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First of all can you keep the existing function style instead of moving to const? A style change like that should be done with a good consensus and should be done for all files for consistency. And I don't think we have consensus.
Sure |
Done @saschanaz |
src/test.ts
Outdated
function normalizeLineEndings(text: string): string { | ||
return text.replace(/\r\n?/g, "\n"); | ||
function normalizeLineEndings(text: string) { | ||
text.replace(/\r\n?/g, "\n"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return?
src/test.ts
Outdated
try { | ||
outputFiles = fs.readdirSync(outputFolder); | ||
return normalizeLineEndings(fs.readFileSync(filePath, "utf-8")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already stat the file before calling this and thus doesn't expect any error here. Thus we should skip try-catch here to see actual failures if happens.
src/test.ts
Outdated
const childBaselineFolder = new URL(`${file}/`, baselineFolder); | ||
const childOutputFolder = new URL(`${file}/`, outputFolder); | ||
if (!compareToBaselines(childBaselineFolder, childOutputFolder)) { | ||
if (fs.existsSync(baselinePath) || fs.existsSync(outputPath)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not same as detecting directory?
src/test.ts
Outdated
} | ||
} | ||
return true; | ||
} | ||
|
||
function compileGeneratedFiles(lib: string, ...files: string[]) { | ||
function compileGeneratedFiles(lib: string[] | string, ...files: string[]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But is lib
ever an array here?
src/test.ts
Outdated
console.error(e.stdout.toString()); | ||
console.error(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Skipping this would hide the actual error which would make debugging harder.
I have fixed them @saschanaz |
Hello @saschanaz |
This PR refactors the test script to enhance maintainability, readability, and efficiency.
Changes:
getFiles
,readFileContent
) to reduce redundancy.compileSets
array to streamline and organize compilation tasks dynamically.Benefits: