Changes between Version 6 and Version 7 of Testing and Validation


Ignore:
Timestamp:
05/19/26 00:23:59 (8 days ago)
Author:
193284
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Testing and Validation

    v6 v7  
    168168Returns FALSE if the band already has a conflicting booking.
    169169
    170 == 6. Wedding Financial Summary View Test ==
     170== 6. Photographer Overlap Validation Test ==
     171
     172=== SQL Code ===
     173
     174{{{
     175#!sql
     176SELECT is_photographer_available(
     177    1,
     178    '2026-06-20',
     179    '19:00',
     180    '21:00'
     181);
     182}}}
     183
     184=== Expected Result ===
     185
     186Returns FALSE because the requested interval overlaps with an existing photographer booking.
     187
     188== 7. Band Overlap Validation Test ==
     189
     190=== SQL Code ===
     191
     192{{{
     193#!sql
     194SELECT is_band_available(
     195    1,
     196    '2026-06-20',
     197    '17:00',
     198    '23:00'
     199);
     200}}}
     201
     202=== Expected Result ===
     203
     204Returns FALSE because the requested interval overlaps with an existing band booking.
     205
     206== 8. Wedding Financial Summary View Test ==
    171207
    172208=== SQL Code ===
     
    182218Displays wedding budget information, total booking expenses, and remaining budget calculations.
    183219
    184 == 7. RSVP Overview View Test ==
     220== 9. RSVP Overview View Test ==
    185221
    186222=== SQL Code ===
     
    196232Displays grouped RSVP statistics for guests and events.
    197233
    198 == 8. Vendor Booking Overview View Test ==
     234== 10. Vendor Booking Overview View Test ==
    199235
    200236=== SQL Code ===
     
    210246Displays venue, photographer, and band booking information for weddings.
    211247
    212 == 9. Upcoming Weddings View Test ==
     248== 11. Upcoming Weddings View Test ==
    213249
    214250=== SQL Code ===
     
    224260Displays weddings scheduled for future dates only.
    225261
    226 == 10. RSVP Summary Procedure Test ==
     262== 12. RSVP Summary Procedure Test ==
    227263
    228264=== SQL Code ===
     
    237273Displays NOTICE messages containing accepted, declined, and pending RSVP counts for the selected event.
    238274
    239 == 11. Constraint Validation Test ==
     275== 13. Constraint Validation Test ==
    240276
    241277=== SQL Code ===