|
|
@ -27,6 +27,7 @@ RSpec.describe FetchLinkCardService do
|
|
|
|
stub_request(:get, 'http://example.com/koi8-r').to_return(request_fixture('koi8-r.txt'))
|
|
|
|
stub_request(:get, 'http://example.com/koi8-r').to_return(request_fixture('koi8-r.txt'))
|
|
|
|
stub_request(:get, 'http://example.com/windows-1251').to_return(request_fixture('windows-1251.txt'))
|
|
|
|
stub_request(:get, 'http://example.com/windows-1251').to_return(request_fixture('windows-1251.txt'))
|
|
|
|
stub_request(:get, 'http://example.com/low_confidence_latin1').to_return(request_fixture('low_confidence_latin1.txt'))
|
|
|
|
stub_request(:get, 'http://example.com/low_confidence_latin1').to_return(request_fixture('low_confidence_latin1.txt'))
|
|
|
|
|
|
|
|
stub_request(:get, 'http://example.com/aergerliche-umlaute').to_return(request_fixture('redirect_with_utf8_url.txt'))
|
|
|
|
|
|
|
|
|
|
|
|
Rails.cache.write('oembed_endpoint:example.com', oembed_cache) if oembed_cache
|
|
|
|
Rails.cache.write('oembed_endpoint:example.com', oembed_cache) if oembed_cache
|
|
|
|
|
|
|
|
|
|
|
@ -101,6 +102,14 @@ RSpec.describe FetchLinkCardService do
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context 'with a redirect URL with faulty encoding' do
|
|
|
|
|
|
|
|
let(:status) { Fabricate(:status, text: 'http://example.com/aergerliche-umlaute') }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it 'does not create a preview card' do
|
|
|
|
|
|
|
|
expect(status.preview_card).to be_nil
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
context 'with a 404 URL' do
|
|
|
|
context 'with a 404 URL' do
|
|
|
|
let(:status) { Fabricate(:status, text: 'http://example.com/not-found') }
|
|
|
|
let(:status) { Fabricate(:status, text: 'http://example.com/not-found') }
|
|
|
|
|
|
|
|
|
|
|
|