2018-07-28 13:43:58 +02:00
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
|
|
// todo: DRY with vbb tests
|
|
|
|
|
|
|
|
|
|
const stations = require('vbb-stations-autocomplete')
|
|
|
|
|
const a = require('assert')
|
|
|
|
|
const shorten = require('vbb-short-station-name')
|
|
|
|
|
const tapePromise = require('tape-promise').default
|
|
|
|
|
const tape = require('tape')
|
|
|
|
|
const isRoughlyEqual = require('is-roughly-equal')
|
|
|
|
|
|
|
|
|
|
const createClient = require('..')
|
|
|
|
|
const bvgProfile = require('../p/bvg')
|
|
|
|
|
const products = require('../p/bvg/products')
|
|
|
|
|
const createValidate = require('./lib/validate-fptf-with')
|
|
|
|
|
const {
|
|
|
|
|
cfg,
|
|
|
|
|
validateStation,
|
|
|
|
|
validateLine,
|
|
|
|
|
validateJourneyLeg,
|
|
|
|
|
validateDeparture,
|
|
|
|
|
validateMovement
|
|
|
|
|
} = require('./lib/vbb-bvg-validators')
|
|
|
|
|
const testJourneysStationToStation = require('./lib/journeys-station-to-station')
|
|
|
|
|
const testJourneysStationToAddress = require('./lib/journeys-station-to-address')
|
|
|
|
|
const testJourneysStationToPoi = require('./lib/journeys-station-to-poi')
|
|
|
|
|
const testEarlierLaterJourneys = require('./lib/earlier-later-journeys')
|
2018-12-02 22:15:09 +01:00
|
|
|
|
const testLegCycleAlternatives = require('./lib/leg-cycle-alternatives')
|
2018-07-28 13:43:58 +02:00
|
|
|
|
const testRefreshJourney = require('./lib/refresh-journey')
|
|
|
|
|
const journeysFailsWithNoProduct = require('./lib/journeys-fails-with-no-product')
|
|
|
|
|
const testDepartures = require('./lib/departures')
|
|
|
|
|
const testDeparturesInDirection = require('./lib/departures-in-direction')
|
|
|
|
|
const testDeparturesWithoutRelatedStations = require('./lib/departures-without-related-stations')
|
|
|
|
|
const testArrivals = require('./lib/arrivals')
|
|
|
|
|
const testJourneysWithDetour = require('./lib/journeys-with-detour')
|
2018-08-27 12:04:14 +02:00
|
|
|
|
const testReachableFrom = require('./lib/reachable-from')
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
|
|
|
|
const when = cfg.when
|
|
|
|
|
|
|
|
|
|
const validateDirection = (dir, name) => {
|
|
|
|
|
if (!stations(dir, true, false)[0]) {
|
|
|
|
|
console.error(name + `: station "${dir}" is unknown`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const validate = createValidate(cfg, {
|
|
|
|
|
station: validateStation,
|
|
|
|
|
line: validateLine,
|
|
|
|
|
journeyLeg: validateJourneyLeg,
|
|
|
|
|
departure: validateDeparture,
|
|
|
|
|
movement: validateMovement
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const test = tapePromise(tape)
|
|
|
|
|
const client = createClient(bvgProfile, 'public-transport/hafas-client:test')
|
|
|
|
|
|
|
|
|
|
const amrumerStr = '900000009101'
|
|
|
|
|
const spichernstr = '900000042101'
|
|
|
|
|
const bismarckstr = '900000024201'
|
|
|
|
|
const westhafen = '900000001201'
|
|
|
|
|
const wedding = '900000009104'
|
|
|
|
|
const württembergallee = '900000026153'
|
2018-12-02 21:24:21 +01:00
|
|
|
|
const tiergarten = '900000003103'
|
|
|
|
|
const jannowitzbrücke = '900000100004'
|
|
|
|
|
|
|
|
|
|
const hour = 60 * 60 * 1000
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('journeys – Spichernstr. to Bismarckstr.', async (t) => {
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(spichernstr, bismarckstr, {
|
2019-02-01 15:35:18 +01:00
|
|
|
|
results: 4,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
departure: when,
|
|
|
|
|
stopovers: true
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testJourneysStationToStation({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
2019-01-16 21:41:17 +08:00
|
|
|
|
res,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
validate,
|
|
|
|
|
fromId: spichernstr,
|
|
|
|
|
toId: bismarckstr
|
|
|
|
|
})
|
|
|
|
|
// todo: find a journey where there ticket info is always available
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('journeys – only subway', async (t) => {
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(spichernstr, bismarckstr, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
results: 20,
|
|
|
|
|
departure: when,
|
|
|
|
|
products: {
|
|
|
|
|
suburban: false,
|
|
|
|
|
subway: true,
|
|
|
|
|
tram: false,
|
|
|
|
|
bus: false,
|
|
|
|
|
ferry: false,
|
|
|
|
|
express: false,
|
|
|
|
|
regional: false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2019-01-16 21:41:17 +08:00
|
|
|
|
validate(t, res, 'journeysResult', 'res')
|
|
|
|
|
|
|
|
|
|
t.ok(res.journeys.length > 1)
|
|
|
|
|
for (let i = 0; i < res.journeys.length; i++) {
|
|
|
|
|
const journey = res.journeys[i]
|
2018-07-28 13:43:58 +02:00
|
|
|
|
for (let j = 0; j < journey.legs.length; j++) {
|
|
|
|
|
const leg = journey.legs[j]
|
|
|
|
|
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const name = `res.journeys[${i}].legs[${j}].line`
|
2018-07-28 13:43:58 +02:00
|
|
|
|
if (leg.line) {
|
|
|
|
|
t.equal(leg.line.mode, 'train', name + '.mode is invalid')
|
|
|
|
|
t.equal(leg.line.product, 'subway', name + '.product is invalid')
|
|
|
|
|
}
|
|
|
|
|
t.ok(journey.legs.some(l => l.line), name + '.legs has no subway leg')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
|
|
|
|
test('journeys – fails with no product', (t) => {
|
|
|
|
|
journeysFailsWithNoProduct({
|
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
fromId: spichernstr,
|
|
|
|
|
toId: bismarckstr,
|
|
|
|
|
when,
|
|
|
|
|
products
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('earlier/later journeys', async (t) => {
|
|
|
|
|
await testEarlierLaterJourneys({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
validate,
|
|
|
|
|
fromId: spichernstr,
|
2018-11-20 18:38:48 +01:00
|
|
|
|
toId: bismarckstr,
|
|
|
|
|
when
|
2018-07-28 13:43:58 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test.skip('journeys – leg cycle & alternatives', async (t) => {
|
|
|
|
|
await testLegCycleAlternatives({
|
2018-12-02 22:15:09 +01:00
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
fromId: tiergarten,
|
|
|
|
|
toId: jannowitzbrücke
|
2018-12-02 21:24:21 +01:00
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
|
|
|
|
test('refreshJourney', async (t) => {
|
|
|
|
|
await testRefreshJourney({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
refreshJourney: client.refreshJourney,
|
|
|
|
|
validate,
|
|
|
|
|
fromId: spichernstr,
|
|
|
|
|
toId: bismarckstr,
|
|
|
|
|
when
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('trip details', async (t) => {
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(spichernstr, amrumerStr, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
results: 1, departure: when
|
|
|
|
|
})
|
|
|
|
|
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const p = res.journeys[0].legs[0]
|
2018-11-22 00:17:28 +01:00
|
|
|
|
t.ok(p.tripId, 'precondition failed')
|
2018-07-28 13:43:58 +02:00
|
|
|
|
t.ok(p.line.name, 'precondition failed')
|
2018-11-22 00:17:28 +01:00
|
|
|
|
const trip = await client.trip(p.tripId, p.line.name, {when})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-22 00:15:59 +01:00
|
|
|
|
validate(t, trip, 'trip', 'trip')
|
2018-07-28 13:43:58 +02:00
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('journeys – station to address', async (t) => {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
const torfstr = {
|
|
|
|
|
type: 'location',
|
|
|
|
|
address: '13353 Berlin-Wedding, Torfstr. 17',
|
|
|
|
|
latitude: 52.541797,
|
|
|
|
|
longitude: 13.350042
|
|
|
|
|
}
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(spichernstr, torfstr, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
results: 3,
|
|
|
|
|
departure: when
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testJourneysStationToAddress({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
2019-01-16 21:41:17 +08:00
|
|
|
|
res,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
validate,
|
|
|
|
|
fromId: spichernstr,
|
|
|
|
|
to: torfstr
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('journeys – station to POI', async (t) => {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
const atze = {
|
|
|
|
|
type: 'location',
|
|
|
|
|
id: '900980720',
|
2019-02-07 17:47:50 +01:00
|
|
|
|
poi: true,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
name: 'Berlin, Atze Musiktheater für Kinder',
|
|
|
|
|
latitude: 52.543333,
|
|
|
|
|
longitude: 13.351686
|
|
|
|
|
}
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(spichernstr, atze, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
results: 3,
|
|
|
|
|
departure: when
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testJourneysStationToPoi({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
2019-01-16 21:41:17 +08:00
|
|
|
|
res,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
validate,
|
|
|
|
|
fromId: spichernstr,
|
|
|
|
|
to: atze
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('journeys: via works – with detour', async (t) => {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
// Going from Westhafen to Wedding via Württembergalle without detour
|
|
|
|
|
// is currently impossible. We check if the routing engine computes a detour.
|
2019-01-16 21:41:17 +08:00
|
|
|
|
const res = await client.journeys(westhafen, wedding, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
via: württembergallee,
|
|
|
|
|
results: 1,
|
|
|
|
|
departure: when,
|
|
|
|
|
stopovers: true
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testJourneysWithDetour({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
2019-01-16 21:41:17 +08:00
|
|
|
|
res,
|
2018-07-28 13:43:58 +02:00
|
|
|
|
validate,
|
|
|
|
|
detourIds: [württembergallee]
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
|
|
|
|
// todo: without detour test
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('departures', async (t) => {
|
|
|
|
|
const departures = await client.departures(spichernstr, {
|
2018-12-28 21:17:03 +01:00
|
|
|
|
duration: 5, when,
|
|
|
|
|
stopovers: true
|
2018-07-28 13:43:58 +02:00
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testDepartures({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
departures,
|
|
|
|
|
validate,
|
|
|
|
|
id: spichernstr
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('departures with station object', async (t) => {
|
|
|
|
|
const deps = await client.departures({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
type: 'station',
|
|
|
|
|
id: spichernstr,
|
|
|
|
|
name: 'U Spichernstr',
|
|
|
|
|
location: {
|
|
|
|
|
type: 'location',
|
|
|
|
|
latitude: 1.23,
|
|
|
|
|
longitude: 2.34
|
|
|
|
|
}
|
|
|
|
|
}, {when})
|
|
|
|
|
|
|
|
|
|
validate(t, deps, 'departures', 'departures')
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('departures at Spichernstr. in direction of Westhafen', async (t) => {
|
|
|
|
|
await testDeparturesInDirection({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
fetchDepartures: client.departures,
|
|
|
|
|
fetchTrip: client.trip,
|
|
|
|
|
id: spichernstr,
|
|
|
|
|
directionIds: [westhafen],
|
|
|
|
|
when,
|
|
|
|
|
validate
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('departures at 7-digit station', async (t) => {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
const eisenach = '8010097' // see derhuerst/vbb-hafas#22
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await client.departures(eisenach, {when})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
t.pass('did not fail')
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('departures without related stations', async (t) => {
|
|
|
|
|
await testDeparturesWithoutRelatedStations({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
fetchDepartures: client.departures,
|
|
|
|
|
id: '900000024101', // Charlottenburg
|
|
|
|
|
when,
|
|
|
|
|
products: {bus: false, suburban: false, regional: false},
|
|
|
|
|
linesOfRelatedStations: ['U7']
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('arrivals', async (t) => {
|
|
|
|
|
const arrivals = await client.arrivals(spichernstr, {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
duration: 5, when
|
|
|
|
|
})
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testArrivals({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
test: t,
|
|
|
|
|
arrivals,
|
|
|
|
|
validate,
|
|
|
|
|
id: spichernstr
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('nearby', async (t) => {
|
2018-07-28 13:43:58 +02:00
|
|
|
|
const berlinerStr = '900000044201'
|
|
|
|
|
const landhausstr = '900000043252'
|
|
|
|
|
|
|
|
|
|
// Berliner Str./Bundesallee
|
2018-11-21 19:07:37 +01:00
|
|
|
|
const nearby = await client.nearby({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
type: 'location',
|
|
|
|
|
latitude: 52.4873452,
|
|
|
|
|
longitude: 13.3310411
|
|
|
|
|
}, {distance: 200})
|
|
|
|
|
|
|
|
|
|
validate(t, nearby, 'locations', 'nearby')
|
|
|
|
|
|
|
|
|
|
t.equal(nearby[0].id, berlinerStr)
|
|
|
|
|
t.equal(nearby[0].name, 'U Berliner Str.')
|
|
|
|
|
t.ok(nearby[0].distance > 0)
|
|
|
|
|
t.ok(nearby[0].distance < 100)
|
|
|
|
|
|
|
|
|
|
t.equal(nearby[1].id, landhausstr)
|
|
|
|
|
t.equal(nearby[1].name, 'Landhausstr.')
|
|
|
|
|
t.ok(nearby[1].distance > 100)
|
|
|
|
|
t.ok(nearby[1].distance < 200)
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('locations', async (t) => {
|
|
|
|
|
const locations = await client.locations('Alexanderplatz', {results: 20})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
|
|
|
|
validate(t, locations, 'locations', 'locations')
|
|
|
|
|
t.ok(locations.length <= 20)
|
|
|
|
|
|
|
|
|
|
t.ok(locations.find(s => s.type === 'stop' || s.type === 'station'))
|
2019-02-07 17:47:50 +01:00
|
|
|
|
t.ok(locations.find(s => s.poi)) // POIs
|
2018-07-28 13:43:58 +02:00
|
|
|
|
t.ok(locations.find(s => !s.name && s.address)) // addresses
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:55:37 +01:00
|
|
|
|
test('stop', async (t) => {
|
|
|
|
|
const s = await client.stop(spichernstr)
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:55:37 +01:00
|
|
|
|
validate(t, s, ['stop', 'station'], 'stop')
|
2018-07-28 13:43:58 +02:00
|
|
|
|
t.equal(s.id, spichernstr)
|
|
|
|
|
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-07-28 13:43:58 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('radar', async (t) => {
|
|
|
|
|
const vehicles = await client.radar({
|
2018-07-28 13:43:58 +02:00
|
|
|
|
north: 52.52411,
|
|
|
|
|
west: 13.41002,
|
|
|
|
|
south: 52.51942,
|
|
|
|
|
east: 13.41709
|
|
|
|
|
}, {
|
|
|
|
|
duration: 5 * 60, when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
validate(t, vehicles, 'movements', 'vehicles')
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|
2018-08-27 12:04:14 +02:00
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
test('reachableFrom', async (t) => {
|
2018-08-27 12:04:14 +02:00
|
|
|
|
const torfstr17 = {
|
|
|
|
|
type: 'location',
|
|
|
|
|
address: '13353 Berlin-Wedding, Torfstr. 17',
|
|
|
|
|
latitude: 52.541797,
|
|
|
|
|
longitude: 13.350042
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-21 19:07:37 +01:00
|
|
|
|
await testReachableFrom({
|
2018-08-27 12:04:14 +02:00
|
|
|
|
test: t,
|
|
|
|
|
reachableFrom: client.reachableFrom,
|
2018-08-27 12:06:14 +02:00
|
|
|
|
address: torfstr17,
|
2018-08-27 12:04:14 +02:00
|
|
|
|
when,
|
|
|
|
|
maxDuration: 15,
|
|
|
|
|
validate
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
2018-11-21 19:07:37 +01:00
|
|
|
|
})
|