-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathuseUserProfile.test.ts
262 lines (204 loc) · 7.59 KB
/
useUserProfile.test.ts
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
import { abandonedPromise } from '@terra-ui-packages/core-utils';
import { act } from '@testing-library/react';
import _ from 'lodash/fp';
import { refreshTerraProfile } from 'src/auth/user-profile/user';
import { User } from 'src/libs/ajax/User';
import { reportError } from 'src/libs/error';
import { TerraUserProfile, userStore } from 'src/libs/state';
import { asMockedFn, renderHookInAct } from 'src/testing/test-utils';
import { useUserProfile } from './useUserProfile';
type UserExports = typeof import('src/libs/ajax/User');
jest.mock('src/libs/ajax/User', (): UserExports => {
return {
...jest.requireActual<UserExports>('src/libs/ajax/User'),
User: jest.fn(),
};
});
jest.mock('src/auth/user-profile/user');
type SignOutExports = typeof import('src/auth/signout/sign-out');
jest.mock(
'src/auth/signout/sign-out',
(): SignOutExports => ({
signOut: jest.fn(),
userSignedOut: jest.fn(),
})
);
type ErrorExports = typeof import('src/libs/error');
jest.mock('src/libs/error', (): ErrorExports => {
return {
...jest.requireActual<ErrorExports>('src/libs/error'),
reportError: jest.fn(),
};
});
type UserContract = ReturnType<typeof User>;
const mockProfile: TerraUserProfile = {
firstName: 'Test',
lastName: 'User',
// email: '[email protected]',
contactEmail: '',
institute: '',
title: '',
department: '',
programLocationCity: '',
programLocationState: '',
programLocationCountry: '',
researchArea: '',
interestInTerra: undefined,
};
describe('useUserProfile', () => {
beforeEach(() => {
userStore.update((state) => {
return {
...state,
profile: mockProfile,
};
});
});
it('returns user profile from global auth store', async () => {
// Act
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
const initialResult = hookReturnRef.current;
// Any change to the auth store should cause the hook to rerender.
const updatedProfile = { ...mockProfile, firstName: 'Test' };
act(() =>
userStore.update((state) => {
return {
...state,
profile: updatedProfile,
};
})
);
const resultAfterUpdate = hookReturnRef.current;
// Assert
expect(initialResult.profile.state).toEqual(mockProfile);
expect(resultAfterUpdate.profile.state).toEqual(updatedProfile);
});
describe('refreshing the profile', () => {
it('refreshes the profile when mounted', async () => {
// Act
await renderHookInAct(() => useUserProfile());
// Assert
expect(refreshTerraProfile).toHaveBeenCalled();
});
it('returns a function to refresh the profile', async () => {
// Arrange
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Clear the mock after the hook's initial/automatic refresh.
asMockedFn(refreshTerraProfile).mockReset();
expect(refreshTerraProfile).not.toHaveBeenCalled();
// Act
await act(() => hookReturnRef.current.refresh());
// Assert
expect(refreshTerraProfile).toHaveBeenCalled();
});
it('returns loading status while profile is loading', async () => {
// Arrange
asMockedFn(refreshTerraProfile).mockReturnValue(abandonedPromise());
// Act
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Assert
expect(hookReturnRef.current.profile.status).toBe('Loading');
});
it('returns ready status after profile has loaded', async () => {
// Arrange
asMockedFn(refreshTerraProfile).mockResolvedValue();
// Act
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Assert
expect(hookReturnRef.current.profile.status).toBe('Ready');
});
it('returns error status if profile refresh fails', async () => {
// Arrange
asMockedFn(refreshTerraProfile).mockRejectedValue(new Error('Something went wrong'));
// Act
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Assert
expect(hookReturnRef.current.profile.status).toBe('Error');
});
it('returns reports error if profile refresh fails', async () => {
// Arrange
asMockedFn(refreshTerraProfile).mockRejectedValue(new Error('Something went wrong'));
// Act
await renderHookInAct(() => useUserProfile());
// Assert
expect(reportError).toHaveBeenCalledWith('Error loading profile', new Error('Something went wrong'));
});
});
describe('updating the profile', () => {
let updateProfile;
beforeEach(() => {
asMockedFn(refreshTerraProfile).mockReturnValue(Promise.resolve());
updateProfile = jest.fn().mockReturnValue(abandonedPromise());
asMockedFn(User).mockImplementation(() => {
return {
profile: {
update: updateProfile,
},
} as unknown as UserContract;
});
});
const updatedProfile: TerraUserProfile = {
...mockProfile,
firstName: 'Updated',
lastName: 'Name',
};
it('returns a function to update the profile', async () => {
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Act
act(() => {
hookReturnRef.current.update(updatedProfile);
});
// Assert
// Not all profile fields are updated via this request.
expect(updateProfile).toHaveBeenCalledWith(_.omit(['email', 'interestInTerra'], updatedProfile));
});
it('returns loading status while profile is updating', async () => {
// Arrange
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Act
act(() => {
hookReturnRef.current.update(updatedProfile);
});
// Assert
expect(hookReturnRef.current.profile.status).toBe('Loading');
});
it('refreshes profile after updating profile', async () => {
// Arrange
updateProfile.mockReturnValue(Promise.resolve());
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Reset mock after initial refresh.
asMockedFn(refreshTerraProfile).mockReset();
expect(refreshTerraProfile).not.toHaveBeenCalled();
// Act
await act(() => hookReturnRef.current.update(updatedProfile));
// Assert
expect(refreshTerraProfile).toHaveBeenCalled();
});
it('returns ready status after profile has updated and refreshed', async () => {
// Arrange
updateProfile.mockReturnValue(Promise.resolve());
// Act
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Assert
expect(hookReturnRef.current.profile.status).toBe('Ready');
});
it('returns error status if profile update fails', async () => {
// Arrange
asMockedFn(updateProfile).mockRejectedValue(new Error('Something went wrong'));
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Act
await act(() => hookReturnRef.current.update(updatedProfile));
// Assert
expect(hookReturnRef.current.profile.status).toBe('Error');
});
it('returns reports error if profile update fails', async () => {
// Arrange
asMockedFn(updateProfile).mockRejectedValue(new Error('Something went wrong'));
const { result: hookReturnRef } = await renderHookInAct(() => useUserProfile());
// Act
await act(() => hookReturnRef.current.update(updatedProfile));
// Assert
expect(reportError).toHaveBeenCalledWith('Error saving profile', new Error('Something went wrong'));
});
});
});