Spaces:
Sleeping
Sleeping
File size: 14,678 Bytes
79ed62f | 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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | import { describe, it, expect, beforeEach } from 'vitest';
import { http, HttpResponse } from 'msw';
import { server } from '../../helpers/msw/server';
import { useVacayStore } from '../../../src/store/vacayStore';
import { resetAllStores } from '../../helpers/store';
beforeEach(() => {
resetAllStores();
});
describe('vacayStore', () => {
describe('FE-VACAY-001: loadAll()', () => {
it('fetches plan, years, entries, and stats, updates state', async () => {
await useVacayStore.getState().loadAll();
const state = useVacayStore.getState();
expect(state.plan).not.toBeNull();
expect(state.plan?.id).toBe(1);
expect(state.years).toEqual([2025, 2026]);
expect(state.entries.length).toBeGreaterThan(0);
expect(state.stats.length).toBeGreaterThan(0);
expect(state.loading).toBe(false);
});
});
describe('FE-VACAY-002: toggleEntry()', () => {
it('calls the toggle API then reloads entries and stats', async () => {
// Seed selected year
useVacayStore.setState({ selectedYear: 2025 });
let toggled = false;
server.use(
http.post('/api/addons/vacay/entries/toggle', () => {
toggled = true;
return HttpResponse.json({ success: true });
})
);
await useVacayStore.getState().toggleEntry('2025-06-20');
expect(toggled).toBe(true);
// After toggle, entries are refreshed from MSW (2 entries)
expect(useVacayStore.getState().entries.length).toBe(2);
});
});
describe('FE-VACAY-003: loadHolidays() — holidays_enabled with calendars', () => {
it('populates holidays map when plan has holiday calendars', async () => {
// Set plan state with holidays_enabled and a simple (non-regional) calendar
useVacayStore.setState({
selectedYear: 2025,
plan: {
id: 1,
holidays_enabled: true,
holidays_region: null,
holiday_calendars: [
{ id: 1, plan_id: 1, region: 'DE', label: 'Germany', color: '#ef4444', sort_order: 0 },
],
block_weekends: true,
carry_over_enabled: false,
company_holidays_enabled: false,
},
});
// Override MSW to return non-regional holidays (no counties)
server.use(
http.get('/api/addons/vacay/holidays/:year/:country', () =>
HttpResponse.json([
{ date: '2025-12-25', name: 'Christmas', localName: 'Weihnachten', global: true, counties: null },
{ date: '2025-01-01', name: 'New Year', localName: 'Neujahr', global: true, counties: null },
])
)
);
await useVacayStore.getState().loadHolidays(2025);
const state = useVacayStore.getState();
expect(Object.keys(state.holidays).length).toBeGreaterThan(0);
expect(state.holidays['2025-12-25']).toBeDefined();
expect(state.holidays['2025-12-25'].name).toBe('Christmas');
});
});
describe('FE-VACAY-003b: loadHolidays() — holidays not enabled', () => {
it('sets holidays to empty map when holidays_enabled is false', async () => {
useVacayStore.setState({
selectedYear: 2025,
plan: {
id: 1,
holidays_enabled: false,
holidays_region: null,
holiday_calendars: [],
block_weekends: true,
carry_over_enabled: false,
company_holidays_enabled: false,
},
});
await useVacayStore.getState().loadHolidays(2025);
expect(useVacayStore.getState().holidays).toEqual({});
});
});
describe('FE-VACAY-004a: updatePlan()', () => {
it('updates plan and reloads entries, stats, holidays', async () => {
// Need existing plan for holiday check in loadHolidays
useVacayStore.setState({
selectedYear: 2025,
plan: {
id: 1,
holidays_enabled: false,
holidays_region: null,
holiday_calendars: [],
block_weekends: true,
carry_over_enabled: false,
company_holidays_enabled: false,
},
});
await useVacayStore.getState().updatePlan({ holidays_enabled: true });
const state = useVacayStore.getState();
// The MSW handler for PUT /addons/vacay/plan returns holidays_enabled: true
expect(state.plan?.holidays_enabled).toBe(true);
});
});
describe('FE-VACAY-004b: addYear()', () => {
it('adds a year and the years list is updated', async () => {
await useVacayStore.getState().addYear(2027);
expect(useVacayStore.getState().years).toContain(2027);
});
});
describe('FE-VACAY-004c: removeYear()', () => {
it('removes a year and updates the years list', async () => {
useVacayStore.setState({ years: [2025, 2026], selectedYear: 2026 });
await useVacayStore.getState().removeYear(2026);
const state = useVacayStore.getState();
// MSW returns [2025] after delete
expect(state.years).toEqual([2025]);
// selectedYear should shift to the last remaining year
expect(state.selectedYear).toBe(2025);
});
});
describe('FE-STORE-VACAY-005: setSelectedYear and setSelectedUserId', () => {
it('updates selectedYear state', () => {
useVacayStore.getState().setSelectedYear(2028);
expect(useVacayStore.getState().selectedYear).toBe(2028);
});
it('updates selectedUserId state', () => {
useVacayStore.getState().setSelectedUserId(42);
expect(useVacayStore.getState().selectedUserId).toBe(42);
});
it('sets selectedUserId to null', () => {
useVacayStore.setState({ selectedUserId: 42 });
useVacayStore.getState().setSelectedUserId(null);
expect(useVacayStore.getState().selectedUserId).toBeNull();
});
});
describe('FE-STORE-VACAY-006: loadEntries() uses selectedYear when no year arg', () => {
it('falls back to selectedYear when called without argument', async () => {
useVacayStore.setState({ selectedYear: 2025 });
await useVacayStore.getState().loadEntries();
expect(useVacayStore.getState().entries.length).toBe(2);
});
});
describe('FE-STORE-VACAY-007: loadStats() uses selectedYear when no year arg', () => {
it('falls back to selectedYear when called without argument', async () => {
useVacayStore.setState({ selectedYear: 2025 });
await useVacayStore.getState().loadStats();
expect(useVacayStore.getState().stats.length).toBe(1);
});
});
describe('FE-STORE-VACAY-008: invite()', () => {
it('calls invite API and reloads plan', async () => {
let inviteCalled = false;
server.use(
http.post('/api/addons/vacay/invite', () => {
inviteCalled = true;
return HttpResponse.json({ success: true });
})
);
await useVacayStore.getState().invite(5);
const state = useVacayStore.getState();
expect(inviteCalled).toBe(true);
expect(state.plan).not.toBeNull();
expect(state.plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-009: declineInvite()', () => {
it('calls decline API and reloads plan', async () => {
await useVacayStore.getState().declineInvite(2);
expect(useVacayStore.getState().plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-010: cancelInvite()', () => {
it('calls cancel API and reloads plan', async () => {
await useVacayStore.getState().cancelInvite(3);
const state = useVacayStore.getState();
expect(state.plan).not.toBeNull();
expect(state.plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-011: acceptInvite()', () => {
it('calls loadAll after accepting invite', async () => {
await useVacayStore.getState().acceptInvite(1);
const state = useVacayStore.getState();
expect(state.plan).not.toBeNull();
expect(state.years).toEqual([2025, 2026]);
expect(state.loading).toBe(false);
});
});
describe('FE-STORE-VACAY-012: dissolve()', () => {
it('calls loadAll after dissolving', async () => {
await useVacayStore.getState().dissolve();
const state = useVacayStore.getState();
expect(state.plan).not.toBeNull();
expect(state.loading).toBe(false);
});
});
describe('FE-STORE-VACAY-013: updateColor()', () => {
it('reloads plan and entries after updating color', async () => {
server.use(
http.put('/api/addons/vacay/color', () =>
HttpResponse.json({ success: true })
)
);
await useVacayStore.getState().updateColor('#ff0000');
const state = useVacayStore.getState();
expect(state.plan?.id).toBe(1);
expect(state.entries.length).toBe(2);
});
});
describe('FE-STORE-VACAY-014: toggleCompanyHoliday()', () => {
it('reloads entries and stats after toggling company holiday', async () => {
useVacayStore.setState({ selectedYear: 2025 });
server.use(
http.post('/api/addons/vacay/entries/company-holiday', () =>
HttpResponse.json({ success: true })
)
);
await useVacayStore.getState().toggleCompanyHoliday('2025-12-26');
const state = useVacayStore.getState();
expect(state.entries.length).toBe(2);
expect(state.stats.length).toBe(1);
});
});
describe('FE-STORE-VACAY-015: updateVacationDays()', () => {
it('reloads stats for the given year', async () => {
await useVacayStore.getState().updateVacationDays(2025, 25);
expect(useVacayStore.getState().stats.length).toBe(1);
});
});
describe('FE-STORE-VACAY-016: removeYear() when selectedYear is not the removed year', () => {
it('does not change selectedYear when a different year is removed', async () => {
useVacayStore.setState({ years: [2025, 2026], selectedYear: 2025 });
await useVacayStore.getState().removeYear(2026);
const state = useVacayStore.getState();
expect(state.years).toEqual([2025]);
expect(state.selectedYear).toBe(2025);
});
});
describe('FE-STORE-VACAY-017: addHolidayCalendar()', () => {
it('reloads plan and holidays after adding a holiday calendar', async () => {
server.use(
http.post('/api/addons/vacay/plan/holiday-calendars', () =>
HttpResponse.json({
calendar: { id: 1, plan_id: 1, region: 'DE', label: null, color: '#ef4444', sort_order: 0 },
})
)
);
await useVacayStore.getState().addHolidayCalendar({ region: 'DE', color: '#ef4444' });
expect(useVacayStore.getState().plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-018: updateHolidayCalendar()', () => {
it('reloads plan and holidays after updating a holiday calendar', async () => {
server.use(
http.put('/api/addons/vacay/plan/holiday-calendars/:id', () =>
HttpResponse.json({
calendar: { id: 1, plan_id: 1, region: 'US', label: 'US Holidays', color: '#3b82f6', sort_order: 0 },
})
)
);
await useVacayStore.getState().updateHolidayCalendar(1, { label: 'US Holidays' });
expect(useVacayStore.getState().plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-019: deleteHolidayCalendar()', () => {
it('reloads plan and holidays after deleting a holiday calendar', async () => {
await useVacayStore.getState().deleteHolidayCalendar(1);
expect(useVacayStore.getState().plan?.id).toBe(1);
});
});
describe('FE-STORE-VACAY-020: loadHolidays() with regional calendar includes matching counties', () => {
it('includes holidays matching the region county and excludes non-matching ones', async () => {
useVacayStore.setState({
selectedYear: 2025,
plan: {
id: 1,
holidays_enabled: true,
holidays_region: null,
holiday_calendars: [
{ id: 1, plan_id: 1, region: 'DE-BY', label: null, color: '#ef4444', sort_order: 0 },
],
block_weekends: false,
carry_over_enabled: false,
company_holidays_enabled: false,
},
});
server.use(
http.get('/api/addons/vacay/holidays/:year/:country', () =>
HttpResponse.json([
{ date: '2025-11-01', name: 'All Saints Day', localName: 'Allerheiligen', global: false, counties: ['DE-BY', 'DE-BW'] },
{ date: '2025-08-15', name: 'Assumption Day', localName: 'Mariä Himmelfahrt', global: false, counties: ['DE-BY'] },
{ date: '2025-03-19', name: 'St. Joseph', localName: 'Sankt Joseph', global: false, counties: ['DE-NW'] },
])
)
);
await useVacayStore.getState().loadHolidays(2025);
const holidays = useVacayStore.getState().holidays;
// DE-BY holidays should be included
expect(holidays['2025-11-01']).toBeDefined();
expect(holidays['2025-08-15']).toBeDefined();
// DE-NW only holiday should be excluded
expect(holidays['2025-03-19']).toBeUndefined();
});
});
describe('FE-STORE-VACAY-021: loadHolidays() skips regional calendar when data has no county breakdown', () => {
it('results in empty holidays map when all entries are global (no counties)', async () => {
useVacayStore.setState({
selectedYear: 2025,
plan: {
id: 1,
holidays_enabled: true,
holidays_region: null,
holiday_calendars: [
{ id: 1, plan_id: 1, region: 'DE-BY', label: null, color: '#ef4444', sort_order: 0 },
],
block_weekends: false,
carry_over_enabled: false,
company_holidays_enabled: false,
},
});
server.use(
http.get('/api/addons/vacay/holidays/:year/:country', () =>
HttpResponse.json([
{ date: '2025-12-25', name: 'Christmas', localName: 'Weihnachten', global: true, counties: null },
{ date: '2025-01-01', name: 'New Year', localName: 'Neujahr', global: true, counties: null },
])
)
);
await useVacayStore.getState().loadHolidays(2025);
// hasRegions is false (no counties), region is 'DE-BY' (non-null)
// so the condition `hasRegions && !region` is false → proceeds to county filter
// h.global is true → all holidays are included despite region filter
// Actually: global=true entries are included by the `h.global` check in the forEach
// The test verifies behavior when counties: null + global: true
const holidays = useVacayStore.getState().holidays;
// Global holidays are included even for regional calendars when counties data is absent
expect(holidays['2025-12-25']).toBeDefined();
});
});
});
|