Sha256: bda149833ccd5139a807e342936b4c4c466a37f759c84cd10ec99ae43b983e1d

Contents?: true

Size: 1.56 KB

Versions: 1809

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true
require 'spec_helper'

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

  describe "#set_callbacks" do
    before do
      expect(Ethon::Curl).to receive(:set_option).exactly(3).times
    end

    it "sets write-, debug-, and headerfunction" do
      easy.set_callbacks
    end

    it "resets @response_body" do
      easy.set_callbacks
      expect(easy.instance_variable_get(:@response_body)).to eq("")
    end

    it "resets @response_headers" do
      easy.set_callbacks
      expect(easy.instance_variable_get(:@response_headers)).to eq("")
    end

    it "resets @debug_info" do
      easy.set_callbacks
      expect(easy.instance_variable_get(:@debug_info).to_a).to eq([])
    end
  end

  describe "#progress_callback" do
    it "returns 0" do
      expect(easy.progress_callback.call(0,1,1,1,1)).to be(0)
    end
  end

  describe "#body_write_callback" do
    let(:body_write_callback) { easy.instance_variable_get(:@body_write_callback) }
    let(:stream) { double(:read_string => "") }
    context "when body returns not :abort" do
      it "returns number bigger than 0" do
        expect(body_write_callback.call(stream, 1, 1, nil) > 0).to be(true)
      end
    end

    context "when body returns :abort" do
      before do
        easy.on_body.clear
        easy.on_body { :abort }
      end
      let(:body_write_callback) { easy.instance_variable_get(:@body_write_callback) }

      it "returns -1 to indicate abort to libcurl" do
        expect(body_write_callback.call(stream, 1, 1, nil)).to eq(-1)
      end
    end
  end
end

Version data entries

1,809 entries across 1,807 versions & 16 rubygems

Version Path
cybrid_api_organization_ruby-0.51.5 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.51.4 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.51.4 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.51.4 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.51.3 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.51.3 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.51.3 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.51.2 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.51.2 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.51.2 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.51.1 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.51.1 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.51.1 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.51.0 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.51.0 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.51.0 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.50.9 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_organization_ruby-0.50.9 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_id_ruby-0.50.9 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb
cybrid_api_bank_ruby-0.50.8 vendor/bundle/ruby/3.1.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb