Sha256: b56dec048d474a606e9607c2d0a4540086a32e4a2ff0be1ff2d9fb06ee0050b4

Contents?: true

Size: 1.35 KB

Versions: 6477

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,477 entries across 6,475 versions & 21 rubygems

Version Path
mux_ruby-3.20.0 vendor/bundle/ruby/3.2.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.12 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.11 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.10 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.7 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
ory-client-1.15.12 vendor/bundle/ruby/3.1.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.4 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_bank_ruby-0.123.3 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_organization_ruby-0.123.3 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb
cybrid_api_id_ruby-0.123.3 vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb