spec/http/http_post_spec.rb in yajl-ruby-0.7.1 vs spec/http/http_post_spec.rb in yajl-ruby-0.7.2
- old
+ new
@@ -20,26 +20,26 @@
describe "Yajl HTTP POST request" do
before(:all) do
raw = File.new(File.expand_path(File.dirname(__FILE__) + '/fixtures/http.raw.dump'), 'r')
parse_off_headers(raw)
@template_hash = Yajl::Parser.parse(raw)
-
+
raw.rewind
parse_off_headers(raw)
@template_hash_symbolized = Yajl::Parser.parse(raw, :symbolize_keys => true)
-
+
@deflate = File.new(File.expand_path(File.dirname(__FILE__) + '/fixtures/http.deflate.dump'), 'r')
@gzip = File.new(File.expand_path(File.dirname(__FILE__) + '/fixtures/http.gzip.dump'), 'r')
@body = "blah=foo&bar=baz"
@hashed_body = {:blah => 'foo', 'bar' => 'baz'}
@chunked_body = {"item"=>{"price"=>1.99, "updated_by_id"=>nil, "cached_tag_list"=>"", "name"=>"generated", "created_at"=>"2009-03-24T05:25:09Z", "cost"=>0.597, "delta"=>false, "created_by_id"=>nil, "updated_at"=>"2009-03-24T05:25:09Z", "import_tag"=>nil, "account_id"=>16, "id"=>1, "taxable"=>true, "unit"=>nil, "sku"=>"06317-0306", "company_id"=>0, "description"=>nil, "active"=>true}}
end
-
+
after(:each) do
@file_path = nil
end
-
+
def prepare_mock_request_dump(format=:raw)
@request = File.new(File.expand_path(File.dirname(__FILE__) + "/fixtures/http.#{format}.dump"), 'r')
@uri = 'file://'+File.expand_path(File.dirname(__FILE__) + "/fixtures/http/http.#{format}.dump")
TCPSocket.should_receive(:new).and_return(@request)
@request.should_receive(:write)
@@ -60,43 +60,43 @@
it "should parse a raw response with hashed body" do
prepare_mock_request_dump :raw
@template_hash.should == Yajl::HttpStream.post(@uri, @hashed_body)
end
-
+
it "should parse a raw response and symbolize keys" do
prepare_mock_request_dump :raw
@template_hash_symbolized.should == Yajl::HttpStream.post(@uri, @body, :symbolize_keys => true)
end
-
+
if defined?(Yajl::Bzip2::StreamReader)
it "should parse a bzip2 compressed response" do
prepare_mock_request_dump :bzip2
@template_hash.should == Yajl::HttpStream.post(@uri, @body)
end
-
+
it "should parse a bzip2 compressed response and symbolize keys" do
prepare_mock_request_dump :bzip2
@template_hash_symbolized.should == Yajl::HttpStream.post(@uri, @body, :symbolize_keys => true)
end
end
-
+
it "should parse a deflate compressed response" do
prepare_mock_request_dump :deflate
@template_hash.should == Yajl::HttpStream.post(@uri, @body)
end
-
+
it "should parse a deflate compressed response and symbolize keys" do
prepare_mock_request_dump :deflate
@template_hash_symbolized.should == Yajl::HttpStream.post(@uri, @body, :symbolize_keys => true)
end
-
+
it "should parse a gzip compressed response" do
prepare_mock_request_dump :gzip
@template_hash.should == Yajl::HttpStream.post(@uri, @body)
end
-
+
it "should parse a gzip compressed response and symbolize keys" do
prepare_mock_request_dump :gzip
@template_hash_symbolized.should == Yajl::HttpStream.post(@uri, @body, :symbolize_keys => true)
end
@@ -114,10 +114,10 @@
it "should throw InvalidContentType if unable to handle the MIME type" do
prepare_mock_request_dump :html
lambda {Yajl::HttpStream.post(@uri, @body)}.should raise_error(Yajl::HttpStream::InvalidContentType)
end
-
+
it "should raise when an HTTP code that isn't 200 is returned" do
prepare_mock_request_dump :error
lambda { Yajl::HttpStream.post(@uri, @body) }.should raise_exception(Yajl::HttpStream::HttpError)
end
end
\ No newline at end of file