mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
40 lines
954 B
JavaScript
40 lines
954 B
JavaScript
'use strict'
|
|
|
|
const test = require('tape')
|
|
|
|
const createClient = require('..')
|
|
const rawProfile = require('../p/vbb')
|
|
const res = require('./fixtures/vbb-journeys.json')
|
|
const expected = require('./fixtures/vbb-journeys.js')
|
|
|
|
const client = createClient(rawProfile, 'public-transport/hafas-client:test')
|
|
const {profile} = client
|
|
|
|
const opt = {
|
|
results: null,
|
|
via: null,
|
|
stopovers: false,
|
|
transfers: -1,
|
|
transferTime: 0,
|
|
accessibility: 'none',
|
|
bike: false,
|
|
walkingSpeed: 'normal',
|
|
startWithWalking: true,
|
|
tickets: false,
|
|
polylines: false,
|
|
subStops: true,
|
|
entrances: true,
|
|
remarks: true,
|
|
scheduledDays: false,
|
|
departure: '2020-12-07T13:29+01:00',
|
|
products: {},
|
|
}
|
|
|
|
test('parses a journeys() response correctly (VBB)', (t) => {
|
|
const common = profile.parseCommon({profile, opt, res})
|
|
const ctx = {profile, opt, common, res}
|
|
const journeys = res.outConL.map(j => profile.parseJourney(ctx, j))
|
|
|
|
t.deepEqual(journeys, expected)
|
|
t.end()
|
|
})
|