Sha256: 42a100dfaeb076bf02259d4b38b423f7283a69c23b4660fe82f98dc1b4a3fad9

Contents?: true

Size: 1.41 KB

Versions: 3

Compression:

Stored size: 1.41 KB

Contents

require 'net/http'
require File.expand_path('../fixtures/http_server', __FILE__)

describe "Net::HTTP.get when passed URI" do
  before(:all) do
    NetHTTPSpecs.start_server
  end

  after(:all) do
    NetHTTPSpecs.stop_server
  end

  describe "when passed URI" do
    it "returns the body of the specified uri" do
      Net::HTTP.get(URI.parse('http://localhost:3333/')).should == "This is the index page."
    end
  end

  describe "when passed host, path, port" do
    it "returns the body of the specified host-path-combination" do
      Net::HTTP.get('localhost', "/", 3333).should == "This is the index page."
    end
  end

  ruby_version_is ''...'1.9.3' do
    describe "when passed path in version 1.1 mode" do
      before(:each) do
        Net::HTTP.version_1_1
        @http = Net::HTTP.start("localhost", 3333)
      end

      after(:each) do
        @http.finish if @http.started?
        Net::HTTP.version_1_2
      end

      it "returns the response and the body for the passed path" do
        response, body = @http.get("/")
        response.should be_kind_of(Net::HTTPResponse)

        body.should == "This is the index page."
        response.body.should == "This is the index page."
      end

      it "yields each read part of the body to the passed block when passed a block" do
        buf = ""
        @http.get("/") { |s| buf << s }
        buf.should == "This is the index page."
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysl-net-http-1.0.1 spec/http/get_spec.rb
rubysl-net-http-2.0.4 spec/http/get_spec.rb
rubysl-net-http-1.0.0 spec/http/get_spec.rb