summaryrefslogtreecommitdiff
path: root/t/20-aseag.t
blob: 22d5d6969dc27a5c991a506ef4dec6331f539c49 (plain)
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
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use utf8;

use Encode qw(decode);
use File::Slurp qw(slurp);
use List::Util qw(first);
use Test::More tests => 18;

BEGIN {
	use_ok('Travel::Status::DE::ASEAG');
}
require_ok('Travel::Status::DE::ASEAG');

my $rawstr = slurp('t/in/aseag_20131223T132300');
my $s      = Travel::Status::DE::ASEAG->new_from_raw(
	raw_str   => $rawstr,
	hide_past => 0
);

isa_ok( 'Travel::Status::DE::ASEAG', 'Travel::Status::DE::URA' );
isa_ok( $s,                          'Travel::Status::DE::ASEAG' );

can_ok( $s, qw(errstr results) );

is( $s->errstr, undef, 'errstr is not set' );

# stop neither in name nor in results should return everything
my @results = $s->results;

is( @results, 16208, 'All departures parsed and returned' );

# fuzzy matching: bushof should return Aachen Bushof and Eschweiler Bushof
# (459 results)

@results = $s->results( stop => 'bushof' );

is( @results, 459, '"bushof" fuzzy-matches 459 stops' );
ok(
	( first { $_->stop eq 'Aachen Bushof' } @results ),
	'"bushof" fuzzy-matches "Aachen Bushof"'
);
ok(
	( first { $_->stop eq 'Eschweiler Bushof' } @results ),
	'"bushof" fuzzy-matches "Eschweiler Bushof"'
);
ok(
	( first { $_->stop eq 'Eupen Bushof' } @results ),
	'"bushof" fuzzy-matches "Eupen Bushof"'
);
is(
	(
		first {
			not(   $_->stop eq 'Aachen Bushof'
				or $_->stop eq 'Eschweiler Bushof'
				or $_->stop eq 'Eupen Bushof' );
		}
		@results
	),
	undef,
	'"bushof" does not match anything else'
);

# exact matching: bushof should match nothing

@results = $s->results(
	stop  => 'bushof',
	fuzzy => 0
);
is( @results, 0, '"bushof" matches nothing' );

@results = $s->results(
	stop  => 'aachen bushof',
	fuzzy => 0
);
is( @results, 0, 'matching is case-sensitive' );

# exact matching: Aachen Bushof should work
@results = $s->results(
	stop  => 'Aachen Bushof',
	fuzzy => 0
);

is( @results, 375, '"Aachen Bushof" matches 375 stops' );
is( ( first { $_->stop ne 'Aachen Bushof' } @results ),
	undef, '"Aachen Bushof" only matches "Aachen Bushof"' );

# exact matching: also works in constructor
$s = Travel::Status::DE::ASEAG->new_from_raw(
	raw_str   => $rawstr,
	hide_past => 0,
	stop      => 'Aachen Bushof',
	fuzzy     => 0
);
@results = $s->results(
	stop  => 'Aachen Bushof',
	fuzzy => 0
);
is( @results, 375, '"Aachen Bushof" matches 375 stops in constructor' );
is( ( first { $_->stop ne 'Aachen Bushof' } @results ),
	undef, '"Aachen Bushof" only matches "Aachen Bushof" in constructor' );