DEV: Refactor specs for `Jobs::PullHotlinkedImages`.

This commit is contained in:
Guo Xiang Tan 2019-06-06 14:55:46 +08:00
parent f00275ded3
commit 3b4432f258
1 changed files with 17 additions and 9 deletions

View File

@ -15,14 +15,29 @@ describe Jobs::PullHotlinkedImages do
stub_request(:get, image_url).to_return(body: png, headers: { "Content-Type" => "image/png" })
stub_request(:get, broken_image_url).to_return(status: 404)
stub_request(:get, large_image_url).to_return(body: large_png, headers: { "Content-Type" => "image/png" })
stub_request(
:get,
"#{Discourse.base_url}/uploads/default/original/1X/f59ea56fe8ebe42048491d43a19d9f34c5d0f8dc.gif"
)
stub_request(
:get,
"#{Discourse.base_url}/uploads/default/original/1X/c530c06cf89c410c0355d7852644a73fc3ec8c04.png"
)
SiteSetting.crawl_images = true
SiteSetting.download_remote_images_to_local = true
SiteSetting.max_image_size_kb = 2
SiteSetting.download_remote_images_threshold = 0
end
describe "#nochange" do
it 'does saves nothing if there are no large images to pull' do
describe '#execute' do
before do
Jobs.run_immediately!
end
it 'does nothing if there are no large images to pull' do
post = Fabricate(:post, raw: 'bob bob')
orig = post.updated_at
@ -30,13 +45,6 @@ describe Jobs::PullHotlinkedImages do
Jobs::PullHotlinkedImages.new.execute(post_id: post.id)
expect(orig).to be_within(1.second).of(post.reload.updated_at)
end
end
describe '#execute' do
before do
Jobs.run_immediately!
FastImage.expects(:size).returns([100, 100]).at_least_once
end
it 'replaces images' do
post = Fabricate(:post, raw: "<img src='#{image_url}'>")