This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename 'Emails' route to 'Profile' (#1567)
* rename /account/emails route to profile * remove support for /emails * bad unit test for Layout * update snapshots, fix layout test * fix snapshots from old version of compound * better layout test * coverage?
- Loading branch information
Kerry
authored
Aug 25, 2023
1 parent
70e6489
commit c7311ee
Showing
15 changed files
with
382 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright 2023 The Matrix.org Foundation C.I.C. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import { describe, it, expect } from "vitest"; | ||
|
||
import { segmentsToRoute } from "./Router"; | ||
|
||
describe("Router", () => { | ||
describe("segmentsToRoute", () => { | ||
it("returns home for route with no segments", () => { | ||
const segments: string[] = []; | ||
expect(segmentsToRoute(segments)).toEqual({ type: "home" }); | ||
}); | ||
|
||
it("returns home for route with and empty string segment", () => { | ||
const segments: string[] = [""]; | ||
expect(segmentsToRoute(segments)).toEqual({ type: "home" }); | ||
}); | ||
|
||
it("returns profile for route with profile", () => { | ||
const segments: string[] = ["profile"]; | ||
expect(segmentsToRoute(segments)).toEqual({ type: "profile" }); | ||
}); | ||
|
||
it("returns browser session list for sessions", () => { | ||
const segments: string[] = ["sessions"]; | ||
expect(segmentsToRoute(segments)).toEqual({ | ||
type: "browser-session-list", | ||
}); | ||
}); | ||
|
||
it("returns compat session list for compat-sessions", () => { | ||
const segments: string[] = ["compat-sessions"]; | ||
expect(segmentsToRoute(segments)).toEqual({ | ||
type: "compat-session-list", | ||
}); | ||
}); | ||
|
||
it("returns oauth session list for oauth2-sessions", () => { | ||
const segments: string[] = ["oauth2-sessions"]; | ||
expect(segmentsToRoute(segments)).toEqual({ | ||
type: "oauth2-session-list", | ||
}); | ||
}); | ||
|
||
it("returns client detail route correctly", () => { | ||
const segments: string[] = ["clients", "client-id"]; | ||
expect(segmentsToRoute(segments)).toEqual({ | ||
type: "client", | ||
id: "client-id", | ||
}); | ||
}); | ||
|
||
it("returns session detail route correctly", () => { | ||
const segments: string[] = ["sessions", "session-id"]; | ||
expect(segmentsToRoute(segments)).toEqual({ | ||
type: "session", | ||
id: "session-id", | ||
}); | ||
}); | ||
|
||
it("returns unknown for other segments", () => { | ||
const segments: string[] = ["just", "testing"]; | ||
expect(segmentsToRoute(segments)).toEqual({ type: "unknown", segments }); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html | ||
|
||
exports[`Router > routes 1`] = `"Loading..."`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright 2023 The Matrix.org Foundation C.I.C. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// @vitest-environment happy-dom | ||
|
||
import { render } from "@testing-library/react"; | ||
import { Provider } from "jotai"; | ||
import { useHydrateAtoms } from "jotai/utils"; | ||
import { Suspense } from "react"; | ||
import { describe, expect, it, vi, afterAll, beforeEach } from "vitest"; | ||
|
||
import { appConfigAtom, locationAtom } from "../Router"; | ||
import { currentUserIdAtom, GqlResult } from "../atoms"; | ||
|
||
import Layout from "./Layout"; | ||
|
||
beforeEach(async () => { | ||
// For some reason, the locationAtom gets updated with `about:black` on render, | ||
// so we need to set a "real" location and wait for the next tick | ||
window.location.assign("https://example.com/"); | ||
// Wait the next tick for the location to update | ||
await new Promise((resolve) => setTimeout(resolve, 0)); | ||
}); | ||
|
||
const HydrateLocation: React.FC<React.PropsWithChildren<{ path: string }>> = ({ | ||
children, | ||
path, | ||
}) => { | ||
useHydrateAtoms([ | ||
[appConfigAtom, { root: "/" }], | ||
[locationAtom, { pathname: path }], | ||
]); | ||
return <>{children}</>; | ||
}; | ||
|
||
const WithLocation: React.FC<React.PropsWithChildren<{ path: string }>> = ({ | ||
children, | ||
path, | ||
}) => { | ||
return ( | ||
<Provider> | ||
<Suspense> | ||
<HydrateLocation path={path}>{children}</HydrateLocation> | ||
</Suspense> | ||
</Provider> | ||
); | ||
}; | ||
|
||
describe("<Layout />", () => { | ||
beforeEach(() => { | ||
vi.spyOn(currentUserIdAtom, "read").mockResolvedValue( | ||
"abc123" as unknown as GqlResult<string | null>, | ||
); | ||
}); | ||
afterAll(() => { | ||
vi.restoreAllMocks(); | ||
}); | ||
it("renders app navigation correctly", async () => { | ||
const component = render( | ||
<WithLocation path="/account"> | ||
<Layout /> | ||
</WithLocation>, | ||
); | ||
|
||
expect(await component.findByText("Profile")).toMatchSnapshot(); | ||
expect(await component.findByText("Home")).toMatchSnapshot(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.