]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/redtube_test.rb
Made the output filename the responsibility of the website subclass.
[dead/whatever-dl.git] / test / redtube_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/redtube'
21
22 # Unit tests for the Redtube class. Basically just checking
23 # the results of get_video_url for known ids.
24
25 class RedtubeTest < Test::Unit::TestCase
26
27 def test_owns_redtube_urls
28 assert(Redtube.owns_url?('http://www.redtube.com/6807'))
29 assert(Redtube.owns_url?('www.redtube.com/6807'))
30 assert(Redtube.owns_url?('http://redtube.com/6807'))
31 assert(Redtube.owns_url?('redtube.com/6807'))
32 end
33
34
35 def test_doesnt_own_howcast_urls
36 assert(!Redtube.owns_url?('http://www.howcast.com/6807'))
37 assert(!Redtube.owns_url?('www.howcast.com/6807'))
38 assert(!Redtube.owns_url?('http://howcast.com/6807'))
39 assert(!Redtube.owns_url?('howcast.com/6807'))
40 end
41
42
43 def test_doesnt_own_misc_urls
44 assert(!Redtube.owns_url?('http://redtube/123'))
45 assert(!Redtube.owns_url?('www.redtube.com/abc'))
46 end
47
48
49 def test_get_video_url
50 rt = Redtube.new('http://www.redtube.com/6807')
51 expected_result = 'http://dl.redtube.com/_videos_t4vn23s9jc5498tgj49icfj4678/0000006/X57OBH08G.flv'
52 actual_result = rt.get_video_url()
53 assert_equal(expected_result, actual_result)
54 end
55
56
57 def test_get_video_filename
58 rt = Redtube.new('http://www.redtube.com/6807')
59 # I don't know where they get these filenames from, but whatever.
60 expected_result = 'X57OBH08G.flv'
61 actual_result = rt.get_video_filename()
62 assert_equal(expected_result, actual_result)
63 end
64 end