views:

31

answers:

2

I've been trying to stub open, the open-uri version, and I'm not succeeding.

I've tried doing the following but the request keeps going through:

Kernel.should_receive(:open).and_return("Whatever for now")

I've also tried to do

OpenURI::OpenRead.should_receive(:open).and_return("Whatever for now")

Since I tracked down that was where HTTP requests were made in OpenURI.

Thanks in advance for any suggestions!

A: 

I'd recommend using something to stub the network instead. I believe the current favorite for doing so is FakeWeb [docs]. You may also be interested in fakeweb-matcher for rspec.


Alas, I think FakeWeb might not work with open(), actually, it stubs Net::HTTP, so I'm not sure if that will work. Any chance of not using open()? :)

wuputah
`open()` is a perfect fit for where the code is going so using `Net:HTTP` directly would just feel wrong. :)I spent some more time on Google and found another Stack Overflow question that helped me out. But thanks for trying!
ba
+1  A: 

I found a solution here on Stack Overflow after some more time on Google (I can't believe I didn't find this before).

Explanation taken from here and written by Tony Pitluga (not linkable).

If you are calling sleep within the context of an object, you should stub it on the object[...]
The key is, to stub sleep on whatever "self" is in the context where sleep is called.

So I did this and it all worked out:

let(:read) { mock('open') }

it "should return the new log-level when the log level was set successfully" do
    read.stub(:read).and_return('log-level set to 1')
    kannel.should_receive(:open).and_return(read)

    kannel.set_log_level(1).should == 1
  end
ba
Nice! I think it's reasonable to edit this and post it as the solution for `open()` and accept your own answer. It might be hard to find the `sleep()` article when stubbing `open()`.
wuputah