deer-flow/frontend/tests/unit/core/i18n/context.dom.test.tsx
DanielWalnut 459dd78707
perf(frontend): bound delivery, bundles, and long-running UI work (#4622)
* docs: design frontend performance remediation

* docs: plan frontend performance remediation

* test(frontend): add route asset performance budgets

* perf(nginx): compress textual responses safely

* perf(frontend): lazy load case study media

* perf(frontend): bound static demo file tracing

* perf(frontend): restore static locale boundaries

* perf(frontend): defer closed workspace panels

* perf(frontend): split editors and deduplicate highlighting

* perf(frontend): index incremental message derivation

* perf(frontend): stabilize paged history cache policy

* perf(frontend): bound streaming markdown renders

* perf(frontend): virtualize message history

* perf(frontend): bound and virtualize chat lists

* perf(frontend): suspend inactive decorative animation

* perf(browser): stream latest frames as binary

* perf(artifacts): stream bounded text previews

* docs: finalize performance runtime boundaries

* style(backend): apply test formatting

* fix(frontend): keep translation functions client-side

* perf(frontend): defer decorative animation bundles

* test(frontend): lock optimized route budgets

* fix: harden frontend performance boundaries

* test(frontend): update i18n provider fixture

* fix(frontend): preserve sidebar pagination position

* style(backend): format artifact range test
2026-08-01 22:19:59 +08:00

45 lines
1.2 KiB
TypeScript

import { afterEach, describe, expect, it } from "@rstest/core";
import { cleanup, fireEvent, render, screen } from "@testing-library/react";
import { I18nProvider, useI18nContext } from "@/core/i18n/context";
afterEach(cleanup);
function Consumer() {
const { locale, setLocale, t } = useI18nContext();
return (
<>
<output>{`${locale}:${t.locale.localName}`}</output>
<button type="button" onClick={() => setLocale("zh-CN")}>
switch
</button>
</>
);
}
describe("I18nProvider", () => {
it("keeps locale and its dictionary in sync", async () => {
render(
<I18nProvider initialLocale="en-US">
<Consumer />
</I18nProvider>,
);
expect(screen.getByText("en-US:English")).toBeTruthy();
fireEvent.click(screen.getByRole("button", { name: "switch" }));
expect(await screen.findByText("zh-CN:中文")).toBeTruthy();
expect(document.documentElement.lang).toBe("zh-CN");
});
it("selects the initial dictionary inside the client boundary", () => {
render(
<I18nProvider initialLocale="zh-CN">
<Consumer />
</I18nProvider>,
);
expect(screen.getByText("zh-CN:中文")).toBeTruthy();
});
});