0
0
zero/spec/unit/response/response_spec.rb

93 lines
2.3 KiB
Ruby
Raw Normal View History

# encoding: UTF-8
2012-11-16 17:56:34 +01:00
require 'spec_helper'
describe Zero::Response do
2012-11-16 17:56:34 +01:00
subject { Zero::Response.new() }
describe '#to_a' do
it "returns an array within status header and body" do
subject.status = 200
subject.header = {}
subject.body = []
value = subject.to_a
value.should be_an_instance_of(Array)
value[0].should eq(200) # Status code
2012-11-23 19:35:14 +01:00
value[1].should eq({"Content-Length" => 0}) # Headers
value[2].should eq([]) # Body
end
it "returns the content length in the header" do
subject.body = ['foobar']
2012-11-23 19:35:14 +01:00
value = subject.to_a
value[1].should eq({'Content-Length' => 6}) # Headers
end
it "does not fix the Content-Length, if it's already set" do
subject.body = ['foobar']
subject.header = {'Content-Length' => 3}
value = subject.to_a
value[1].should eq({'Content-Length' => 3}) # Headers
end
end
2012-11-17 14:46:53 +01:00
describe '#status' do
it "must return the status always as an integer" do
subject.status = "foobar"
subject.status.should eq(0)
subject.status = 240.5
subject.status.should eq(240)
end
it "must return 200, if no status code was set" do
subject.status.should eq(200)
end
2012-11-17 14:46:53 +01:00
end
2012-11-18 15:02:07 +01:00
describe '#header' do
it "must return an empty hash, if no header was set" do
subject.header.should eq({})
end
2012-11-18 15:02:07 +01:00
end
2012-11-18 16:09:41 +01:00
describe '#body' do
it "must return an empty array, if no body was set" do
subject.body.should eq([])
end
2012-11-18 16:09:41 +01:00
end
describe '#content_length' do
it "sets the Content-Length to 0, if there is no content" do
subject.content_length
subject.header['Content-Length'].should eq(0)
end
it "sets the Content-Length to the size of the message body" do
subject.body = ['foo', 'bar']
subject.content_length
subject.header['Content-Length'].should eq(6)
end
it "sets the Content-Length to the bytesize of the message body" do
subject.body = ['föö', 'bär']
subject.content_length
subject.header['Content-Length'].should eq(9)
end
end
describe '#content_type' do
it "sets the Content-Type to the given value" do
subject.content_type 'application/json'
subject.header['Content-Type'].should eq('application/json')
end
end
end