Sha256: b56dec048d474a606e9607c2d0a4540086a32e4a2ff0be1ff2d9fb06ee0050b4

Contents?: true

Size: 1.35 KB

Versions: 6758

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true
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.verbose = false
        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

6,758 entries across 6,756 versions & 22 rubygems

Version Path
ory-client-0.0.1.alpha92 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-oathkeeper-client-0.38.20.beta1 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha91 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha90 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha89 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha88 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha87 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha86 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha85 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha84 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha83 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha82 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha81 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha80 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha79 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha78 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha77 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha76 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha75 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb
ory-client-0.0.1.alpha74 vendor/bundle/ruby/2.5.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb