Sha256: d0df0e0633416cc1f6b43972fe2c3c28d2c921ae3b7872a821a37de59b8710ea
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
require 'horseman/connection' module Mocks def html %{ <html> <head></head> <body> <form id="form1" enctype="multipart/form-data" action="action"> <input type="text" name="text" value="value1" /> <input type="checkbox" name="check" value="value2" /> <input type="hidden" name="hidden" value="value3" /> <input type="submit" name="submit1" value="OK" /> </form> <form id="form2" action="http://www.anotherdomain.com/action"> <input type="text" name="text1" /> <input type="text" name="text2" /> <input type="submit" name="submit2" value="OK" /> </form> <form id="form3" action=""> </form> </body> </html> } end def cookies ['name1=value1; Domain=www.example.com; Path=/path; Expires=Sun, 1-Jan-2012 00:00:00 GMT', 'name2=value2; Domain=www.example.com; Path=/path; Expires=Sun, 1-Jan-2012 00:00:00 GMT'] end def request r = double("HttpRequest") r.stub(:[]=) {} r.stub(:body) {} r.stub(:each_header) {} r end def response(options={}) r = double("HttpResponse") r.stub(:code) { '200' } r.stub(:[]) do |key| case key when 'set-cookie' cookies.join(', ') when 'location' options[:location] || 'http://www.anotherdomain.com/path' end end r.stub(:to_hash) { Hash.new } r.stub(:get_fields) do |key| case key when 'set-cookie' cookies end end r.stub(:body) { html } r end def connection c = Horseman::Connection.new c.stub(:exec_request) { response } c end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
horseman-0.0.4 | spec/mocks.rb |
horseman-0.0.3 | spec/mocks.rb |