Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/typescript/src/targets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ async function gitOutput(
encoding: "utf8",
signal,
env: command.environment,
maxBuffer: Infinity,
},
);
return stdout.trim();
Expand Down
76 changes: 76 additions & 0 deletions sdk/typescript/tests-ts/targets-large-output.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import { execFileSync } from "node:child_process";
import { mkdtemp, mkdir, realpath, rm, writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { afterEach, expect, test } from "bun:test";
import {
DiffTarget,
normalizeTarget,
validateCommittedDiffCheckout,
} from "../src/targets.js";

const temporaryDirectories: string[] = [];

afterEach(async () => {
await Promise.all(
temporaryDirectories
.splice(0)
.map((path) => rm(path, { recursive: true, force: true })),
);
});

function git(repo: string, ...args: string[]): string {
return execFileSync("git", args, {
cwd: repo,
encoding: "utf8",
maxBuffer: Infinity,
}).trim();
}

test("validates committed diffs with tracked-file output larger than 1 MB", async () => {
if (process.platform === "win32") return;

const root = await realpath(
await mkdtemp(join(tmpdir(), "codex-security-large-targets-")),
);
temporaryDirectories.push(root);
const repo = join(root, "repo");
await mkdir(repo);

git(repo, "init", "-b", "main");
git(repo, "config", "user.email", "test@example.com");
git(repo, "config", "user.name", "Test");

const longDirectory = join(
repo,
"a".repeat(200),
"b".repeat(200),
"c".repeat(200),
);
await mkdir(longDirectory, { recursive: true });
await Promise.all(
Array.from({ length: 1_500 }, (_, index) =>
writeFile(
join(
longDirectory,
`${index.toString().padStart(4, "0")}-${"x".repeat(180)}.ts`,
),
"",
),
),
);

git(repo, "add", ".");
git(repo, "commit", "--quiet", "-m", "large tracked tree");

const tracked = git(repo, "ls-files", "-t", "-z");
expect(Buffer.byteLength(tracked, "utf8")).toBeGreaterThan(1024 * 1024);

const target = await normalizeTarget(
repo,
DiffTarget.refs({ base: "HEAD" }),
);
await expect(
validateCommittedDiffCheckout(repo, target),
).resolves.toBeUndefined();
});
Loading