mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
test: reorganize fixture files into modality-first layout (phase 6b)
Move all fixture files from flat/mixed dirs (content/, media/, documents/,
formats/, hostile/, root loose) into the modality-first hierarchy:
image/{valid,formats,edge,hostile}, video/{valid,formats,hostile},
audio/{valid,formats,hostile}, document/{valid,formats,edge,hostile},
data/valid/, security/. Update index.ts paths, fixtureDir aliases,
all literal refs in 17 e2e/qa/script files, manifest.json, and the
three generator scripts. 163 files moved, 0 dropped, 100 new tests
from expanded document scan.
This commit is contained in:
@@ -254,7 +254,15 @@ describe("permission enforcement on routes", () => {
|
||||
});
|
||||
|
||||
describe("tool and pipeline permission enforcement", () => {
|
||||
const fixturePath = join(import.meta.dirname, "..", "..", "fixtures", "test-200x150.png");
|
||||
const fixturePath = join(
|
||||
import.meta.dirname,
|
||||
"..",
|
||||
"..",
|
||||
"fixtures",
|
||||
"image",
|
||||
"valid",
|
||||
"test-200x150.png",
|
||||
);
|
||||
const fixtureBuffer = readFileSync(fixturePath);
|
||||
|
||||
it("unauthenticated user cannot use tools", async () => {
|
||||
@@ -449,7 +457,7 @@ describe("file ownership scoping", () => {
|
||||
it("user A cannot access user B's file by ID", async () => {
|
||||
// Upload as user A
|
||||
const testImage = readFileSync(
|
||||
join(import.meta.dirname, "..", "..", "fixtures", "test-200x150.png"),
|
||||
join(import.meta.dirname, "..", "..", "fixtures", "image", "valid", "test-200x150.png"),
|
||||
);
|
||||
const { body: uploadBody, contentType } = createMultipartPayload([
|
||||
{ name: "file", filename: "test.png", contentType: "image/png", content: testImage },
|
||||
|
||||
Reference in New Issue
Block a user