Use stable endpoints for MSC3916 (#12602)

This commit is contained in:
Travis Ralston 2024-06-13 12:18:25 -06:00 committed by GitHub
parent 8c49f3f2ea
commit 6a44f5e087
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1199,10 +1199,10 @@ test.describe("Timeline", () => {
// Install our mocks and preventative measures // Install our mocks and preventative measures
await context.route("**/_matrix/client/versions", async (route) => { await context.route("**/_matrix/client/versions", async (route) => {
// Force enable MSC3916, which may require the service worker's internal cache to be cleared later. // Force enable MSC3916/Matrix 1.11, which may require the service worker's internal cache to be cleared later.
const json = await (await route.fetch()).json(); const json = await (await route.fetch()).json();
if (!json["unstable_features"]) json["unstable_features"] = {}; if (!json["versions"]) json["versions"] = [];
json["unstable_features"]["org.matrix.msc3916"] = true; json["versions"].push("v1.11");
await route.fulfill({ json }); await route.fulfill({ json });
}); });
await context.route("**/_matrix/media/*/download/**", async (route) => { await context.route("**/_matrix/media/*/download/**", async (route) => {
@ -1219,14 +1219,14 @@ test.describe("Timeline", () => {
json: { errcode: "M_UNKNOWN", error: "Unexpected route called." }, json: { errcode: "M_UNKNOWN", error: "Unexpected route called." },
}); });
}); });
await context.route("**/_matrix/client/unstable/org.matrix.msc3916/download/**", async (route) => { await context.route("**/_matrix/client/v1/download/**", async (route) => {
expect(route.request().headers()["Authorization"]).toBeDefined(); expect(route.request().headers()["Authorization"]).toBeDefined();
// we can't use route.continue() because no configured homeserver supports MSC3916 yet // we can't use route.continue() because no configured homeserver supports MSC3916 yet
await route.fulfill({ await route.fulfill({
body: NEW_AVATAR, body: NEW_AVATAR,
}); });
}); });
await context.route("**/_matrix/client/unstable/org.matrix.msc3916/thumbnail/**", async (route) => { await context.route("**/_matrix/client/v1/thumbnail/**", async (route) => {
expect(route.request().headers()["Authorization"]).toBeDefined(); expect(route.request().headers()["Authorization"]).toBeDefined();
// we can't use route.continue() because no configured homeserver supports MSC3916 yet // we can't use route.continue() because no configured homeserver supports MSC3916 yet
await route.fulfill({ await route.fulfill({