Sha256: 5beeb06263d8e19ab672307d6c57f7346acdf7b44cbd9c719f75ce76db5e2f86

Contents?: true

Size: 1.29 KB

Versions: 16

Compression:

Stored size: 1.29 KB

Contents

require 'spec_helper'

describe Ethon::Easy::DebugInfo do
  let(:easy) { Ethon::Easy.new }

  before do
    easy.url = "http://localhost:3001/"
    easy.perform
  end

  describe "#debug_info" do
    context "when verbose is not set to true" do
      it "does not save any debug info after a request" do
        expect(easy.debug_info.to_a.length).to eq(0)
        expect(easy.debug_info.to_h.values.flatten.length).to eq(0)
      end
    end

    context "when verbose is set to true" do
      before do
        easy.verbose = true
        easy.perform
      end

      after do
        easy.reset
      end

      it "saves debug info after a request" do
        expect(easy.debug_info.to_a.length).to be > 0
      end

      it "saves request headers" do
        expect(easy.debug_info.header_out.join).to include('GET / HTTP/1.1')
      end

      it "saves response headers" do
        expect(easy.debug_info.header_in.length).to be > 0
        expect(easy.response_headers).to include(easy.debug_info.header_in.join)
      end

      it "saves incoming data" do
        expect(easy.debug_info.data_in.length).to be > 0
        expect(easy.response_body).to include(easy.debug_info.data_in.join)
      end

      it "saves debug text" do
        expect(easy.debug_info.text.length).to be > 0
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
ethon-0.10.1 spec/ethon/easy/debug_info_spec.rb
ethon-0.10.0 spec/ethon/easy/debug_info_spec.rb
ethon-0.9.1 spec/ethon/easy/debug_info_spec.rb
ethon-0.9.0 spec/ethon/easy/debug_info_spec.rb
ethon-0.8.1 spec/ethon/easy/debug_info_spec.rb
dwolla_swagger-1.0.6 vendor/bundle/ruby/2.2.0/gems/ethon-0.8.0/spec/ethon/easy/debug_info_spec.rb
ethon-0.8.0 spec/ethon/easy/debug_info_spec.rb
ethon-0.7.4 spec/ethon/easy/debug_info_spec.rb
ethon-0.7.3 spec/ethon/easy/debug_info_spec.rb
ethon-0.7.2 spec/ethon/easy/debug_info_spec.rb
ethon-0.7.1 spec/ethon/easy/debug_info_spec.rb
ethon-0.7.0 spec/ethon/easy/debug_info_spec.rb
ethon-0.6.3 spec/ethon/easy/debug_info_spec.rb
ethon-0.6.2 spec/ethon/easy/debug_info_spec.rb
ethon-0.6.1 spec/ethon/easy/debug_info_spec.rb
ethon-0.6.0 spec/ethon/easy/debug_info_spec.rb