2004-11-27 11:47:28 +03:00
require " rss-testcase "
require " rss/maker "
module RSS
class TestSetupMaker20 < TestCase
def test_setup_maker_channel
title = " fugafuga "
link = " http://hoge.com "
description = " fugafugafugafuga "
language = " ja "
copyright = " foo "
managingEditor = " bar "
webMaster = " web master "
2005-11-25 06:43:48 +03:00
rating = '(PICS-1.1 "http://www.rsac.org/ratingsv01.html" l gen true comment "RSACi North America Server" for "http://www.rsac.org" on "1996.04.16T08:15-0500" r (n 0 s 0 v 0 l 0))'
2004-11-27 11:47:28 +03:00
docs = " http://foo.com/doc "
skipDays = [
" Sunday " ,
" Monday " ,
]
skipHours = [
2005-11-25 06:43:48 +03:00
" 0 " ,
" 13 " ,
2004-11-27 11:47:28 +03:00
]
pubDate = Time . now
lastBuildDate = Time . now
categories = [
" Nespapers " ,
" misc " ,
]
generator = " RSS Maker "
2005-11-25 06:43:48 +03:00
ttl = " 60 "
2004-11-27 11:47:28 +03:00
rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
maker . channel . title = title
maker . channel . link = link
maker . channel . description = description
maker . channel . language = language
maker . channel . copyright = copyright
maker . channel . managingEditor = managingEditor
maker . channel . webMaster = webMaster
maker . channel . rating = rating
maker . channel . docs = docs
maker . channel . pubDate = pubDate
maker . channel . lastBuildDate = lastBuildDate
skipDays . each do | day |
2007-03-17 13:13:25 +03:00
maker . channel . skipDays . new_day do | new_day |
new_day . content = day
end
2004-11-27 11:47:28 +03:00
end
skipHours . each do | hour |
2007-03-17 13:13:25 +03:00
maker . channel . skipHours . new_hour do | new_hour |
new_hour . content = hour
end
2004-11-27 11:47:28 +03:00
end
categories . each do | category |
2007-03-17 13:13:25 +03:00
maker . channel . categories . new_category do | new_category |
new_category . content = category
end
2004-11-27 11:47:28 +03:00
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
maker . channel . generator = generator
maker . channel . ttl = ttl
end
new_rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
rss . channel . setup_maker ( maker )
end
channel = new_rss . channel
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
assert_equal ( title , channel . title )
assert_equal ( link , channel . link )
assert_equal ( description , channel . description )
assert_equal ( language , channel . language )
assert_equal ( copyright , channel . copyright )
assert_equal ( managingEditor , channel . managingEditor )
assert_equal ( webMaster , channel . webMaster )
assert_equal ( rating , channel . rating )
assert_equal ( docs , channel . docs )
assert_equal ( pubDate , channel . pubDate )
assert_equal ( lastBuildDate , channel . lastBuildDate )
skipDays . each_with_index do | day , i |
assert_equal ( day , channel . skipDays . days [ i ] . content )
end
skipHours . each_with_index do | hour , i |
2005-11-25 06:43:48 +03:00
assert_equal ( hour . to_i , channel . skipHours . hours [ i ] . content )
2004-11-27 11:47:28 +03:00
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
channel . categories . each_with_index do | category , i |
assert_equal ( categories [ i ] , category . content )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
assert_equal ( generator , channel . generator )
2005-11-25 06:43:48 +03:00
assert_equal ( ttl . to_i , channel . ttl )
2004-11-27 11:47:28 +03:00
assert ( channel . items . empty? )
assert_nil ( channel . image )
assert_nil ( channel . textInput )
end
def test_setup_maker_image
title = " fugafuga "
link = " http://hoge.com "
url = " http://hoge.com/hoge.png "
2005-11-25 06:43:48 +03:00
width = " 144 "
height = " 400 "
2004-11-27 11:47:28 +03:00
description = " an image "
rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
setup_dummy_channel ( maker )
maker . channel . link = link
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
maker . image . title = title
maker . image . url = url
maker . image . width = width
maker . image . height = height
maker . image . description = description
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
new_rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
rss . channel . setup_maker ( maker )
rss . image . setup_maker ( maker )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
image = new_rss . image
assert_equal ( title , image . title )
assert_equal ( link , image . link )
assert_equal ( url , image . url )
2005-11-25 06:43:48 +03:00
assert_equal ( width . to_i , image . width )
assert_equal ( height . to_i , image . height )
2004-11-27 11:47:28 +03:00
assert_equal ( description , image . description )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
def test_setup_maker_textinput
title = " fugafuga "
description = " text hoge fuga "
name = " hoge "
link = " http://hoge.com "
rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
setup_dummy_channel ( maker )
maker . textinput . title = title
maker . textinput . description = description
maker . textinput . name = name
maker . textinput . link = link
end
new_rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
rss . channel . setup_maker ( maker )
rss . textinput . setup_maker ( maker )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
textInput = new_rss . channel . textInput
assert_equal ( title , textInput . title )
assert_equal ( description , textInput . description )
assert_equal ( name , textInput . name )
assert_equal ( link , textInput . link )
end
2005-11-23 12:24:17 +03:00
def test_setup_maker_items ( for_backward_compatibility = false )
2004-11-27 11:47:28 +03:00
title = " TITLE "
link = " http://hoge.com/ "
description = " text hoge fuga "
author = " oprah@oxygen.net "
comments = " http://www.myblog.org/cgi-local/mt/mt-comments.cgi?entry_id=290 "
pubDate = Time . now
2005-11-25 06:43:48 +03:00
guid_isPermaLink = " true "
2004-11-27 11:47:28 +03:00
guid_content = " http://inessential.com/2002/09/01.php # a2 "
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
enclosure_url = " http://www.scripting.com/mp3s/weatherReportSuite.mp3 "
enclosure_length = " 12216320 "
enclosure_type = " audio/mpeg "
source_url = " http://static.userland.com/tomalak/links2.xml "
source_content = " Tomalak's Realm "
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
category_domain = " http://www.fool.com/cusips "
category_content = " MSFT "
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
item_size = 5
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
setup_dummy_channel ( maker )
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
item_size . times do | i |
2007-03-17 13:13:25 +03:00
maker . items . new_item do | item |
item . title = " #{ title } #{ i } "
item . link = " #{ link } #{ i } "
item . description = " #{ description } #{ i } "
item . author = " #{ author } #{ i } "
item . comments = " #{ comments } #{ i } "
item . date = pubDate
item . guid . isPermaLink = guid_isPermaLink
item . guid . content = guid_content
item . enclosure . url = enclosure_url
item . enclosure . length = enclosure_length
item . enclosure . type = enclosure_type
item . source . url = source_url
item . source . content = source_content
category = item . categories . new_category
category . domain = category_domain
category . content = category_content
end
2004-11-27 11:47:28 +03:00
end
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
new_rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
rss . channel . setup_maker ( maker )
rss . items . each do | item |
2005-11-23 12:24:17 +03:00
if for_backward_compatibility
item . setup_maker ( maker )
else
item . setup_maker ( maker . items )
end
2004-11-27 11:47:28 +03:00
end
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
assert_equal ( item_size , new_rss . items . size )
new_rss . items . each_with_index do | item , i |
assert_equal ( " #{ title } #{ i } " , item . title )
assert_equal ( " #{ link } #{ i } " , item . link )
assert_equal ( " #{ description } #{ i } " , item . description )
assert_equal ( " #{ author } #{ i } " , item . author )
assert_equal ( " #{ comments } #{ i } " , item . comments )
assert_equal ( pubDate , item . pubDate )
2005-11-25 06:43:48 +03:00
assert_equal ( guid_isPermaLink == " true " , item . guid . isPermaLink )
2004-11-27 11:47:28 +03:00
assert_equal ( guid_content , item . guid . content )
assert_equal ( enclosure_url , item . enclosure . url )
2005-11-25 06:43:48 +03:00
assert_equal ( enclosure_length . to_i , item . enclosure . length )
2004-11-27 11:47:28 +03:00
assert_equal ( enclosure_type , item . enclosure . type )
assert_equal ( source_url , item . source . url )
assert_equal ( source_content , item . source . content )
assert_equal ( 1 , item . categories . size )
assert_equal ( category_domain , item . category . domain )
assert_equal ( category_content , item . category . content )
end
end
2005-11-23 12:24:17 +03:00
def test_setup_maker_items_backward_compatibility
test_setup_maker_items ( true )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
def test_setup_maker
encoding = " EUC-JP "
standalone = true
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
href = 'a.xsl'
type = 'text/xsl'
title = 'sample'
media = 'printer'
charset = 'UTF-8'
alternate = 'yes'
rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
maker . encoding = encoding
maker . standalone = standalone
2007-03-17 13:13:25 +03:00
maker . xml_stylesheets . new_xml_stylesheet do | xss |
xss . href = href
xss . type = type
xss . title = title
xss . media = media
xss . charset = charset
xss . alternate = alternate
end
2004-11-27 11:47:28 +03:00
setup_dummy_channel ( maker )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
new_rss = RSS :: Maker . make ( " 2.0 " ) do | maker |
rss . setup_maker ( maker )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
assert_equal ( " 2.0 " , new_rss . rss_version )
assert_equal ( encoding , new_rss . encoding )
assert_equal ( standalone , new_rss . standalone )
xss = rss . xml_stylesheets . first
assert_equal ( 1 , rss . xml_stylesheets . size )
assert_equal ( href , xss . href )
assert_equal ( type , xss . type )
assert_equal ( title , xss . title )
assert_equal ( media , xss . media )
assert_equal ( charset , xss . charset )
assert_equal ( alternate , xss . alternate )
end
2009-03-06 06:56:38 +03:00
2004-11-27 11:47:28 +03:00
end
end