You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-11-21 23:00:50 +03:00
frontend: write stories and tests for the user home
This commit is contained in:
131
frontend/src/components/UserHome/UserHome.test.tsx
Normal file
131
frontend/src/components/UserHome/UserHome.test.tsx
Normal file
@@ -0,0 +1,131 @@
|
||||
// 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 { create } from "react-test-renderer";
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
import { makeFragmentData } from "../../gql";
|
||||
import { FRAGMENT as EMAIL_FRAGMENT } from "../UserEmail";
|
||||
|
||||
import UserHome, { FRAGMENT } from "./UserHome";
|
||||
|
||||
describe("UserHome", () => {
|
||||
it("render an simple <UserHome />", () => {
|
||||
const primaryEmail = makeFragmentData(
|
||||
{
|
||||
id: "email:123",
|
||||
email: "hello@example.com",
|
||||
confirmedAt: new Date(),
|
||||
},
|
||||
EMAIL_FRAGMENT,
|
||||
);
|
||||
|
||||
const user = makeFragmentData(
|
||||
{
|
||||
id: "user:123",
|
||||
primaryEmail: {
|
||||
id: "email:123",
|
||||
...primaryEmail,
|
||||
},
|
||||
compatSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
browserSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
oauth2Sessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
unverifiedEmails: {
|
||||
totalCount: 0,
|
||||
},
|
||||
confirmedEmails: {
|
||||
totalCount: 1,
|
||||
},
|
||||
},
|
||||
FRAGMENT,
|
||||
);
|
||||
const component = create(<UserHome user={user} />);
|
||||
const tree = component.toJSON();
|
||||
expect(tree).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("render a <UserHome /> without primary email", () => {
|
||||
const user = makeFragmentData(
|
||||
{
|
||||
id: "user:123",
|
||||
primaryEmail: null,
|
||||
compatSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
browserSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
oauth2Sessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
unverifiedEmails: {
|
||||
totalCount: 0,
|
||||
},
|
||||
confirmedEmails: {
|
||||
totalCount: 0,
|
||||
},
|
||||
},
|
||||
FRAGMENT,
|
||||
);
|
||||
const component = create(<UserHome user={user} />);
|
||||
const tree = component.toJSON();
|
||||
expect(tree).toMatchSnapshot();
|
||||
});
|
||||
|
||||
it("render a <UserHome /> with an unverified email", () => {
|
||||
const primaryEmail = makeFragmentData(
|
||||
{
|
||||
id: "email:123",
|
||||
email: "hello@example.com",
|
||||
confirmedAt: new Date(),
|
||||
},
|
||||
EMAIL_FRAGMENT,
|
||||
);
|
||||
|
||||
const user = makeFragmentData(
|
||||
{
|
||||
id: "user:123",
|
||||
primaryEmail: {
|
||||
id: "email:123",
|
||||
...primaryEmail,
|
||||
},
|
||||
compatSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
browserSessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
oauth2Sessions: {
|
||||
totalCount: 0,
|
||||
},
|
||||
unverifiedEmails: {
|
||||
totalCount: 1,
|
||||
},
|
||||
confirmedEmails: {
|
||||
totalCount: 1,
|
||||
},
|
||||
},
|
||||
FRAGMENT,
|
||||
);
|
||||
const component = create(<UserHome user={user} />);
|
||||
const tree = component.toJSON();
|
||||
expect(tree).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user