Sha256: fbf7b15412a9e17f042a8b7cb19d4e146b79bc160dc3bf2999ffc34d957db0aa

Contents?: true

Size: 1.4 KB

Versions: 10

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

require File.expand_path("../../test_helper", __FILE__)

module Stripe
  class StripeResponseTest < Test::Unit::TestCase
    context ".from_faraday_hash" do
      should "converts to StripeResponse" do
        body = '{"foo": "bar"}'
        headers = { "Request-Id" => "request-id" }

        http_resp = {
          body: body,
          headers: headers,
          status: 200,
        }

        resp = StripeResponse.from_faraday_hash(http_resp)

        assert_equal JSON.parse(body, symbolize_names: true), resp.data
        assert_equal body, resp.http_body
        assert_equal headers, resp.http_headers
        assert_equal 200, resp.http_status
        assert_equal "request-id", resp.request_id
      end
    end

    context ".from_faraday_response" do
      should "converts to StripeResponse" do
        body = '{"foo": "bar"}'
        headers = { "Request-Id" => "request-id" }

        env = Faraday::Env.from(
          status: 200, body: body,
          response_headers: headers
        )
        http_resp = Faraday::Response.new(env)

        resp = StripeResponse.from_faraday_response(http_resp)

        assert_equal JSON.parse(body, symbolize_names: true), resp.data
        assert_equal body, resp.http_body
        assert_equal headers, resp.http_headers
        assert_equal 200, resp.http_status
        assert_equal "request-id", resp.request_id
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
stripe-3.23.0 test/stripe/stripe_response_test.rb
stripe-3.22.0 test/stripe/stripe_response_test.rb
stripe-3.21.0 test/stripe/stripe_response_test.rb
stripe-3.20.0 test/stripe/stripe_response_test.rb
stripe-3.19.0 test/stripe/stripe_response_test.rb
stripe-3.18.0 test/stripe/stripe_response_test.rb
stripe-3.17.2 test/stripe/stripe_response_test.rb
stripe-3.17.1 test/stripe/stripe_response_test.rb
stripe-3.17.0 test/stripe/stripe_response_test.rb
stripe-3.15.0 test/stripe/stripe_response_test.rb