-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathutils.js
190 lines (171 loc) · 5.86 KB
/
utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import once from "function-once";
import * as Archive from "json-archive";
import exec from "nanoexec";
import fs from "node:fs/promises";
import os from "node:os";
import path from "node:path";
import process from "node:process";
import Base64 from "radix64-encoding";
import zeptoid from "zeptoid";
import { expect, test } from "@jest/globals";
import serializerRaw from "jest-snapshot-serializer-raw";
import serializerAnsi from "jest-snapshot-serializer-ansi";
expect.addSnapshotSerializer(serializerRaw);
expect.addSnapshotSerializer(serializerAnsi);
const ROOT_PATH = process.cwd();
const BIN_PATH = path.join(ROOT_PATH, "dist", "bin.js");
const FIXTURES_PATH = path.join(ROOT_PATH, "test", "__fixtures__");
const TESTS_PATH = path.join(ROOT_PATH, "test");
async function getArchive(folderPath) {
const packPrev = await Archive.pack(folderPath);
const archive = {
getPack: once(() => {
return Archive.pack(folderPath);
}),
getChanged: once(async () => {
const packNext = await archive.getPack();
const changed = [];
for (const fileName in packPrev) {
if (fileName.includes(".prettier-caches")) continue;
const filePrev = packPrev[fileName];
const fileNext = packNext[fileName];
if (filePrev.contents === fileNext.contents) continue;
changed.push(fileName);
}
for (const fileName in packNext) {
if (fileName.includes(".prettier-caches")) continue;
if (packPrev[fileName]) continue;
changed.push(fileName);
}
return changed;
}),
getDiff: async () => {
const packNext = await archive.getPack();
const changed = await archive.getChanged();
const diff = [];
for (const fileName of changed) {
const fileNext = packNext[fileName];
diff.push({
filename: fileName,
content: Base64.decodeStr(fileNext.contents),
});
}
return diff;
},
reset: async () => {
const changed = await archive.getChanged();
for (const fileName of changed) {
const filePath = path.join(folderPath, fileName);
const filePrev = packPrev[fileName];
if (filePrev) {
await fs.writeFile(filePath, filePrev.contents, filePrev.encoding);
} else {
await fs.rm(filePath);
}
}
},
};
return archive;
}
function getFixturesPath(dir) {
return path.join(FIXTURES_PATH, dir);
}
async function getIsolatedFixtures(dir) {
const [rootPart, ...subParts] = dir.split("/");
const fixturesPath = getFixturesPath(rootPart);
const tempPath = await getTempPath(`prettier-${rootPart}`);
const tempGitPath = path.join(tempPath, ".git");
const isolatedPath = path.join(tempPath, ...subParts);
await fs.mkdir(tempPath, { recursive: true });
await fs.mkdir(tempGitPath, { recursive: true });
await fs.cp(fixturesPath, tempPath, { recursive: true });
const dispose = () => {
return fs.rm(tempPath, { recursive: true, force: true });
};
return {
path: isolatedPath,
dispose,
};
}
function getNormalizedOutput(output, options) {
// \r is trimmed from jest snapshots by default;
// manually replacing this character with /*CR*/ to test its true presence
// If ignoreLineEndings is specified, \r is simply deleted instead
// output = output.replace(/\r/gu, options.ignoreLineEndings ? "" : "/*CR*/"); //TODO
output = output.replace(/(\r?\n|\r)$/, "");
return output;
}
async function getTempPath(prefix) {
const rootPath = await fs.realpath(os.tmpdir());
const tempPath = path.join(rootPath, `${prefix}-${zeptoid()}`);
return tempPath;
}
async function runCommand(dir, args, options) {
const fixtures = dir ? await getIsolatedFixtures(dir) : undefined;
const archive = fixtures ? await getArchive(fixtures.path) : undefined;
const cwd = fixtures ? fixtures.path : TESTS_PATH;
const argsWithReplacements = args.map((arg) => arg.replaceAll("$CWD", cwd));
const result = exec("node", [BIN_PATH, ...argsWithReplacements], { cwd, stdio: "pipe" });
if (options.input) {
result.process.stdin.write(options.input);
result.process.stdin.end();
}
const status = await result.code;
const stdout = getNormalizedOutput((await result.stdout).toString());
const stderr = getNormalizedOutput((await result.stderr).toString());
const write = (await archive?.getDiff()) || [];
await fixtures?.dispose();
return { cwd, status, stdout, stderr, write };
}
async function runTest(name, expected, getResult, options) {
const title = options.title || "";
test(`${title}(${name})`, async () => {
let result = await getResult();
let value = result[name];
if (expected !== undefined) {
if (name === "status" && expected === "non-zero") {
expect(value).not.toBe(0);
} else if (typeof expected === "function") {
expected(value);
} else {
if (typeof value === "string") {
value = value.replaceAll(result.cwd, "$CWD");
}
expect(value).toEqual(expected);
}
} else {
expect(value).toMatchSnapshot();
}
});
}
function runCli(dir, args = [], options = {}) {
const getResult = once(() => {
return runCommand(dir, args, options);
});
const result = {
get status() {
return getResult().then((result) => result.status);
},
get stdout() {
return getResult().then((result) => result.stdout);
},
get stderr() {
return getResult().then((result) => result.stderr);
},
get write() {
return getResult().then((result) => result.write);
},
test: (tests) => {
for (const name of ["status", "stdout", "stderr", "write"]) {
const expected = tests[name];
runTest(name, expected, getResult, options);
}
return result;
},
then: (onFulfilled, onRejected) => {
return getResult().then(onFulfilled, onRejected);
},
};
return result;
}
export { getFixturesPath, runCli };