]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - test/website_test.rb
Made the output filename the responsibility of the website subclass.
[dead/whatever-dl.git] / test / website_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
21 # Tests common to all websites.
22
23 # All of the website classes are located in one
24 # directory, so we can 'require' them automatically.
25 Dir.glob('src/websites/*.rb').each do |r|
26 require r
27 end
28
29 class WebsiteTest < Test::Unit::TestCase
30
31 def test_nobody_owns_misc_urls
32 assert_nil(Website.create('6807'))
33 assert_nil(Website.create('www'))
34 assert_nil(Website.create('http'))
35 end
36
37
38 def test_owns_url_must_be_implemented
39 assert_raise NotImplementedError do
40 Website.owns_url?('http://www.example.com/')
41 end
42 end
43
44
45 def test_get_video_url_must_be_implemented
46 w = Website.new(nil)
47 assert_raise NotImplementedError do
48 w.get_video_url()
49 end
50 end
51
52
53 def test_youtube_url_returns_youtube_instance
54 yt = Website.create('http://www.youtube.com/watch?v=83-hlYMH1XE&feature=dir')
55 assert_instance_of(Youtube, yt)
56 end
57
58 end