]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/infoq_test.rb
Made the output filename the responsibility of the website subclass.
[dead/whatever-dl.git] / test / infoq_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 # Unit tests for the Infoq class. Basically just checking
23 # the results of parse_video_url for now.
24
25 class InfoqTest < Test::Unit::TestCase
26
27 def test_owns_infoq_urls
28 assert(Infoq.owns_url?('http://www.infoq.com/interviews/jim-weirich-discusses-rake'))
29 end
30
31
32 def test_parse_video_url
33 iq = Infoq.new(nil)
34
35 page_data = nil
36
37 File.open('test/fixtures/infoq/jim-weirich-discusses-rake.html') do |f|
38 page_data = f.read
39 end
40
41 test_result = iq.send('parse_video_url', page_data)
42 assert_equal('http://flv.thruhere.net/interviews/JimWeirich.flv', test_result)
43 end
44
45 end