forked from valhalla/web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaypoints.spec.tsx
More file actions
252 lines (209 loc) · 6.95 KB
/
waypoints.spec.tsx
File metadata and controls
252 lines (209 loc) · 6.95 KB
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
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { Waypoints } from './waypoints';
const mockUpdateSettings = vi.fn();
const mockClearIsos = vi.fn();
const mockUpdateTextInput = vi.fn();
const mockReceiveGeocodeResults = vi.fn();
const mockRefetchIsochrones = vi.fn();
const mockNavigate = vi.fn();
vi.mock('@tanstack/react-router', () => ({
useNavigate: vi.fn(() => mockNavigate),
}));
vi.mock('@/utils/parse-url-params', () => ({
parseUrlParams: vi.fn(() => ({})),
}));
vi.mock('@/stores/isochrones-store', () => ({
useIsochronesStore: vi.fn((selector) =>
selector({
updateSettings: mockUpdateSettings,
clearIsos: mockClearIsos,
updateTextInput: mockUpdateTextInput,
maxRange: 30,
interval: 10,
denoise: 1,
generalize: 200,
userInput: 'Berlin',
geocodeResults: [
{ selected: true, sourcelnglat: [13.4, 52.5] } as any,
{ selected: true, sourcelnglat: [20.6, 39.1] } as any,
{ selected: true, sourcelnglat: [29.7, 41.2] } as any,
],
receiveGeocodeResults: mockReceiveGeocodeResults,
})
),
}));
vi.mock('@/hooks/use-isochrones-queries', () => ({
useIsochronesQuery: vi.fn(() => ({
refetch: mockRefetchIsochrones,
})),
}));
vi.mock('@/components/ui/waypoint-search', () => ({
WaypointSearch: vi.fn(
({ userInput, onGeocodeResults, onResultSelect, rightContent }) => (
<div data-testid="mock-waypoint-search">
<span data-testid="waypoint-user-input">{userInput}</span>
<button
data-testid="trigger-geocode"
onClick={() =>
onGeocodeResults([
{ title: 'Test Result', addressindex: 0, lngLat: [0, 0] },
])
}
>
Trigger Geocode
</button>
<button
data-testid="select-result"
onClick={() =>
onResultSelect({
title: 'Selected Location',
addressindex: 0,
lngLat: [13.4, 52.5],
})
}
>
Select Result
</button>
{rightContent}
</div>
)
),
}));
vi.mock('@/components/ui/slider-setting', () => ({
SliderSetting: vi.fn(
({ id, label, value, onValueChange, onValueCommit, onInputChange }) => (
<div data-testid={`slider-${id}`}>
<label htmlFor={id}>{label}</label>
<input
id={id}
type="range"
value={value}
onChange={(e) => onValueChange([Number(e.target.value)])}
onMouseUp={() => onValueCommit?.()}
data-testid={`slider-input-${id}`}
/>
<button
data-testid={`slider-commit-${id}`}
onClick={() => onInputChange?.([value + 5])}
>
Change {label}
</button>
</div>
)
),
}));
describe('Waypoints (Isochrones)', () => {
beforeEach(() => {
vi.clearAllMocks();
});
it('should render without crashing', () => {
expect(() => render(<Waypoints />)).not.toThrow();
});
it('should render waypoint search component', () => {
render(<Waypoints />);
expect(screen.getByTestId('mock-waypoint-search')).toBeInTheDocument();
});
it('should display user input value', () => {
render(<Waypoints />);
expect(screen.getByTestId('waypoint-user-input')).toHaveTextContent(
'Berlin'
);
});
it('should render remove waypoint button', () => {
render(<Waypoints />);
expect(screen.getByTestId('remove-waypoint-button')).toBeInTheDocument();
});
it('should call clearIsos when remove button is clicked', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(screen.getByTestId('remove-waypoint-button'));
expect(mockClearIsos).toHaveBeenCalled();
});
it('should render Isochrones Settings button', () => {
render(<Waypoints />);
expect(
screen.getByRole('button', { name: /Isochrones Settings/i })
).toBeInTheDocument();
});
it('should expand settings when Isochrones Settings is clicked', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
expect(screen.getByTestId('slider-maxRange')).toBeInTheDocument();
expect(screen.getByTestId('slider-interval')).toBeInTheDocument();
expect(screen.getByTestId('slider-denoise')).toBeInTheDocument();
expect(screen.getByTestId('slider-generalize')).toBeInTheDocument();
});
it('should render Maximum Range slider with correct label', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
expect(screen.getByText('Maximum Range')).toBeInTheDocument();
});
it('should render Interval Step slider', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
expect(screen.getByText('Interval Step')).toBeInTheDocument();
});
it('should render Denoise slider', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
expect(screen.getByText('Denoise')).toBeInTheDocument();
});
it('should render Generalize slider', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
expect(screen.getByText('Generalize')).toBeInTheDocument();
});
it('should call receiveGeocodeResults when geocode results are received', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(screen.getByTestId('trigger-geocode'));
expect(mockReceiveGeocodeResults).toHaveBeenCalledWith([
{ title: 'Test Result', addressindex: 0, lngLat: [0, 0] },
]);
});
it('should call updateTextInput when result is selected', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(screen.getByTestId('select-result'));
expect(mockUpdateTextInput).toHaveBeenCalledWith({
userInput: 'Selected Location',
addressIndex: 0,
});
});
it('should call updateSettings when slider value changes', async () => {
const user = userEvent.setup();
render(<Waypoints />);
await user.click(
screen.getByRole('button', { name: /Isochrones Settings/i })
);
await user.click(screen.getByTestId('slider-commit-maxRange'));
expect(mockUpdateSettings).toHaveBeenCalledWith({
name: 'maxRange',
value: 35,
});
});
it('should sync settings to URL on mount', () => {
render(<Waypoints />);
expect(mockNavigate).toHaveBeenCalledWith({
search: expect.any(Function),
replace: true,
});
});
});