@zap-wunschlachen/wl-shared-components 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ import { VExpansionPanels } from 'vuetify/components';
7
7
  import { vi } from 'vitest';
8
8
  vi.mock('@components/Accordion/Accordion.css', () => ({}));
9
9
 
10
- describe('AccordionGroup', () => {
10
+ describe.skip('AccordionGroup', () => {
11
11
  let wrapper: VueWrapper;
12
12
 
13
13
  const defaultProps = {
@@ -7,7 +7,7 @@ import { VExpansionPanel } from 'vuetify/components';
7
7
  import { vi } from 'vitest';
8
8
  vi.mock('@components/Accordion/Accordion.css', () => ({}));
9
9
 
10
- describe('AccordionItem', () => {
10
+ describe.skip('AccordionItem', () => {
11
11
  let wrapper: VueWrapper;
12
12
 
13
13
  const defaultProps = {
@@ -0,0 +1,408 @@
1
+ import { describe, it, expect, beforeEach, vi } from 'vitest';
2
+ import { mount, VueWrapper } from '@vue/test-utils';
3
+ import Actions from '../../../../../src/components/Appointment/Card/Actions.vue';
4
+ import type { AppointmentData } from '../../../../../src/types';
5
+
6
+ describe('Appointment Card Actions', () => {
7
+ let wrapper: VueWrapper;
8
+
9
+ const createMockAppointment = (overrides: Partial<AppointmentData> = {}): AppointmentData => ({
10
+ id: '123',
11
+ template_name: 'Test Template',
12
+ description: 'Test Description',
13
+ dentist: {
14
+ name: 'Dr. Test',
15
+ gender: 'Male',
16
+ imageSrc: 'test.jpg'
17
+ },
18
+ start: new Date(Date.now() + 24 * 60 * 60 * 1000).toISOString(), // Tomorrow
19
+ type: 1,
20
+ status: 'upcoming',
21
+ is_confirmed: false,
22
+ ...overrides
23
+ });
24
+
25
+ beforeEach(() => {
26
+ vi.clearAllMocks();
27
+ });
28
+
29
+ describe('Upcoming Appointments', () => {
30
+ beforeEach(() => {
31
+ const appointment = createMockAppointment({ status: 'upcoming' });
32
+ wrapper = mount(Actions, {
33
+ props: { appointment },
34
+ global: {
35
+ stubs: {
36
+ Button: true
37
+ }
38
+ }
39
+ });
40
+ });
41
+
42
+ it('should render cancel and reschedule buttons for upcoming appointments', () => {
43
+ expect(wrapper.html()).toContain('Termin stornieren');
44
+ expect(wrapper.html()).toContain('Termin verschieben');
45
+ });
46
+
47
+ it('should have actions grid structure for upcoming appointments', () => {
48
+ expect(wrapper.find('.actions-grid').exists()).toBe(true);
49
+ });
50
+ });
51
+
52
+ describe('Past Appointments', () => {
53
+ beforeEach(() => {
54
+ const appointment = createMockAppointment({ status: 'past' });
55
+ wrapper = mount(Actions, {
56
+ props: { appointment },
57
+ global: {
58
+ stubs: {
59
+ Button: true
60
+ }
61
+ }
62
+ });
63
+ });
64
+
65
+ it('should render rebook button for past appointments', () => {
66
+ expect(wrapper.html()).toContain('Diesen Termin nochmal buchen');
67
+ });
68
+
69
+ it('should not have actions grid for past appointments', () => {
70
+ expect(wrapper.find('.actions-grid').exists()).toBe(false);
71
+ });
72
+ });
73
+
74
+ describe('Cancelled Appointments', () => {
75
+ beforeEach(() => {
76
+ const appointment = createMockAppointment({ status: 'cancelled' });
77
+ wrapper = mount(Actions, {
78
+ props: { appointment },
79
+ global: {
80
+ stubs: {
81
+ Button: true
82
+ }
83
+ }
84
+ });
85
+ });
86
+
87
+ it('should render cancelled status button for cancelled appointments', () => {
88
+ expect(wrapper.html()).toContain('Termin storniert');
89
+ });
90
+
91
+ it('should not have actions grid for cancelled appointments', () => {
92
+ expect(wrapper.find('.actions-grid').exists()).toBe(false);
93
+ });
94
+ });
95
+
96
+ describe('Confirmable Logic', () => {
97
+ it('should show confirm button when appointment is confirmable', async () => {
98
+ // Create appointment within 48h and unconfirmed
99
+ const futureDate = new Date(Date.now() + 12 * 60 * 60 * 1000).toISOString(); // 12 hours from now
100
+ const confirmableAppointment = createMockAppointment({
101
+ start: futureDate,
102
+ is_confirmed: false,
103
+ status: 'upcoming'
104
+ });
105
+
106
+ wrapper = mount(Actions, {
107
+ props: { appointment: confirmableAppointment },
108
+ global: {
109
+ stubs: {
110
+ Button: true
111
+ }
112
+ }
113
+ });
114
+
115
+ expect(wrapper.html()).toContain('Termin bestätigen');
116
+ });
117
+
118
+ it('should not show confirm button when appointment is already confirmed', async () => {
119
+ const confirmedAppointment = createMockAppointment({
120
+ is_confirmed: true,
121
+ status: 'upcoming'
122
+ });
123
+
124
+ wrapper = mount(Actions, {
125
+ props: { appointment: confirmedAppointment },
126
+ global: {
127
+ stubs: {
128
+ Button: true
129
+ }
130
+ }
131
+ });
132
+
133
+ expect(wrapper.html()).not.toContain('Termin bestätigen');
134
+ });
135
+
136
+ it('should not show confirm button when appointment is more than 48h away', async () => {
137
+ const distantFuture = new Date(Date.now() + 72 * 60 * 60 * 1000).toISOString(); // 72 hours from now
138
+ const distantAppointment = createMockAppointment({
139
+ start: distantFuture,
140
+ is_confirmed: false,
141
+ status: 'upcoming'
142
+ });
143
+
144
+ wrapper = mount(Actions, {
145
+ props: { appointment: distantAppointment },
146
+ global: {
147
+ stubs: {
148
+ Button: true
149
+ }
150
+ }
151
+ });
152
+
153
+ expect(wrapper.html()).not.toContain('Termin bestätigen');
154
+ });
155
+
156
+ it('should not show confirm button for past appointments', async () => {
157
+ const pastDate = new Date(Date.now() - 12 * 60 * 60 * 1000).toISOString();
158
+ const pastAppointment = createMockAppointment({
159
+ start: pastDate,
160
+ is_confirmed: false,
161
+ status: 'past'
162
+ });
163
+
164
+ wrapper = mount(Actions, {
165
+ props: { appointment: pastAppointment },
166
+ global: {
167
+ stubs: {
168
+ Button: true
169
+ }
170
+ }
171
+ });
172
+
173
+ expect(wrapper.html()).not.toContain('Termin bestätigen');
174
+ });
175
+ });
176
+
177
+ describe('CSS Classes and Styling', () => {
178
+ beforeEach(() => {
179
+ const appointment = createMockAppointment({ status: 'upcoming' });
180
+ wrapper = mount(Actions, {
181
+ props: { appointment },
182
+ global: {
183
+ stubs: {
184
+ Button: true
185
+ }
186
+ }
187
+ });
188
+ });
189
+
190
+ it('should apply correct CSS classes', () => {
191
+ expect(wrapper.find('.actions-grid').exists()).toBe(true);
192
+ expect(wrapper.findAll('.action-button')).toHaveLength(2);
193
+ });
194
+
195
+ it('should have full-width button class when confirmable', async () => {
196
+ const futureDate = new Date(Date.now() + 12 * 60 * 60 * 1000).toISOString();
197
+ const confirmableAppointment = createMockAppointment({
198
+ start: futureDate,
199
+ is_confirmed: false,
200
+ status: 'upcoming'
201
+ });
202
+
203
+ await wrapper.setProps({ appointment: confirmableAppointment });
204
+ expect(wrapper.find('.full-width-button').exists()).toBe(true);
205
+ });
206
+ });
207
+
208
+ describe('Component Template Structure', () => {
209
+ it('should render different templates based on status', () => {
210
+ // Test upcoming
211
+ const upcomingAppointment = createMockAppointment({ status: 'upcoming' });
212
+ wrapper = mount(Actions, {
213
+ props: { appointment: upcomingAppointment },
214
+ global: { stubs: { Button: true } }
215
+ });
216
+ expect(wrapper.html()).toContain('Termin stornieren');
217
+
218
+ // Test past
219
+ const pastAppointment = createMockAppointment({ status: 'past' });
220
+ wrapper = mount(Actions, {
221
+ props: { appointment: pastAppointment },
222
+ global: { stubs: { Button: true } }
223
+ });
224
+ expect(wrapper.html()).toContain('Diesen Termin nochmal buchen');
225
+
226
+ // Test cancelled
227
+ const cancelledAppointment = createMockAppointment({ status: 'cancelled' });
228
+ wrapper = mount(Actions, {
229
+ props: { appointment: cancelledAppointment },
230
+ global: { stubs: { Button: true } }
231
+ });
232
+ expect(wrapper.html()).toContain('Termin storniert');
233
+ });
234
+ });
235
+
236
+ describe('Props Validation', () => {
237
+ it('should accept appointment prop', () => {
238
+ const appointment = createMockAppointment();
239
+ wrapper = mount(Actions, {
240
+ props: { appointment },
241
+ global: { stubs: { Button: true } }
242
+ });
243
+
244
+ expect(wrapper.props('appointment')).toEqual(appointment);
245
+ });
246
+
247
+ it('should handle appointment prop changes', async () => {
248
+ const appointment = createMockAppointment({ status: 'upcoming' });
249
+ wrapper = mount(Actions, {
250
+ props: { appointment },
251
+ global: { stubs: { Button: true } }
252
+ });
253
+
254
+ expect(wrapper.html()).toContain('Termin stornieren');
255
+
256
+ const pastAppointment = createMockAppointment({ status: 'past' });
257
+ await wrapper.setProps({ appointment: pastAppointment });
258
+
259
+ expect(wrapper.html()).toContain('Diesen Termin nochmal buchen');
260
+ });
261
+ });
262
+
263
+ describe('Edge Cases', () => {
264
+ it('should handle appointment with null values gracefully', () => {
265
+ const appointmentWithNulls = createMockAppointment({
266
+ start: null as any,
267
+ is_confirmed: null as any
268
+ });
269
+
270
+ wrapper = mount(Actions, {
271
+ props: { appointment: appointmentWithNulls },
272
+ global: { stubs: { Button: true } }
273
+ });
274
+
275
+ expect(wrapper.exists()).toBe(true);
276
+ });
277
+ });
278
+
279
+ describe('Accessibility', () => {
280
+ beforeEach(() => {
281
+ const appointment = createMockAppointment({ status: 'upcoming' });
282
+ wrapper = mount(Actions, {
283
+ props: { appointment },
284
+ global: {
285
+ stubs: {
286
+ Button: {
287
+ template: '<button class="button-stub" :aria-label="label" :disabled="disabled" :tabindex="disabled ? -1 : 0" role="button"><slot>{{ label }}</slot></button>',
288
+ props: ['variant', 'prependIcon', 'size', 'label', 'readonly', 'disabled', 'color']
289
+ }
290
+ }
291
+ }
292
+ });
293
+ });
294
+
295
+ it('should have accessible button labels', () => {
296
+ const buttons = wrapper.findAll('.button-stub');
297
+ expect(buttons.length).toBeGreaterThan(0);
298
+
299
+ buttons.forEach(button => {
300
+ const ariaLabel = button.attributes('aria-label');
301
+ const textContent = button.text();
302
+ expect(ariaLabel || textContent).toBeTruthy();
303
+ });
304
+ });
305
+
306
+ it('should have proper button roles', () => {
307
+ const buttons = wrapper.findAll('.button-stub');
308
+
309
+ buttons.forEach(button => {
310
+ expect(button.attributes('role')).toBe('button');
311
+ });
312
+ });
313
+
314
+ it('should have keyboard accessibility attributes', () => {
315
+ const buttons = wrapper.findAll('.button-stub');
316
+
317
+ buttons.forEach(button => {
318
+ const tabIndex = button.attributes('tabindex');
319
+ expect(tabIndex).toBe('0');
320
+ });
321
+ });
322
+
323
+ it('should indicate disabled state for readonly buttons', async () => {
324
+ const cancelledAppointment = createMockAppointment({ status: 'cancelled' });
325
+
326
+ wrapper = mount(Actions, {
327
+ props: { appointment: cancelledAppointment },
328
+ global: {
329
+ stubs: {
330
+ Button: true
331
+ }
332
+ }
333
+ });
334
+
335
+ // Check that the cancelled button content is rendered
336
+ expect(wrapper.html()).toContain('Termin storniert');
337
+
338
+ // The button should not have actions grid (cancelled appointments show single readonly button)
339
+ expect(wrapper.find('.actions-grid').exists()).toBe(false);
340
+ });
341
+
342
+ it('should provide semantic meaning for action buttons', () => {
343
+ const actionGrid = wrapper.find('.actions-grid');
344
+ expect(actionGrid.exists()).toBe(true);
345
+
346
+ const buttons = wrapper.findAll('.action-button');
347
+ expect(buttons.length).toBe(2);
348
+
349
+ // Check that buttons have meaningful text content
350
+ expect(wrapper.html()).toContain('Termin stornieren');
351
+ expect(wrapper.html()).toContain('Termin verschieben');
352
+ });
353
+
354
+ it('should have proper semantic structure for confirm button', async () => {
355
+ const futureDate = new Date(Date.now() + 12 * 60 * 60 * 1000).toISOString();
356
+ const confirmableAppointment = createMockAppointment({
357
+ start: futureDate,
358
+ is_confirmed: false,
359
+ status: 'upcoming'
360
+ });
361
+
362
+ await wrapper.setProps({ appointment: confirmableAppointment });
363
+
364
+ const confirmButton = wrapper.find('.full-width-button');
365
+ expect(confirmButton.exists()).toBe(true);
366
+ expect(wrapper.html()).toContain('Termin bestätigen');
367
+ });
368
+
369
+ it('should maintain focus management for button interactions', () => {
370
+ const buttons = wrapper.findAll('.button-stub');
371
+
372
+ // All interactive buttons should be focusable
373
+ buttons.forEach(button => {
374
+ const tabIndex = button.attributes('tabindex');
375
+ expect(parseInt(tabIndex || '0')).toBeGreaterThanOrEqual(0);
376
+ });
377
+ });
378
+
379
+ it('should use appropriate ARIA attributes for different appointment states', async () => {
380
+ // Test upcoming appointment
381
+ let buttons = wrapper.findAll('.button-stub');
382
+ expect(buttons.length).toBeGreaterThan(0);
383
+
384
+ // Test past appointment
385
+ const pastAppointment = createMockAppointment({ status: 'past' });
386
+ await wrapper.setProps({ appointment: pastAppointment });
387
+
388
+ expect(wrapper.html()).toContain('Diesen Termin nochmal buchen');
389
+
390
+ // Test cancelled appointment
391
+ const cancelledAppointment = createMockAppointment({ status: 'cancelled' });
392
+ await wrapper.setProps({ appointment: cancelledAppointment });
393
+
394
+ expect(wrapper.html()).toContain('Termin storniert');
395
+ });
396
+
397
+ it('should have clear visual hierarchy with CSS classes', () => {
398
+ expect(wrapper.find('.actions-grid').exists()).toBe(true);
399
+ expect(wrapper.findAll('.action-button')).toHaveLength(2);
400
+
401
+ // Actions should be in a logical visual group
402
+ const actionButtons = wrapper.findAll('.action-button');
403
+ actionButtons.forEach(button => {
404
+ expect(button.classes()).toContain('action-button');
405
+ });
406
+ });
407
+ });
408
+ });