-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reproduce #301: If a leg of an overnight travel is completely in the …
…next day, it will be reported with the date of the departure day.
- Loading branch information
Showing
3 changed files
with
5,354 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// todo: use import assertions once they're supported by Node.js & ESLint | ||
// https://github.com/tc39/proposal-import-assertions | ||
import {createRequire} from 'module' | ||
const require = createRequire(import.meta.url) | ||
|
||
import tap from 'tap' | ||
|
||
import {createClient} from '../index.js' | ||
import {profile as rawProfile} from '../p/db/index.js' | ||
const res = require('./fixtures/db-journey-overnight.json') | ||
const expected = require('./fixtures/db-journey-overnight.expected.json') | ||
|
||
const client = createClient(rawProfile, 'public-transport/hafas-client:test') | ||
const {profile} = client | ||
|
||
const opt = { | ||
results: 4, | ||
via: null, | ||
stopovers: true, | ||
transfers: -1, | ||
transferTime: 0, | ||
accessibility: 'none', | ||
bike: false, | ||
tickets: true, | ||
polylines: true, | ||
remarks: true, | ||
walkingSpeed: 'normal', | ||
startWithWalking: true, | ||
scheduledDays: false, | ||
departure: '2023-11-13T22:00:00+01:00', | ||
products: {} | ||
} | ||
|
||
tap.test('parses a journey across day with correct timestamps', (t) => { | ||
const common = profile.parseCommon({profile, opt, res}) | ||
const ctx = {profile, opt, common, res} | ||
const journey = profile.parseJourney(ctx, res.outConL[16]) | ||
|
||
t.same(journey, expected) | ||
t.end() | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
{ | ||
"type": "journey", | ||
"legs": [ | ||
{ | ||
"origin": { | ||
"type": "stop", | ||
"id": "8000193", | ||
"name": "Kassel Hbf", | ||
"location": { | ||
"type": "location", | ||
"id": "8000193", | ||
"latitude": 51.31832, | ||
"longitude": 9.489903 | ||
}, | ||
"products": { | ||
"nationalExpress": false, | ||
"national": false, | ||
"regionalExpress": false, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": false, | ||
"tram": true, | ||
"taxi": false | ||
} | ||
}, | ||
"destination": { | ||
"type": "stop", | ||
"id": "8003200", | ||
"name": "Kassel-Wilhelmshöhe", | ||
"location": { | ||
"type": "location", | ||
"id": "8003200", | ||
"latitude": 51.312998, | ||
"longitude": 9.446845 | ||
}, | ||
"products": { | ||
"nationalExpress": true, | ||
"national": true, | ||
"regionalExpress": true, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": false, | ||
"tram": true, | ||
"taxi": false | ||
} | ||
}, | ||
"departure": "2023-11-13T22:14:00+01:00", | ||
"plannedDeparture": "2023-11-13T22:14:00+01:00", | ||
"departureDelay": null, | ||
"arrival": "2023-11-13T22:21:00+01:00", | ||
"plannedArrival": "2023-11-13T22:21:00+01:00", | ||
"arrivalDelay": null, | ||
"public": true, | ||
"walking": true, | ||
"distance": null, | ||
"transfer": true | ||
}, | ||
{ | ||
"origin": { | ||
"type": "stop", | ||
"id": "8003200", | ||
"name": "Kassel-Wilhelmshöhe", | ||
"location": { | ||
"type": "location", | ||
"id": "8003200", | ||
"latitude": 51.312998, | ||
"longitude": 9.446845 | ||
}, | ||
"products": { | ||
"nationalExpress": true, | ||
"national": true, | ||
"regionalExpress": true, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": false, | ||
"tram": true, | ||
"taxi": false | ||
} | ||
}, | ||
"destination": { | ||
"type": "stop", | ||
"id": "8000147", | ||
"name": "Hamburg-Harburg", | ||
"location": { | ||
"type": "location", | ||
"id": "8000147", | ||
"latitude": 0, | ||
"longitude": 0 | ||
}, | ||
"products": { | ||
"nationalExpress": true, | ||
"national": true, | ||
"regionalExpress": true, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": false, | ||
"tram": false, | ||
"taxi": false | ||
} | ||
}, | ||
"departure": "2023-11-13T22:21:00+01:00", | ||
"plannedDeparture": "2023-11-13T22:21:00+01:00", | ||
"departureDelay": null, | ||
"arrival": "2023-11-14T01:22:00+01:00", | ||
"plannedArrival": "2023-11-14T01:22:00+01:00", | ||
"arrivalDelay": null, | ||
"reachable": true, | ||
"tripId": "1|202739|0|80|-1", | ||
"line": { | ||
"type": "line", | ||
"id": "ice-592", | ||
"fahrtNr": null, | ||
"name": "ICE 592", | ||
"public": true, | ||
"productName": "ICE" | ||
}, | ||
"direction": null, | ||
"arrivalPlatform": null, | ||
"plannedArrivalPlatform": null, | ||
"arrivalPrognosisType": null, | ||
"departurePlatform": "1", | ||
"plannedDeparturePlatform": "1", | ||
"departurePrognosisType": null | ||
}, | ||
{ | ||
"origin": { | ||
"type": "stop", | ||
"id": "8000147", | ||
"name": "Hamburg-Harburg", | ||
"location": { | ||
"type": "location", | ||
"id": "8000147", | ||
"latitude": 0, | ||
"longitude": 0 | ||
}, | ||
"products": { | ||
"nationalExpress": true, | ||
"national": true, | ||
"regionalExpress": true, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": false, | ||
"tram": false, | ||
"taxi": false | ||
} | ||
}, | ||
"destination": { | ||
"type": "stop", | ||
"id": "8002549", | ||
"name": "Hamburg Hbf", | ||
"location": { | ||
"type": "location", | ||
"id": "8002549", | ||
"latitude": 0, | ||
"longitude": 0 | ||
}, | ||
"products": { | ||
"nationalExpress": true, | ||
"national": true, | ||
"regionalExpress": true, | ||
"regional": true, | ||
"suburban": true, | ||
"bus": true, | ||
"ferry": false, | ||
"subway": true, | ||
"tram": false, | ||
"taxi": false | ||
} | ||
}, | ||
"departure": "2023-11-14T01:22:00+01:00", | ||
"plannedDeparture": "2023-11-14T01:22:00+01:00", | ||
"departureDelay": null, | ||
"arrival": "2023-11-14T01:42:00+01:00", | ||
"plannedArrival": "2023-11-14T01:42:00+01:00", | ||
"arrivalDelay": null, | ||
"public": true, | ||
"walking": true, | ||
"distance": null, | ||
"transfer": true | ||
} | ||
], | ||
"refreshToken": "D$A=1@O=Kassel Hbf@L=8000193@a=0@$A=1@O=Kassel-Wilhelmshöhe@L=8003200@a=0@$202311132214$202311132221$$$1$$$$$$§T$A=1@O=Kassel-Wilhelmshöhe@L=8003200@a=0@$A=1@O=Hamburg-Harburg@L=8000147@a=0@$202311132221$202311140122$ICE 592$$1$$$$$$§D$A=1@O=Hamburg-Harburg@L=8000147@a=0@$A=1@O=Hamburg Hbf@L=8002549@a=0@$202311140122$202311140142$$$1$$$$$$", | ||
"price": { | ||
"amount": 55.9, | ||
"currency": "EUR", | ||
"hint": null | ||
} | ||
} |
Oops, something went wrong.