mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
Co-authored-by: nektro <nektro@users.noreply.github.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { expect, it } from "bun:test";
|
|
import { bunExe, bunEnv, tmpdirSync } from "../../harness.js";
|
|
import { mkdirSync, rmSync, writeFileSync, readFileSync } from "fs";
|
|
import { join } from "path";
|
|
|
|
it("JSON strings escaped properly", async () => {
|
|
const testDir = tmpdirSync();
|
|
|
|
// Clean up from prior runs if necessary
|
|
rmSync(testDir, { recursive: true, force: true });
|
|
|
|
// Create a directory with our test package file
|
|
mkdirSync(testDir, { recursive: true });
|
|
writeFileSync(join(testDir, "package.json"), String.raw`{"testRegex":"\\a\n\\b\\"}`);
|
|
|
|
// Attempt to add a package, causing the package file to be parsed, modified,
|
|
// written, and reparsed. This verifies that escaped backslashes in JSON
|
|
// survive the roundtrip
|
|
const { exitCode, stderr } = Bun.spawnSync({
|
|
cmd: [bunExe(), "add", "left-pad"],
|
|
env: bunEnv,
|
|
cwd: testDir,
|
|
});
|
|
if (exitCode !== 0) {
|
|
console.log(stderr.toString("utf8"));
|
|
}
|
|
expect(exitCode).toBe(0);
|
|
|
|
const packageContents = readFileSync(join(testDir, "package.json"), { encoding: "utf8" });
|
|
expect(packageContents).toBe(String.raw`{
|
|
"testRegex": "\\a\n\\b\\",
|
|
"dependencies": {
|
|
"left-pad": "^1.3.0"
|
|
}
|
|
}`);
|
|
|
|
//// If successful clean up test artifacts
|
|
rmSync(testDir, { recursive: true });
|
|
});
|