fix: correct travel segment placement for next-day departures

Travel segments appeared one day too late on featured/suggested trips
when stops had next-morning departures. The placement formula double-
counted by using fromDayNum+1 as both minDay and defaultDay, then the
invalid-range fallback used minDay (the overshooting value) instead of
the arrival day. Also replaced TripDetailView's inline copy of the
placement logic with TravelPlacement.computeTravelByDay() so the UI
uses the same tested algorithm.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-02-11 09:53:25 -06:00
parent d63d311cab
commit 633f7d883f
3 changed files with 144 additions and 37 deletions

View File

@@ -25,6 +25,15 @@ final class TravelPlacementTests: XCTestCase {
return calendar.startOfDay(for: calendar.date(from: components)!)
}
/// Create a date for March 2026 at a given day number.
private func mar(_ day: Int) -> Date {
var components = DateComponents()
components.year = 2026
components.month = 3
components.day = day
return calendar.startOfDay(for: calendar.date(from: components)!)
}
/// Build an array of trip days from start to end (inclusive).
private func tripDays(from start: Date, to end: Date) -> [Date] {
var days: [Date] = []
@@ -230,4 +239,123 @@ final class TravelPlacementTests: XCTestCase {
XCTAssertEqual(result.count, 1, "Travel segment should be placed")
XCTAssertNotNil(result[2], "Travel should be on Day 2 (arrival day)")
}
// MARK: - Next-Day Departure Bug (Featured/Suggested trips)
func test_nextDayDeparture_travelPlacedOnArrivalDay() {
// The exact bug scenario from featured trips:
// Clearwater arrives May 1, departs May 2 (next-morning departure)
// New Orleans arrives May 2, departs May 3
//
// BUG: fromDayNum=2 (May 2), minDay=fromDayNum+1=3, toDayNum=2 (May 2)
// minDay(3) > maxDay(2) fallback uses minDay=3 travel on Day 3 (WRONG)
// FIX: Travel should be on Day 2 (the arrival day)
let stops = [
makeStop(city: "Clearwater", arrival: may(1), departure: may(2)),
makeStop(city: "New Orleans", arrival: may(2), departure: may(3))
]
let segments = [makeSegment(from: "Clearwater", to: "New Orleans")]
let trip = Trip(
name: "Featured Trip",
preferences: TripPreferences(),
stops: stops,
travelSegments: segments,
totalGames: 0,
totalDistanceMeters: 0,
totalDrivingSeconds: 0
)
let days = tripDays(from: may(1), to: may(3))
let result = TravelPlacement.computeTravelByDay(trip: trip, tripDays: days)
XCTAssertEqual(result.count, 1, "Should have 1 travel segment placed")
XCTAssertNotNil(result[2], "Travel should be on Day 2 (arrival day, not Day 3)")
XCTAssertNil(result[3], "Travel should NOT be on Day 3 (the overshoot)")
}
func test_nextDayDeparture_withGap_travelPlacedCorrectly() {
// Next-day departure with a multi-day gap to next stop:
// Stop A arrives May 1, departs May 2 (next morning)
// Stop B arrives May 5, departs May 6
//
// fromDayNum=2, minDay=3, toDayNum=5 minDay(3) <= maxDay(5) travel on Day 3
// But ideally travel should be on Day 2 (the departure day itself).
// After fix: defaultDay = min(fromDayNum+1, toDayNum) = min(3, 5) = 3
// This is still valid (day 3 is within range), but the key fix is the
// invalid-range case doesn't apply here.
let stops = [
makeStop(city: "StopA", arrival: may(1), departure: may(2)),
makeStop(city: "StopB", arrival: may(5), departure: may(6))
]
let segments = [makeSegment(from: "StopA", to: "StopB")]
let trip = Trip(
name: "Gap Trip",
preferences: TripPreferences(),
stops: stops,
travelSegments: segments,
totalGames: 0,
totalDistanceMeters: 0,
totalDrivingSeconds: 0
)
let days = tripDays(from: may(1), to: may(6))
let result = TravelPlacement.computeTravelByDay(trip: trip, tripDays: days)
XCTAssertEqual(result.count, 1, "Should have 1 travel segment placed")
// Travel should be within valid range [3...5], defaulting to Day 3
let placedDay = result.keys.first!
XCTAssertGreaterThanOrEqual(placedDay, 2, "Travel should be on or after departure day")
XCTAssertLessThanOrEqual(placedDay, 5, "Travel should be on or before arrival day")
}
func test_threeStops_nextDayDeparture_allSegmentsPlaced() {
// Full featured trip pattern with 3 stops, all next-day departures:
// Stop A: arrival Mar 15, departure Mar 16
// Stop B: arrival Mar 16, departure Mar 17
// Stop C: arrival Mar 20, departure Mar 21
//
// Segment 0 (AB): fromDayNum=2 (Mar 16), toDayNum=2 (Mar 16)
// BUG: minDay=3, maxDay=2 fallback to minDay=3 (Day 3 = Mar 17) WRONG
// FIX: Travel on Day 2 (Mar 16, arrival day)
//
// Segment 1 (BC): fromDayNum=3 (Mar 17), toDayNum=6 (Mar 20)
// minDay=4, maxDay=6 travel on Day 4 (Mar 18) this works correctly
let stops = [
makeStop(city: "StopA", arrival: mar(15), departure: mar(16)),
makeStop(city: "StopB", arrival: mar(16), departure: mar(17)),
makeStop(city: "StopC", arrival: mar(20), departure: mar(21))
]
let segments = [
makeSegment(from: "StopA", to: "StopB"),
makeSegment(from: "StopB", to: "StopC")
]
let trip = Trip(
name: "Three Stop Featured",
preferences: TripPreferences(),
stops: stops,
travelSegments: segments,
totalGames: 0,
totalDistanceMeters: 0,
totalDrivingSeconds: 0
)
let days = tripDays(from: mar(15), to: mar(21))
let result = TravelPlacement.computeTravelByDay(trip: trip, tripDays: days)
XCTAssertEqual(result.count, 2, "Both travel segments should be placed")
// Segment 0 (AB): should be on Day 2 (Mar 16, the arrival/departure day)
XCTAssertNotNil(result[2], "A→B travel should be on Day 2 (Mar 16)")
// Segment 1 (BC): should be on Day 3 or 4 (Mar 17 or 18, within valid range)
let seg1Day = result.first(where: { $0.key != 2 })?.key
XCTAssertNotNil(seg1Day, "B→C travel should be placed")
if let day = seg1Day {
XCTAssertGreaterThanOrEqual(day, 3, "B→C travel should be on or after Day 3")
XCTAssertLessThanOrEqual(day, 6, "B→C travel should be on or before Day 6")
}
}
}