db-vendo-client/test/bvg-journey.js

41 lines
987 B
JavaScript
Raw Normal View History

2019-08-19 20:42:19 +02:00
'use strict'
const tapePromise = require('tape-promise').default
const tape = require('tape')
const createClient = require('..')
const rawProfile = require('../p/bvg')
const raw = require('./fixtures/bvg-journey.json')
const expected = require('./fixtures/bvg-journey.js')
const test = tapePromise(tape)
const client = createClient(rawProfile, 'public-transport/hafas-client:test')
const {profile} = client
const opt = {
results: null,
via: null,
stopovers: true,
transfers: -1,
transferTime: 0,
accessibility: 'none',
bike: false,
tickets: true,
polylines: true,
remarks: true,
walkingSpeed: 'normal',
startWithWalking: true,
scheduledDays: true,
departure: '2019-08-18T14:03:50+02:00',
products: {}
}
test('parses a journey correctly (BVG)', (t) => {
const common = profile.parseCommon(profile, opt, raw)
const parseJourney = profile.parseJourney(profile, opt, common)
const journey = parseJourney(common.outConL[0])
t.deepEqual(journey, expected)
t.end()
})