mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-12-04 15:34:45 +01:00
75 lines
1.9 KiB
JavaScript
75 lines
1.9 KiB
JavaScript
|
import { join, dirname, basename, isAbsolute, resolve } from 'pathe';
|
||
|
|
||
|
class SnapshotManager {
|
||
|
constructor(options) {
|
||
|
this.options = options;
|
||
|
this.clear();
|
||
|
}
|
||
|
summary = void 0;
|
||
|
extension = ".snap";
|
||
|
clear() {
|
||
|
this.summary = emptySummary(this.options);
|
||
|
}
|
||
|
add(result) {
|
||
|
addSnapshotResult(this.summary, result);
|
||
|
}
|
||
|
resolvePath(testPath) {
|
||
|
const resolver = this.options.resolveSnapshotPath || (() => {
|
||
|
return join(
|
||
|
join(
|
||
|
dirname(testPath),
|
||
|
"__snapshots__"
|
||
|
),
|
||
|
`${basename(testPath)}${this.extension}`
|
||
|
);
|
||
|
});
|
||
|
return resolver(testPath, this.extension);
|
||
|
}
|
||
|
resolveRawPath(testPath, rawPath) {
|
||
|
return isAbsolute(rawPath) ? rawPath : resolve(dirname(testPath), rawPath);
|
||
|
}
|
||
|
}
|
||
|
function emptySummary(options) {
|
||
|
const summary = {
|
||
|
added: 0,
|
||
|
failure: false,
|
||
|
filesAdded: 0,
|
||
|
filesRemoved: 0,
|
||
|
filesRemovedList: [],
|
||
|
filesUnmatched: 0,
|
||
|
filesUpdated: 0,
|
||
|
matched: 0,
|
||
|
total: 0,
|
||
|
unchecked: 0,
|
||
|
uncheckedKeysByFile: [],
|
||
|
unmatched: 0,
|
||
|
updated: 0,
|
||
|
didUpdate: options.updateSnapshot === "all"
|
||
|
};
|
||
|
return summary;
|
||
|
}
|
||
|
function addSnapshotResult(summary, result) {
|
||
|
if (result.added)
|
||
|
summary.filesAdded++;
|
||
|
if (result.fileDeleted)
|
||
|
summary.filesRemoved++;
|
||
|
if (result.unmatched)
|
||
|
summary.filesUnmatched++;
|
||
|
if (result.updated)
|
||
|
summary.filesUpdated++;
|
||
|
summary.added += result.added;
|
||
|
summary.matched += result.matched;
|
||
|
summary.unchecked += result.unchecked;
|
||
|
if (result.uncheckedKeys && result.uncheckedKeys.length > 0) {
|
||
|
summary.uncheckedKeysByFile.push({
|
||
|
filePath: result.filepath,
|
||
|
keys: result.uncheckedKeys
|
||
|
});
|
||
|
}
|
||
|
summary.unmatched += result.unmatched;
|
||
|
summary.updated += result.updated;
|
||
|
summary.total += result.added + result.matched + result.unmatched + result.updated;
|
||
|
}
|
||
|
|
||
|
export { SnapshotManager, addSnapshotResult, emptySummary };
|