Sha256: 1d5a0756f431d8d44505c4c9d53c229deae9e064c751362cba4c673e9743d8fe

Contents?: true

Size: 1.89 KB

Versions: 3

Compression:

Stored size: 1.89 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Github::Request::Jsonize do

  let(:middleware) { described_class.new(lambda { |env| env }) }

  def process(body, content_type=nil)
    env = {:body => body, :request_headers => {} }
    env[:request_headers]['Content-Type'] = content_type if content_type
    middleware.call(env)
  end

  def result_body() result[:body] end
  def result_type() result[:request_headers]['Content-Type'] end

  context 'no body' do
    let(:result) { process(nil) }

    it "returns empty object" do
      expect(result_body).to be_nil
    end

    it "doesn't add content type" do
      expect(result_type).to be_nil
    end
  end

  context 'empty body' do
    let(:result) { process('') }

    it "returns empty object" do
      expect(result_body).to eq('')
    end

    it "doesn't add content type" do
      expect(result_type).to be_nil
    end
  end

  context 'string body' do
    let(:result) { process('{"a":1}')}

    it "doesn't change body" do
      result_body.should eql '{"a":1}'
    end

    it "adds content type" do
      result_type.should eql 'application/json'
    end
  end

  context "object body" do
    let(:result) { process({:a => 1})}

    it "encodes body" do
      result_body.should eql '{"a":1}'
    end

    it "adds content type" do
      result_type.should eql 'application/json'
    end
  end

  context "empty object body" do
    let(:result) { process({})}

    it "encodes body" do
      result_body.should eql '{}'
    end

    it "adds content type" do
      result_type.should eql 'application/json'
    end
  end

  context 'object body with json type' do
    let(:result) { process({:a => 1}, 'application/json; charset=utf-8')}

    it "encodes body" do
      result_body.should eql '{"a":1}'
    end

    it "doesn't change content type" do
      result_type.should eql 'application/json; charset=utf-8'
    end
  end
end # Github::Request::Jsonize

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github_api-0.12.3 spec/github/request/jsonize_spec.rb
github_api-0.12.2 spec/github/request/jsonize_spec.rb
github_api-0.12.1 spec/github/request/jsonize_spec.rb