Sha256: 1cb930cb914a5e1b67440f7c5917a22029b77f5545de5e381389325aa95fdd29

Contents?: true

Size: 1.22 KB

Versions: 49

Compression:

Stored size: 1.22 KB

Contents

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

describe "Net::HTTPHeader#get_fields when passed key" do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  it "returns an Array containing the values of the header entry with the passed key" do
    @headers["My-Header"] = "a"
    @headers.get_fields("My-Header").should == ["a"]

    @headers.add_field("My-Header", "b")
    @headers.get_fields("My-Header").should == ["a", "b"]
  end

  it "returns a copy of the header entry values" do
    @headers["My-Header"] = "a"

    @headers.get_fields("My-Header").clear
    @headers.get_fields("My-Header").should == ["a"]

    @headers.get_fields("My-Header") << "b"
    @headers.get_fields("My-Header").should == ["a"]
  end

  it "returns nil for non-existing header entries" do
    @headers.get_fields("My-Header").should be_nil
    @headers.get_fields("My-Other-header").should be_nil
  end

  it "is case-insensitive" do
    @headers["My-Header"] = "test"
    @headers.get_fields("My-Header").should == ["test"]
    @headers.get_fields("my-header").should == ["test"]
    @headers.get_fields("MY-HEADER").should == ["test"]
  end
end

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/http/httpheader/get_fields_spec.rb