Add expire.t
[libquvi-scripts.git] / tests / t / redirect.t
blob21846a6ba30266358182e8655b283696ffe62740
1 # libquvi-scripts
2 # Copyright (C) 2011  Toni Gundogdu <legatvs@gmail.com>
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 # 02110-1301, USA.
19 use warnings;
20 use strict;
22 use Test::More;
24 eval "use JSON::XS";
25 plan skip_all => "JSON::XS required for testing" if $@;
27 eval "use Test::Deep";
28 plan skip_all => "Test::Deep required for testing" if $@;
30 plan tests => 6;
32 use Test::Quvi;
34 my $q = Test::Quvi->new;
36 plan skip_all => "TEST_SKIP rule"
37   if $q->test_skip("redirect");
39 my $j = $q->get_json_obj;
41 test_redirect_url(    # Test self.redirect_url in academicearth.lua
42        "http://www.academicearth.org/lectures/intro-roman-architecture",
43        "data/resolve/redirect_url_academicearth.json"
44                  );
46 test_redirect_url(    # Test self.redirect_url in collegehumor.lua
47   "http://www.dorkly.com/embed/17349/ridiculous-way-to-get-ammo-to-teammates-in-battlefield-bad-company-2",
48   "data/resolve/redirect_url_dorkly.json"
49                  );
51 test_url_shortener(    # Test URL shortener support
52         "http://is.gd/EbVFoa",             # -> http://vimeo.com/1485507
53         "data/format/default/vimeo.json"
54                   );
56 sub test_redirect_url
58   my ($url, $json) = @_;
59   my ($r, $o) = $q->run($url, "-q");
60   is($r, 0, "quvi exit status == 0") or diag $url;
61 SKIP:
62   {
63     skip 'quvi exit status != 0', 1 if $r != 0;
64     my $e = $q->read_json($json, 1)
65       ;    # 1=prepend --data-root (if specified in cmdline)
66     cmp_deeply($j->decode($o), $e, "compare with $json")
67       or diag $url;
68   }
71 sub test_url_shortener
73   my ($url, $json) = @_;
74   my ($r, $o) = $q->run($url, "-q");
75   is($r, 0, "quvi exit status == 0") or diag $url;
76 SKIP:
77   {
78     skip 'quvi exit status != 0', 1 if $r != 0;
79     my $e = $q->read_json($json, 1)
80       ;    # 1=prepend --data-root (if specified in cmdline)
81     cmp_deeply($j->decode($o), $e, "compare with $json")
82       or diag $url;
83   }
86 # vim: set ts=2 sw=2 tw=72 expandtab: