1
- import { render , screen } from "@testing-library/react" ;
1
+ import { render , screen , waitFor } from "@testing-library/react" ;
2
2
import { ChakraProvider } from "@chakra-ui/react" ;
3
3
import { Contributors } from "../components/Contributors" ;
4
4
import { act } from "react" ;
5
5
import userEvent from "@testing-library/user-event" ;
6
+ import { addUser } from "../lib/supabasefunctions" ;
6
7
7
8
// firebase関数のモック化
8
9
jest . mock ( "firebase/app" , ( ) => ( {
@@ -15,48 +16,16 @@ jest.mock("firebase/auth", () => ({
15
16
} ) ) ;
16
17
17
18
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
- ] ;
46
19
47
20
const mockGetSubjects = jest . fn ( ) . mockResolvedValue ( mockSubjects ) ;
48
21
49
- const mockGetUserInfo = jest
50
- . fn ( )
51
- . mockResolvedValueOnce ( mockUserInfos )
52
- . mockResolvedValue ( mockAddUserInfo ) ;
53
-
54
22
// supabase関数のモック化
55
23
jest . mock ( "../lib/supabasefunctions" , ( ) => {
56
24
return {
57
25
getSubjects : ( ) => mockGetSubjects ( ) ,
58
26
getSubjectUserIds : jest . fn ( ) ,
59
- getUserInfo : ( ) => mockGetUserInfo ( ) ,
27
+ // getUserInfo: () => mockGetUserInfo(),
28
+ getUserInfo : jest . fn ( ) ,
60
29
addUser : jest . fn ( ) ,
61
30
addUserToSubject : jest . fn ( ) ,
62
31
// updateUserInfo: jest.fn(),
@@ -72,66 +41,72 @@ describe("過去問の募集投稿ページのテスト", () => {
72
41
) ;
73
42
} ) ;
74
43
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
+ // 過去問登録モーダルを開く
113
47
const postButton = screen . getByTestId ( "kakomon-register-modal" ) ;
114
48
await act ( async ( ) => {
115
49
postButton . click ( ) ;
116
50
} ) ;
51
+ // submitボタンがみれる(モーダルが開けている)
117
52
const submitButton = await screen . findByTestId ( "kakomon-register-button" ) ;
118
53
expect ( submitButton ) . toBeInTheDocument ( ) ;
119
-
54
+ // フォームに各値を入力
120
55
const nameInput = await screen . findByTestId ( "name-input" ) ;
121
56
await act ( async ( ) => {
122
57
await userEvent . type ( nameInput , "テスト太郎" ) ;
123
58
} ) ;
124
- const kakaoIdInput = screen . getByTestId ( "kakaoId-input" ) ;
59
+ const kakaoIdInput = await screen . findByTestId ( "kakaoId-input" ) ;
125
60
await act ( async ( ) => {
126
61
await userEvent . type ( kakaoIdInput , "test-id" ) ;
127
62
} ) ;
128
-
129
- const subjectNameInput = screen . getByTestId ( "subjectName-input" ) ;
63
+ const subjectNameInput = await screen . findByTestId ( "subjectName-input" ) ;
130
64
await act ( async ( ) => {
131
- await userEvent . type ( subjectNameInput , "離散数学 " ) ;
65
+ await userEvent . selectOptions ( subjectNameInput , "1 " ) ;
132
66
} ) ;
67
+ // submitボタンを押す
133
68
await act ( async ( ) => {
134
69
submitButton . click ( ) ;
135
70
} ) ;
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 ( ) ;
136
83
} ) ;
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
+ // });
137
112
} ) ;
0 commit comments