Sha256: e5ab2ef44e5073a478618b280e3c5d6f6f77a61199ca129c50141b73fbf9c0c2

Contents?: true

Size: 1.81 KB

Versions: 3

Compression:

Stored size: 1.81 KB

Contents

require 'spec_helper'
require 'goliath/rack/formatters/json'

describe Goliath::Rack::Formatters::JSON do
  it 'accepts an app' do
    lambda { Goliath::Rack::Formatters::JSON.new('my app') }.should_not raise_error
  end

  describe 'with a formatter' do
    before(:each) do
      @app = mock('app').as_null_object
      @js = Goliath::Rack::Formatters::JSON.new(@app)
    end

    it 'checks content type for application/json' do
      @js.json_response?({'Content-Type' => 'application/json'}).should be_true
    end

    it 'returns false for non-applicaton/json types' do
      @js.json_response?({'Content-Type' => 'application/xml'}).should be_false
    end

    it 'calls the app with the provided environment' do
      env_mock = mock('env').as_null_object
      @app.should_receive(:call).with(env_mock).and_return([200, {}, {"a" => 1}])
      @js.call(env_mock)
    end

    it 'formats the body into json if content-type is json' do
      @app.should_receive(:call).and_return([200, {'Content-Type' => 'application/json'}, {:a => 1, :b => 2}])

      status, header, body = @js.call({})
      lambda { Yajl::Parser.parse(body.first)['a'].should == 1 }.should_not raise_error
    end

    it "doesn't format to json if the type is not application/json" do
      @app.should_receive(:call).and_return([200, {'Content-Type' => 'application/xml'}, {:a => 1, :b => 2}])

      Yajl::Parser.should_not_receive(:encode)
      status, header, body = @js.call({})
      body[:a].should == 1
    end

    it 'returns the status and headers' do
      @app.should_receive(:call).and_return([200, {'Content-Type' => 'application/xml'}, {:a => 1, :b => 2}])

      Yajl::Parser.should_not_receive(:encode)
      status, header, body = @js.call({})
      status.should == 200
      header.should == {'Content-Type' => 'application/xml'}
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
goliath-0.9.4 spec/unit/rack/formatters/json_spec.rb
goliath-0.9.2 spec/unit/rack/formatters/json_spec.rb
goliath-0.9.1 spec/unit/rack/formatters/json_spec.rb