db-vendo-client/test/db-deps-with-destination.js

36 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2022-05-07 16:17:37 +02:00
// 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)
2022-05-07 16:17:37 +02:00
import tap from 'tap'
2022-05-07 16:17:37 +02:00
import {createClient} from '../index.js'
import {profile as rawProfile} from '../p/db/index.js'
const res = require('./fixtures/db-deps-with-destination.json')
const client = createClient(rawProfile, 'public-transport/hafas-client:test')
const {profile} = client
const opt = {
direction: null,
duration: 10,
linesOfStops: true,
remarks: true,
stopovers: true,
includeRelatedStations: true,
when: '2022-10-15T15:45:00+02:00',
products: {},
}
tap.test('parses departure.destination correctly (DB)', (t) => {
const common = profile.parseCommon({profile, opt, res})
const ctx = {profile, opt, common, res}
const departure = profile.parseDeparture(ctx, res.jnyL[0])
t.ok(departure.destination, 'missing departure.destination')
t.equal(departure.destination.type, 'stop', 'invalid departure.destination.type')
t.equal(departure.destination.id, '930200', 'invalid departure.destination.id')
t.end()
})