mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-07 00:11:11 -04:00
80 lines
1.6 KiB
Ruby
80 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Requires Ruby with test-unit and faraday gems.
|
|
# ruby client_test.rb
|
|
|
|
require 'faraday'
|
|
require 'json'
|
|
require 'test/unit'
|
|
|
|
# Example API client
|
|
class Client
|
|
def initialize(conn)
|
|
@conn = conn
|
|
end
|
|
|
|
def sushi(jname)
|
|
res = @conn.get("/#{jname}")
|
|
data = JSON.parse(res.body)
|
|
data['name']
|
|
end
|
|
end
|
|
|
|
# Example API client test
|
|
class ClientTest < Test::Unit::TestCase
|
|
def test_sushi_name
|
|
stubs = Faraday::Adapter::Test::Stubs.new
|
|
stubs.get('/ebi') do |env|
|
|
# optional: you can inspect the Faraday::Env
|
|
assert_equal '/ebi', env.url.path
|
|
[
|
|
200,
|
|
{ 'Content-Type': 'application/javascript' },
|
|
'{"name": "shrimp"}'
|
|
]
|
|
end
|
|
|
|
# uncomment to trigger stubs.verify_stubbed_calls failure
|
|
# stubs.get('/unused') { [404, {}, ''] }
|
|
|
|
cli = client(stubs)
|
|
assert_equal 'shrimp', cli.sushi('ebi')
|
|
stubs.verify_stubbed_calls
|
|
end
|
|
|
|
def test_sushi_404
|
|
stubs = Faraday::Adapter::Test::Stubs.new
|
|
stubs.get('/ebi') do
|
|
[
|
|
404,
|
|
{ 'Content-Type': 'application/javascript' },
|
|
'{}'
|
|
]
|
|
end
|
|
|
|
cli = client(stubs)
|
|
assert_nil cli.sushi('ebi')
|
|
stubs.verify_stubbed_calls
|
|
end
|
|
|
|
def test_sushi_exception
|
|
stubs = Faraday::Adapter::Test::Stubs.new
|
|
stubs.get('/ebi') do
|
|
raise Faraday::ConnectionFailed, nil
|
|
end
|
|
|
|
cli = client(stubs)
|
|
assert_raise Faraday::ConnectionFailed do
|
|
cli.sushi('ebi')
|
|
end
|
|
stubs.verify_stubbed_calls
|
|
end
|
|
|
|
def client(stubs)
|
|
conn = Faraday.new do |builder|
|
|
builder.adapter :test, stubs
|
|
end
|
|
Client.new(conn)
|
|
end
|
|
end
|