Add Rule34.us support.

This commit is contained in:
evazion
2022-11-10 12:53:06 -06:00
parent ec87cffe02
commit 15f611ca8b
6 changed files with 148 additions and 0 deletions

View File

@@ -444,6 +444,7 @@ class UploadsControllerTest < ActionDispatch::IntegrationTest
should_upload_successfully("https://safebooru.org/index.php?page=post&s=view&id=4189916")
should_upload_successfully("https://tbib.org/index.php?page=post&s=view&id=11480218")
should_upload_successfully("https://rule34.xxx/index.php?page=post&s=view&id=6961597")
should_upload_successfully("https://rule34.us/index.php?r=posts/view&id=6204967")
should_upload_successfully("http://lohas.nicoseiga.jp/o/910aecf08e542285862954017f8a33a8c32a8aec/1433298801/4937663")
should_upload_successfully("http://seiga.nicovideo.jp/seiga/im4937663")

View File

@@ -0,0 +1,37 @@
require "test_helper"
module Sources
class Rule34DotUsTest < ActiveSupport::TestCase
context "Rule34.us:" do
context "A https://rule34.us/index.php?r=posts/view&id=$post_id URL" do
strategy_should_work(
"https://rule34.us/index.php?r=posts/view&id=6204967",
page_url: "https://rule34.us/index.php?r=posts/view&id=6204967",
image_urls: ["https://img2.rule34.us/images/23/66/236690fd962fa394edf9894450261dac.png"],
tags: %w[sora kingdom_hearts rule_63 ai_generated brown_hair female genderswap_(mtf) nai_diffusion stable_diffusion],
download_size: 503_358,
)
end
context "A https://rule34.us/hotlink.php?hash=$md5 URL" do
strategy_should_work(
"https://rule34.us/hotlink.php?hash=236690fd962fa394edf9894450261dac",
page_url: "https://rule34.us/index.php?r=posts/view&id=6204967",
image_urls: ["https://img2.rule34.us/images/23/66/236690fd962fa394edf9894450261dac.png"],
tags: %w[sora kingdom_hearts rule_63 ai_generated brown_hair female genderswap_(mtf) nai_diffusion stable_diffusion],
download_size: 503_358,
)
end
context "A https://rule34.us/images/xx/xx/$md5.png URL" do
strategy_should_work(
"https://img2.rule34.us/images/23/66/236690fd962fa394edf9894450261dac.png",
page_url: "https://rule34.us/index.php?r=posts/view&id=6204967",
image_urls: ["https://img2.rule34.us/images/23/66/236690fd962fa394edf9894450261dac.png"],
tags: %w[sora kingdom_hearts rule_63 ai_generated brown_hair female genderswap_(mtf) nai_diffusion stable_diffusion],
download_size: 503_358,
)
end
end
end
end