]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/infoq_remote_test.rb
35ecc15af3e5952ad059041a1531e3b93c49ac27
[dead/whatever-dl.git] / test / infoq_remote_test.rb
1 #
2 # Copyright Michael Orlitzky
3 #
4 # http://michael.orlitzky.com/
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # http://www.fsf.org/licensing/licenses/gpl.html
17 #
18
19 require 'test/unit'
20 require 'src/websites/infoq'
21
22 # Remote Infoq tests. Actually hit their website
23 # and attempt to parse the data returned.
24
25 class InfoqRemoteTest < Test::Unit::TestCase
26
27 def test_get_page_data
28 iq = Infoq.new()
29
30 # We can't rely on the fixture here, because Infoq might
31 # change their page layout. Instead, check that we can actually
32 # find the base64 regex (containing the FLV URL).
33 page_data = iq.send('get_page_data', 'http://www.infoq.com/interviews/jim-weirich-discusses-rake')
34
35 test_result = iq.get_video_url(page_data)
36 assert_equal('http://flv.thruhere.net/interviews/JimWeirich.flv', test_result)
37 end
38
39 end