Sha256: 21b442ba62682dc4cdbc7c22fdb44f6a1416e674b7e05afb82640b1e7c55b0d3

Contents?: true

Size: 1.13 KB

Versions: 49

Compression:

Stored size: 1.13 KB

Contents

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

describe "Net::HTTPHeader#range_length" do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  it "returns the length of the Range represented by the 'Content-Range' header entry" do
    @headers["Content-Range"] = "bytes 0-499/1234"
    @headers.range_length.should eql(500)

    @headers["Content-Range"] = "bytes 500-1233/1234"
    @headers.range_length.should eql(734)
  end

  it "returns nil when there is no 'Content-Range' header entry" do
    @headers.range_length.should be_nil
  end

  it "raises a Net::HTTPHeaderSyntaxError when the 'Content-Range' has an invalid format" do
    @headers["Content-Range"] = "invalid"
    lambda { @headers.range_length }.should raise_error(Net::HTTPHeaderSyntaxError)

    @headers["Content-Range"] = "bytes 123-abc"
    lambda { @headers.range_length }.should raise_error(Net::HTTPHeaderSyntaxError)

    @headers["Content-Range"] = "bytes abc-123"
    lambda { @headers.range_length }.should raise_error(Net::HTTPHeaderSyntaxError)
  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/range_length_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/http/httpheader/range_length_spec.rb