twitter: test fetching source data from direct image with referer.
This commit is contained in:
@@ -3,10 +3,20 @@ require 'test_helper'
|
|||||||
class SourcesControllerTest < ActionController::TestCase
|
class SourcesControllerTest < ActionController::TestCase
|
||||||
context "The sources controller" do
|
context "The sources controller" do
|
||||||
context "show action" do
|
context "show action" do
|
||||||
should "work" do
|
should "work for a pixiv URL" do
|
||||||
get :show, { url: "http://www.pixiv.net/member_illust.php?mode=medium&illust_id=14901720", format: "json" }
|
get :show, { url: "http://www.pixiv.net/member_illust.php?mode=medium&illust_id=14901720", format: "json" }
|
||||||
assert_response :success
|
assert_response :success
|
||||||
end
|
end
|
||||||
|
|
||||||
|
should "work for a direct twitter URL with referer" do
|
||||||
|
get :show, {
|
||||||
|
url: "https://pbs.twimg.com/media/B4HSEP5CUAA4xyu.png:large",
|
||||||
|
ref: "https://twitter.com/nounproject/status/540944400767922176",
|
||||||
|
format: "json"
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_response :success
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -123,6 +123,21 @@ module Sources
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "The source site for a direct image and a referer" do
|
||||||
|
setup do
|
||||||
|
@site = Sources::Site.new("https://pbs.twimg.com/media/B4HSEP5CUAA4xyu.png:large", referer_url: "https://twitter.com/nounproject/status/540944400767922176")
|
||||||
|
@site.get
|
||||||
|
end
|
||||||
|
|
||||||
|
should "get the artist name" do
|
||||||
|
assert_equal("Noun Project", @site.artist_name)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "get the image url" do
|
||||||
|
assert_equal("https://pbs.twimg.com/media/B4HSEP5CUAA4xyu.png:orig", @site.image_url)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "A tweet" do
|
context "A tweet" do
|
||||||
setup do
|
setup do
|
||||||
@site = Sources::Site.new("https://twitter.com/noizave/status/875768175136317440")
|
@site = Sources::Site.new("https://twitter.com/noizave/status/875768175136317440")
|
||||||
|
|||||||
Reference in New Issue
Block a user