-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathuseReauthenticateWithCredentialMutation.test.tsx
164 lines (135 loc) · 3.99 KB
/
useReauthenticateWithCredentialMutation.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
import { renderHook, waitFor } from "@testing-library/react";
import {
createUserWithEmailAndPassword,
signOut,
EmailAuthProvider,
type User,
} from "firebase/auth";
import { useReauthenticateWithCredentialMutation } from "./useReauthenticateWithCredentialMutation";
import { describe, test, expect, beforeEach, afterEach } from "vitest";
import { wrapper, queryClient } from "../../utils";
import { auth, expectFirebaseError, wipeAuth } from "~/testing-utils";
describe("useReauthenticateWithCredentialMutation", () => {
let user: User;
const email = "[email protected]";
const password = "TanstackQueryFirebase#123";
beforeEach(async () => {
queryClient.clear();
await wipeAuth();
const userCredential = await createUserWithEmailAndPassword(
auth,
email,
password
);
user = userCredential.user;
});
afterEach(async () => {
await signOut(auth);
});
test("should successfully reauthenticate with correct credentials", async () => {
const { result } = renderHook(
() => useReauthenticateWithCredentialMutation(),
{ wrapper }
);
const credential = EmailAuthProvider.credential(email, password);
result.current.mutate({
user,
credential,
});
await waitFor(() => {
expect(result.current.isSuccess).toBe(true);
});
expect(result.current.data?.user.email).toBe(email);
});
test("should fail with incorrect credentials", async () => {
const { result } = renderHook(
() => useReauthenticateWithCredentialMutation(),
{ wrapper }
);
const wrongCredential = EmailAuthProvider.credential(
email,
"wrongPassword"
);
result.current.mutate({
user,
credential: wrongCredential,
});
await waitFor(() => {
expect(result.current.isError).toBe(true);
});
expectFirebaseError(result.current.error, "auth/wrong-password");
});
test("should call onSuccess callback after successful reauthentication", async () => {
let callbackCalled = false;
const { result } = renderHook(
() =>
useReauthenticateWithCredentialMutation({
onSuccess: () => {
callbackCalled = true;
},
}),
{ wrapper }
);
const credential = EmailAuthProvider.credential(email, password);
result.current.mutate({
user,
credential,
});
await waitFor(() => {
expect(callbackCalled).toBe(true);
expect(result.current.isSuccess).toBe(true);
});
});
test("should call onError callback on authentication failure", async () => {
let errorCode: string | undefined;
const { result } = renderHook(
() =>
useReauthenticateWithCredentialMutation({
onError: (error) => {
errorCode = error.code;
},
}),
{ wrapper }
);
const wrongCredential = EmailAuthProvider.credential(
email,
"wrongPassword"
);
result.current.mutate({
user,
credential: wrongCredential,
});
await waitFor(() => {
expect(result.current.isError).toBe(true);
expectFirebaseError(result.current.error, "auth/wrong-password");
});
});
test("should handle multiple reauthentication attempts", async () => {
const { result } = renderHook(
() => useReauthenticateWithCredentialMutation(),
{ wrapper }
);
// First attempt - successful
const correctCredential = EmailAuthProvider.credential(email, password);
result.current.mutate({
user,
credential: correctCredential,
});
await waitFor(() => {
expect(result.current.isSuccess).toBe(true);
});
// Second attempt - with wrong password
const wrongCredential = EmailAuthProvider.credential(
email,
"wrongPassword"
);
result.current.mutate({
user,
credential: wrongCredential,
});
await waitFor(() => {
expect(result.current.isError).toBe(true);
expectFirebaseError(result.current.error, "auth/wrong-password");
});
});
});