mirror of
https://github.com/lostisland/faraday.git
synced 2025-11-30 00:02:04 -05:00
25 lines
747 B
Ruby
25 lines
747 B
Ruby
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
|
|
|
|
class RequestMiddlewareTest < Faraday::TestCase
|
|
[:yajl, :rails_json].each do |key|
|
|
encoder = Faraday::Request.lookup_module(key)
|
|
next if !encoder.loaded?
|
|
|
|
define_method "test_encodes_json_with_#{key}" do
|
|
raw_json = create_json_connection(encoder).post('echo_body', :a => 1).body
|
|
raw_json.gsub! /: 1/, ':1' # sometimes rails_json adds a space
|
|
assert_equal %({"a":1}), raw_json
|
|
end
|
|
end
|
|
|
|
private
|
|
def create_json_connection(encoder)
|
|
Faraday::Connection.new do |b|
|
|
b.use encoder
|
|
b.adapter :test do |stub|
|
|
stub.post('echo_body') { |env| [200, {'Content-Type' => 'text/html'}, env[:body]] }
|
|
end
|
|
end
|
|
end
|
|
end
|