-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhooks.test.tsx
124 lines (93 loc) · 2.82 KB
/
hooks.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
import '@testing-library/jest-dom';
import { Component } from 'react';
import { cleanup, render, waitFor } from '@testing-library/react';
import { configureAuthentication, getService } from '../src/config';
import { useCurrentUser, useIsLoggedIn } from '../src/hooks';
afterEach(cleanup);
type User = {
username: string;
};
describe('useCurrentUser', () => {
function Welcome() {
const user = useCurrentUser<User>();
return <p data-testid="header">Welcome {user.username}</p>;
}
class ErrorBoundary extends Component {
state = {
hasError: false,
message: ''
};
static getDerivedStateFromError(error: Error) {
// Update state so the next render will show the fallback UI.
return { hasError: true, message: error.message };
}
render() {
const { hasError, message } = this.state;
if (hasError) {
// You can render any custom fallback UI
return <h1 data-testid="error">{message}</h1>;
}
// @ts-expect-error Props should include children
return this.props.children;
}
}
function setup({ isLoggedIn }: { isLoggedIn: boolean }) {
configureAuthentication<User>();
if (isLoggedIn) {
getService().login({ username: 'John' });
}
jest.spyOn(console, 'error').mockImplementation(() => undefined);
return render(
<ErrorBoundary>
<Welcome />
</ErrorBoundary>
);
}
test('loggedIn', async () => {
expect.assertions(1);
const { getByTestId } = setup({ isLoggedIn: true });
await waitFor(() => {
expect(getByTestId('header')).toHaveTextContent('Welcome John');
});
});
test('not logged in', async () => {
expect.assertions(1);
const { getByTestId } = setup({ isLoggedIn: false });
await waitFor(() => {
expect(getByTestId('error')).toHaveTextContent(
'@42bv/authentication: Asked for current user whilst not logged in'
);
});
});
});
describe('useLoggedIn', () => {
function Component() {
const isLoggedIn = useIsLoggedIn();
return (
<p data-testid="header">
{isLoggedIn ? 'You are logged in' : 'Please log in'}
</p>
);
}
function setup({ isLoggedIn }: { isLoggedIn: boolean }) {
configureAuthentication<User>();
if (isLoggedIn) {
getService().login({ username: 'John' });
}
return render(<Component />);
}
test('loggedIn', async () => {
expect.assertions(1);
const { getByTestId } = setup({ isLoggedIn: true });
await waitFor(() => {
expect(getByTestId('header')).toHaveTextContent('You are logged in');
});
});
test('not logged in', async () => {
expect.assertions(1);
const { getByTestId } = setup({ isLoggedIn: false });
await waitFor(() => {
expect(getByTestId('header')).toHaveTextContent('Please log in');
});
});
});