Files
danbooru/test/unit/downloads/file_test.rb
r888888888 c2b49bf2b7 fixes #3293
2017-09-13 11:14:35 -07:00

90 lines
2.5 KiB
Ruby

require 'test_helper'
module Downloads
class FileTest < ActiveSupport::TestCase
context "A twitter video download" do
setup do
@source = "https://twitter.com/CincinnatiZoo/status/859073537713328129"
@tempfile = Tempfile.new("danbooru-test")
@download = Downloads::File.new(@source, @tempfile.path)
end
teardown do
@tempfile.close
end
should "preserve the twitter source" do
@download.download!
assert_equal("https://twitter.com/CincinnatiZoo/status/859073537713328129", @download.source)
end
end
context "A post download" do
setup do
@source = "http://www.google.com/intl/en_ALL/images/logo.gif"
@tempfile = Tempfile.new("danbooru-test")
@download = Downloads::File.new(@source, @tempfile.path)
end
teardown do
@tempfile.close
end
context "that fails" do
setup do
HTTParty.stubs(:get).raises(Errno::ETIMEDOUT)
end
should "retry three times" do
assert_raises(Errno::ETIMEDOUT) do
@download.http_get_streaming(@source) {}
end
end
end
should "stream a file from an HTTP source" do
@download.http_get_streaming(@source) do |resp|
assert(resp.size > 0)
end
end
should "throw an exception when the file is larger than the maximum" do
assert_raise(Downloads::File::Error) do
@download.http_get_streaming(@source, {}, :max_size => 1) do |resp|
end
end
end
should "store the file in the tempfile path" do
@download.download!
assert_equal(@source, @download.source)
assert(::File.exists?(@tempfile.path), "temp file should exist")
assert(::File.size(@tempfile.path) > 0, "should have data")
end
should "initialize the content type" do
@download.download!
assert_match(/image\/gif/, @download.content_type)
end
end
context "A post download with an HTTPS source" do
setup do
@source = "https://www.google.com/intl/en_ALL/images/logo.gif"
@tempfile = Tempfile.new("danbooru-test")
@download = Downloads::File.new(@source, @tempfile.path)
end
teardown do
@tempfile.close
end
should "stream a file from an HTTPS source" do
@download.http_get_streaming(@source) do |resp|
assert(resp.size > 0)
end
end
end
end
end