Fix the HTML page -> image URL download rewrite strategy failing for https://lohas.nicoseiga.jp/thumb/${id}i URLs.
63 lines
2.2 KiB
Ruby
63 lines
2.2 KiB
Ruby
require 'test_helper'
|
|
|
|
module Sources
|
|
class NicoSeigaTest < ActiveSupport::TestCase
|
|
context "The source site for nico seiga" do
|
|
setup do
|
|
@site_1 = Sources::Site.new("http://lohas.nicoseiga.jp/o/910aecf08e542285862954017f8a33a8c32a8aec/1433298801/4937663")
|
|
@site_1.get
|
|
|
|
@site_2 = Sources::Site.new("http://seiga.nicovideo.jp/seiga/im4937663")
|
|
@site_2.get
|
|
end
|
|
|
|
should "get the profile" do
|
|
assert_equal("http://seiga.nicovideo.jp/user/illust/7017777", @site_1.profile_url)
|
|
assert_equal("http://seiga.nicovideo.jp/user/illust/7017777", @site_2.profile_url)
|
|
end
|
|
|
|
should "get the artist name" do
|
|
assert_equal("osamari", @site_1.artist_name)
|
|
assert_equal("osamari", @site_2.artist_name)
|
|
end
|
|
|
|
should "get the artist commentary" do
|
|
assert_equal("コジコジ", @site_2.artist_commentary_title)
|
|
assert_equal("コジコジのドット絵\nこんなかわいらしい容姿で毒を吐くコジコジが堪らん(切実)", @site_2.artist_commentary_desc)
|
|
end
|
|
|
|
should "get the image url" do
|
|
assert_match(/^http:\/\/lohas\.nicoseiga\.jp\/priv\//, @site_1.image_url)
|
|
assert_match(/^http:\/\/lohas\.nicoseiga\.jp\/priv\//, @site_2.image_url)
|
|
end
|
|
|
|
should "get the tags" do
|
|
assert(@site_1.tags.size > 0)
|
|
first_tag = @site_1.tags.first
|
|
assert_equal(["アニメ", "http://seiga.nicovideo.jp/tag/%E3%82%A2%E3%83%8B%E3%83%A1"], first_tag)
|
|
|
|
assert(@site_2.tags.size > 0)
|
|
first_tag = @site_2.tags.first
|
|
assert_equal(["アニメ", "http://seiga.nicovideo.jp/tag/%E3%82%A2%E3%83%8B%E3%83%A1"], first_tag)
|
|
end
|
|
|
|
should "convert a page into a json representation" do
|
|
assert_nothing_raised do
|
|
@site_1.to_h
|
|
end
|
|
assert_nothing_raised do
|
|
@site_2.to_h
|
|
end
|
|
end
|
|
|
|
should "work for a https://lohas.nicoseiga.jp/thumb/${id}i url" do
|
|
site = Sources::Site.new("https://lohas.nicoseiga.jp/thumb/6844226i")
|
|
site.get
|
|
|
|
full_image_url = %r!https?://lohas.nicoseiga.jp/priv/[a-f0-9]{40}/[0-9]+/6844226!
|
|
assert_match(full_image_url, site.image_url)
|
|
end
|
|
end
|
|
end
|
|
end
|