1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#!/usr/bin/env perl
use strict;
use warnings;
use 5.014;
use utf8;
use Test::More tests => 15;
BEGIN {
use_ok('Travel::Status::DE::IRIS::Stations');
}
require_ok('Travel::Status::DE::IRIS::Stations');
my @emptypairs = grep { not( length( $_->[0] ) and length( $_->[1] ) ) }
Travel::Status::DE::IRIS::Stations::get_stations;
is_deeply( \@emptypairs, [], 'no stations with empty code / name' );
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('EE') ],
[ [ 'EE', 'Essen Hbf', 8000098, 7.014793, 51.451355 ] ],
'get_station: exact match by DS100 works'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station(8000098) ],
[ [ 'EE', 'Essen Hbf', 8000098, 7.014793, 51.451355 ] ],
'get_station: exact match by EVA/UIC works'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('Essen Hbf') ],
[ [ 'EE', 'Essen Hbf', 8000098, 7.014793, 51.451355 ] ],
'get_station: exact match by name works'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('essen hbf') ],
[ [ 'EE', 'Essen Hbf', 8000098, 7.014793, 51.451355 ] ],
'get_station: exact match by name is case insensitive'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('essen sued') ],
[ [ 'EESD', 'Essen Süd', 8001897, 7.023098, 51.439295 ] ],
'get_station: exact match with normalization (1)'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('Essen-Steele') ],
[ [ 'EEST', 'Essen-Steele', 8000099, 7.075552, 51.450684 ] ],
'get_station: exact match by name works by shortest prefix'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('essen-steele') ],
[ [ 'EEST', 'Essen-Steele', 8000099, 7.075552, 51.450684 ] ],
'get_station: exact match by name (shortest prefix) is case insensitive'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('mönchengladbach hf') ],
[ [ 'KM', 'Mönchengladbach Hbf', 8000253, 6.446111, 51.196583 ] ],
'get_station: close fuzzy match works (one result)'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('MönchenGladbach BBF') ],
[ [ 'KM', 'Mönchengladbach Hbf', 8000253, 6.446111, 51.196583 ] ],
'get_station: close fuzzy match is case insensitive'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station('Borbeck') ],
[
[ 'EEBE', 'Essen-Bergeborbeck', 8001901, 6.977782, 51.480201 ],
[ 'EEBB', 'Essen-Borbeck', 8001902, 6.948795, 51.472713 ],
[ 'EEBS', 'Essen-Borbeck Süd', 8005031, 6.953922, 51.461673 ],
[ 'EGAR', 'Garbeck', 8002180, 7.839903, 51.321459 ],
],
'get_station: partial match with substring and levenshtein'
);
is_deeply(
[ map { [$_->[0][0], $_->[0][1]] } Travel::Status::DE::IRIS::Stations::get_station_by_location(7.02458, 51.43862) ],
[
[ 'EESD', 'Essen Süd' ],
[ 'EE', 'Essen Hbf' ],
[ 'EESA', 'Essen Stadtwald' ],
[ 'EEUE', 'Essen-Überruhr' ],
[ 'EENW', 'Essen West' ],
[ 'EEST', 'Essen-Steele' ],
[ 'EEHU', 'Essen-Hügel' ],
[ 'EEHH', 'Essen-Holthausen' ],
[ 'EEKS', 'Essen-Kray Süd' ],
[ 'EESO', 'Essen-Steele Ost' ],
],
'get_station_by_location: 10 matches for Foobar'
);
is_deeply(
[ Travel::Status::DE::IRIS::Stations::get_station_by_location(7.02458, 51.43862, 1) ],
[
[[ 'EESD', 'Essen Süd', 8001897, 7.023098, 51.439295], 0.127234298397033]
],
'get_station_by_location: 1 match with all data for Foobar'
);
|