summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-12-19 17:46:40 +0100
committerDaniel Friesel <derf@finalrewind.org>2014-12-19 17:46:40 +0100
commit3f75f8f96cde22072b12a479390ae2a2e4b4d009 (patch)
tree18f7f17451eeaafbf7cf6d6049b6e59eb5252621 /t
parentb654987f0be125c0d09db68337e7be4ac0c04124 (diff)
add tests for marudor_v1 backend
Diffstat (limited to 't')
-rw-r--r--t/22-marudor.t45
1 files changed, 45 insertions, 0 deletions
diff --git a/t/22-marudor.t b/t/22-marudor.t
new file mode 100644
index 0000000..406a002
--- /dev/null
+++ b/t/22-marudor.t
@@ -0,0 +1,45 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use 5.014;
+use Test::More;
+use Test::Mojo;
+
+use FindBin;
+require "$FindBin::Bin/../index.pl";
+
+my $t = Test::Mojo->new;
+
+# Note: These tests depends on IRIS live data. If it fails, it -might- also
+# be because of IRIS problems or unanticipated schedule changes.
+# TODO: Support mock XML from hard disk.
+
+$t->get_ok('/EDUV?mode=marudor_v1&backend=iris')
+ ->status_is(200)
+ ->json_has('/api_version', 'has api_version')
+ ->json_has('/version', 'has version')
+ ->json_has('/preformatted', 'has preformatted')
+ ->json_has('/preformatted/0', 'has a departure')
+ ->json_has('/preformatted/0/additional_stops', '.additional_stops')
+ ->json_has('/preformatted/0/canceled_stops', '.canceled_stops')
+ ->json_has('/preformatted/0/delay', '.delay')
+ ->json_like('/preformatted/0/destination',
+ qr{ ^ (Dortmund|Bochum|Essen|D.sseldorf|Solingen) \s Hbf $}x,
+ '.destination')
+ ->json_has('/preformatted/0/info', '.info')
+ ->json_like('/preformatted/0/is_cancelled', qr{ ^ 0 | 1 $ }x, '.is_cancelled')
+ ->json_has('/preformatted/0/messages', '.messages')
+ ->json_has('/preformatted/0/messages/delay', '.messages.delay')
+ ->json_has('/preformatted/0/messages/qos', '.messages.qos')
+ ->json_like('/preformatted/0/time', qr{ ^ \d \d? : \d\d $ }x, '.time')
+ ->json_is('/preformatted/0/train', 'S 1', '.train')
+ ->json_like('/preformatted/0/platform', qr{ ^ 1 | 2 $}x, '.platform')
+ ->json_like('/preformatted/0/scheduled_route/0',
+ qr{ ^ (Dortmund|Bochum|Essen|D.sseldorf|Solingen) \s Hbf $}x,
+ '.scheduled_route[0]')
+ ->json_like('/preformatted/0/via/0',
+ qr{ ^ Dortmund-Dorstfeld S.d | Dortmund-Oespel $}x,
+ '.scheduled_route[0]')
+ ;
+
+done_testing();