Sha256: bf14cc2284257cbdb297a7b4a4dbfe88cf2528de7afb6c35f60d6b326a8f5792

Contents?: true

Size: 1019 Bytes

Versions: 3

Compression:

Stored size: 1019 Bytes

Contents

# encoding: UTF-8
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper.rb')
begin
  require 'yajl/bzip2'
rescue
  warn "Couldn't load yajl/bzip2, maybe you don't have bzip2-ruby installed? Continuing without running bzip2 specs."
end
require 'yajl/gzip'
require 'yajl/deflate'
require 'yajl/http_stream'

describe "Yajl HTTP error" do
  before(:all) do
    @request = File.new(File.expand_path(File.dirname(__FILE__) + "/fixtures/http.error.dump"), 'r')
    @uri = 'file://'+File.expand_path(File.dirname(__FILE__) + "/fixtures/http/http.error.dump")
    TCPSocket.should_receive(:new).and_return(@request)
    @request.should_receive(:write)
    
    begin
      Yajl::HttpStream.get(@uri)
    rescue Yajl::HttpStream::HttpError => e
      @error = e
    end
  end

  it "should contain the error code in the message" do
    @error.message.should match(/404/)
  end
  
  it "should provide the HTTP response headers" do
    @error.headers.keys.should include('ETag', 'Content-Length', 'Server')
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yajl-ruby-0.7.1 spec/http/http_error_spec.rb
yajl-ruby-0.7.0 spec/http/http_error_spec.rb
yajl-ruby-0.6.9 spec/http/http_error_spec.rb