How can I stub a call to a url eg http://www.example.com/images/123.png and return an image named 123.png?
I'm using Rails 3.2, Carrierwave. I've tried Fakeweb but got a bit stumped.
How can I stub a call to a url eg http://www.example.com/images/123.png and return an image named 123.png?
I'm using Rails 3.2, Carrierwave. I've tried Fakeweb but got a bit stumped.
To mock external image url with file, you can stub request with any IO
object, like this:
describe '#create' do
it 'creates item' do
io_object = fixture_file_upload('images/1.png', 'image/png').tempfile.to_io
stub_request(:get, 'http://www.example.com/images/123.png')
.to_return(status: 200, body: io_object, headers: {})
params = {
name: 'Good Item',
remote_file_url: 'http://www.example.com/images/123.png')
}
api_post(items_path, params)
end
end
After a few hours of research, turns out it's simple:
My problem is more tricky:
I am testing FB avatar, and I got whitelst extension
The above code will NOT work since the extension is missing
(FB avatar URL: https://graph.facebook.com/123/picture)
But the real FB avatar will redirect to a CDN or something that has the extension
So you need to add another stub:
The SupportFiles module (not written by myself :P):