Skip to content

Commit 56e213f

Browse files
committed
ciが通るか確認
1 parent 36562f9 commit 56e213f

File tree

6 files changed

+147
-137
lines changed

6 files changed

+147
-137
lines changed

src/__tests__/Contributors.spec.tsx

+53-78
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { render, screen } from "@testing-library/react";
1+
import { render, screen, waitFor } from "@testing-library/react";
22
import { ChakraProvider } from "@chakra-ui/react";
33
import { Contributors } from "../components/Contributors";
44
import { act } from "react";
55
import userEvent from "@testing-library/user-event";
6+
import { addUser } from "../lib/supabasefunctions";
67

78
// firebase関数のモック化
89
jest.mock("firebase/app", () => ({
@@ -15,48 +16,16 @@ jest.mock("firebase/auth", () => ({
1516
}));
1617

1718
const mockSubjects = [{ id: 1, year: 1, name: "離散数学" }];
18-
const mockUserInfos = [
19-
{
20-
id: 1,
21-
subjectId: 1,
22-
name: "John Doe",
23-
kakao_id: "john123",
24-
description: "Sample description",
25-
firebase_user_id: "testUserId",
26-
},
27-
];
28-
const mockAddUserInfo = [
29-
{
30-
id: 1,
31-
subjectId: 1,
32-
name: "John Doe",
33-
kakao_id: "john123",
34-
description: "Sample description",
35-
firebase_user_id: "testUserId",
36-
},
37-
{
38-
id: 2,
39-
subjectId: 1,
40-
name: "Jane Doe",
41-
kakao_id: "jane123",
42-
description: "Sample description",
43-
firebase_user_id: "testUserId",
44-
},
45-
];
4619

4720
const mockGetSubjects = jest.fn().mockResolvedValue(mockSubjects);
4821

49-
const mockGetUserInfo = jest
50-
.fn()
51-
.mockResolvedValueOnce(mockUserInfos)
52-
.mockResolvedValue(mockAddUserInfo);
53-
5422
// supabase関数のモック化
5523
jest.mock("../lib/supabasefunctions", () => {
5624
return {
5725
getSubjects: () => mockGetSubjects(),
5826
getSubjectUserIds: jest.fn(),
59-
getUserInfo: () => mockGetUserInfo(),
27+
// getUserInfo: () => mockGetUserInfo(),
28+
getUserInfo: jest.fn(),
6029
addUser: jest.fn(),
6130
addUserToSubject: jest.fn(),
6231
// updateUserInfo: jest.fn(),
@@ -72,66 +41,72 @@ describe("過去問の募集投稿ページのテスト", () => {
7241
);
7342
});
7443

75-
test("タイトルが見れる", () => {
76-
expect(screen.getByTestId("kakomon-register-title")).toBeInTheDocument();
77-
});
78-
79-
test("バリデーションエラーが表示される", async () => {
80-
const postButton = screen.getByTestId("kakomon-register-modal");
81-
82-
await act(async () => {
83-
postButton.click();
84-
});
85-
86-
const submitButton = await screen.findByTestId("kakomon-register-button");
87-
88-
await act(async () => {
89-
submitButton.click();
90-
});
91-
92-
expect(
93-
await screen.findByText("⚠️お名前は必須入力項目です。")
94-
).toBeInTheDocument();
95-
expect(
96-
await screen.findByText("⚠️カカオIDは必須入力項目です。")
97-
).toBeInTheDocument();
98-
expect(
99-
await screen.findByText("⚠️科目は必須入力項目です。")
100-
).toBeInTheDocument();
101-
});
102-
103-
test("過去問を登録できる", async () => {
104-
// const accordionButtons = await screen.findAllByTestId("accordion-button");
105-
// await act(async () => {
106-
// accordionButtons[0].click();
107-
// });
108-
109-
// await waitFor(() => {
110-
// expect(screen.getByTestId("record-list")).toBeInTheDocument();
111-
// });
112-
44+
// モック入りテスト
45+
test("過去問が正常にできるか", async () => {
46+
// 過去問登録モーダルを開く
11347
const postButton = screen.getByTestId("kakomon-register-modal");
11448
await act(async () => {
11549
postButton.click();
11650
});
51+
// submitボタンがみれる(モーダルが開けている)
11752
const submitButton = await screen.findByTestId("kakomon-register-button");
11853
expect(submitButton).toBeInTheDocument();
119-
54+
// フォームに各値を入力
12055
const nameInput = await screen.findByTestId("name-input");
12156
await act(async () => {
12257
await userEvent.type(nameInput, "テスト太郎");
12358
});
124-
const kakaoIdInput = screen.getByTestId("kakaoId-input");
59+
const kakaoIdInput = await screen.findByTestId("kakaoId-input");
12560
await act(async () => {
12661
await userEvent.type(kakaoIdInput, "test-id");
12762
});
128-
129-
const subjectNameInput = screen.getByTestId("subjectName-input");
63+
const subjectNameInput = await screen.findByTestId("subjectName-input");
13064
await act(async () => {
131-
await userEvent.type(subjectNameInput, "離散数学");
65+
await userEvent.selectOptions(subjectNameInput, "1");
13266
});
67+
// submitボタンを押す
13368
await act(async () => {
13469
submitButton.click();
13570
});
71+
// 追加の関数が呼ばれていることを確認
72+
await waitFor(() => {
73+
expect(addUser).toHaveBeenCalledWith(
74+
"テスト太郎",
75+
1,
76+
"test-id",
77+
"", // descriptionは任意項目なので空文字列でよし(逆になぜか値を入れるとエラーなる。tsの設定周りが原因?)
78+
"testUserId"
79+
);
80+
});
81+
// 登録が完了したことを表示
82+
expect(await screen.findByText("登録に成功しました!")).toBeInTheDocument();
13683
});
84+
// モックなしテスト
85+
// test("タイトルが見れる", () => {
86+
// expect(screen.getByTestId("kakomon-register-title")).toBeInTheDocument();
87+
// });
88+
89+
// test("バリデーションエラーが表示される", async () => {
90+
// const postButton = screen.getByTestId("kakomon-register-modal");
91+
92+
// await act(async () => {
93+
// postButton.click();
94+
// });
95+
96+
// const submitButton = await screen.findByTestId("kakomon-register-button");
97+
98+
// await act(async () => {
99+
// submitButton.click();
100+
// });
101+
102+
// expect(
103+
// await screen.findByText("⚠️お名前は必須入力項目です。")
104+
// ).toBeInTheDocument();
105+
// expect(
106+
// await screen.findByText("⚠️カカオIDは必須入力項目です。")
107+
// ).toBeInTheDocument();
108+
// expect(
109+
// await screen.findByText("⚠️科目は必須入力項目です。")
110+
// ).toBeInTheDocument();
111+
// });
137112
});

src/__tests__/CreatePost.spec.tsx

-47
Original file line numberDiff line numberDiff line change
@@ -27,50 +27,18 @@ const addMockData = [
2727
},
2828
];
2929

30-
// const initialMockDataComment = [
31-
// {
32-
// id: 1,
33-
// title: "test",
34-
// name: "テスト太郎",
35-
// comment: "これはテストです(コメント版)。",
36-
// created_at: "2021-10-01T00:00:00.000Z",
37-
// },
38-
// ];
39-
// const addMockDataComment = [
40-
// {
41-
// id: 1,
42-
// title: "test",
43-
// name: "テスト太郎",
44-
// comment: "これはテストです(コメント版)。",
45-
// created_at: "2021-10-01T00:00:00.000Z",
46-
// },
47-
// {
48-
// id: 2,
49-
// title: "test",
50-
// name: "テスト二郎",
51-
// comment: "これはテストです2(コメント版)。",
52-
// created_at: "2021-10-01T00:00:00.000Z",
53-
// },
54-
// ];
55-
5630
const mockGetKakomonPosts = jest
5731
.fn()
5832
.mockResolvedValueOnce(initialMockData)
5933
.mockResolvedValueOnce(initialMockData)
6034
.mockResolvedValueOnce(initialMockData)
6135
.mockResolvedValue(addMockData);
6236

63-
// const mockGetKakomonPostComments = jest
64-
// .fn()
65-
// .mockResolvedValueOnce(initialMockDataComment)
66-
// .mockResolvedValue(addMockDataComment);
6737

6838
jest.mock("../lib/supabasefunctions", () => {
6939
return {
7040
getKakomonPosts: () => mockGetKakomonPosts(),
7141
addKakomonPost: jest.fn(),
72-
// getKakomonPostComments: () => mockGetKakomonPostComments(),
73-
// addKakomonPostComment: jest.fn(),
7442
};
7543
});
7644

@@ -148,19 +116,4 @@ describe("過去問の募集投稿ページのテスト", () => {
148116
expect(rows.length - 1).toBe(2);
149117
});
150118
});
151-
// test("コメントを追加するとコメント一覧が更新される", async () => {
152-
// await waitFor(() => {
153-
// const recordList = screen.getByTestId("record-list");
154-
// expect(recordList).toBeInTheDocument();
155-
// });
156-
157-
// const detailButton = screen.getAllByTestId("detail-modal-button")[0];
158-
// await act(async () => {
159-
// detailButton.click();
160-
// });
161-
162-
// await waitFor(() => {
163-
// expect(screen.getByTestId("detail-modal")).toBeInTheDocument();
164-
// });
165-
// });
166119
});

src/__tests__/SignIn.spec.tsx

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
2+
import { SignIn } from "../components/SignIn"; // SignInコンポーネントのパスを指定
3+
import { signInWithPopup } from "firebase/auth";
4+
import { MemoryRouter } from "react-router-dom";
5+
import { ChakraProvider } from "@chakra-ui/react";
6+
import SimpleSidebar from "../components/layout/MainLayout";
7+
8+
// signInWithPopupをモック化
9+
jest.mock("firebase/auth", () => ({
10+
...jest.requireActual("firebase/auth"),
11+
signInWithPopup: jest.fn(),
12+
signOut: jest.fn(() => Promise.resolve()),
13+
}));
14+
const mockNavigate = jest.fn();
15+
jest.mock("react-router-dom", () => ({
16+
...jest.requireActual("react-router-dom"),
17+
useNavigate: () => mockNavigate,
18+
}));
19+
20+
describe("認証周りのテスト", () => {
21+
22+
test("Googleでログインする際に関数が正常に実行されるか", async () => {
23+
const mockSignInWithPopup = signInWithPopup as jest.Mock;
24+
mockSignInWithPopup.mockResolvedValueOnce({ user: { uid: "123" } });
25+
render(
26+
<MemoryRouter>
27+
<ChakraProvider>
28+
<SignIn />
29+
</ChakraProvider>
30+
</MemoryRouter>
31+
);
32+
const googleButton = screen.getByRole("button", {
33+
name: /Google/i,
34+
});
35+
fireEvent.click(googleButton);
36+
expect(mockSignInWithPopup).toHaveBeenCalled();
37+
});
38+
39+
test("Githubでログインする際に関数が正常に実行されるか", async () => {
40+
const mockSignInWithPopup = signInWithPopup as jest.Mock;
41+
mockSignInWithPopup.mockResolvedValueOnce({ user: { uid: "123" } });
42+
render(
43+
<MemoryRouter>
44+
<ChakraProvider>
45+
<SignIn />
46+
</ChakraProvider>
47+
</MemoryRouter>
48+
);
49+
const githubButton = screen.getByRole("button", {
50+
name: /Github/i,
51+
});
52+
fireEvent.click(githubButton);
53+
expect(mockSignInWithPopup).toHaveBeenCalled();
54+
});
55+
56+
test("サインイン後にリダイレクトされるか", async () => {
57+
render(
58+
<MemoryRouter>
59+
<ChakraProvider>
60+
<SimpleSidebar />
61+
</ChakraProvider>
62+
</MemoryRouter>
63+
);
64+
const signOutButton = screen.getByTestId("signout-modal-button");
65+
fireEvent.click(signOutButton);
66+
await waitFor(() => {
67+
expect(screen.getByTestId("signout-button")).toBeInTheDocument();
68+
});
69+
const signOut = screen.getByTestId("signout-button");
70+
fireEvent.click(signOut);
71+
await waitFor(() => {
72+
expect(mockNavigate).toHaveBeenCalledWith("/signin");
73+
});
74+
});
75+
});

src/components/Contributors.tsx

+10-5
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export const Contributors = () => {
9595
{...getEditButtonProps()}
9696
colorScheme="teal"
9797
ml="20px"
98+
data-testid="edit-button"
9899
>
99100
<FaPenToSquare />
100101
</Button>
@@ -124,6 +125,7 @@ export const Contributors = () => {
124125
return { subjectId: subject.id, userInfos };
125126
})
126127
);
128+
// console.log("flatする前の科目別ユーザー情報", userInfosBySubject);
127129

128130
const userInfoBySubjectMap = userInfosBySubject.reduce(
129131
(acc, { subjectId, userInfos }) => {
@@ -132,7 +134,8 @@ export const Contributors = () => {
132134
},
133135
{} as Record<string, User[]>
134136
);
135-
137+
// console.log("各科目に登録されているユーザー情報", userInfoBySubjectMap);
138+
136139
setUserInfoBySubject(userInfoBySubjectMap);
137140
};
138141
fetchSubjectsData();
@@ -196,14 +199,15 @@ export const Contributors = () => {
196199
onClose();
197200
};
198201

199-
// ユーザーの備考欄を更新する関数
202+
// 投稿者本人だけが補足情報を編集できるようにする関数(firebase authのuidを使って判定)
200203
const handleDescriptionChange = async (
201204
userId: number,
202205
newDescription: string
203206
) => {
204207
await updateUserInfo(userId, newDescription);
205208
const updatedSubjects = await getSubjects();
206209
setSubjects(updatedSubjects);
210+
// ここから下はいるかどうか謎だが現状スルーしている。あとで検証(ないとリロードしないと変更が反映されない?)
207211
const userInfosBySubject = await Promise.all(
208212
updatedSubjects.map(async (subject) => {
209213
const userInfos = await fetchUserInfoBySubjectId(subject.id);
@@ -392,13 +396,14 @@ export const Contributors = () => {
392396
<TabPanel key={year}>
393397
<Accordion allowMultiple>
394398
{getSubjectsByGrade(year).map((subject) => (
395-
<AccordionItem key={subject.id} data-testid="accordion-button">
399+
<AccordionItem key={subject.id}>
396400
<AccordionButton>
397401
<Box
398-
as="span"
402+
// as="span"
399403
flex="1"
400404
textAlign="left"
401405
fontWeight="bold"
406+
data-testid="accordion-button"
402407
>
403408
{subject.name}
404409
</Box>
@@ -458,7 +463,7 @@ export const Contributors = () => {
458463
</Tbody>
459464
</>
460465
) : (
461-
// table内でTextのみを使うとコンソールで警告が出る
466+
// table内でText(pタグ)を使うとコンソールで警告が出る
462467
<Tbody>
463468
<Tr>
464469
<Td colSpan={1}>ユーザー情報がありません。</Td>

0 commit comments

Comments
 (0)