mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
62 lines
1.2 KiB
Ruby
62 lines
1.2 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'
|
|
|
|
class Client
|
|
def initialize(conn)
|
|
@conn = conn
|
|
end
|
|
|
|
def sushi(jname)
|
|
res = @conn.get("/#{jname}")
|
|
data = JSON.parse(res.body)
|
|
data['name']
|
|
end
|
|
end
|
|
|
|
class ClientTest < Test::Unit::TestCase
|
|
def test_sushi_name
|
|
stubs = Faraday::Adapter::Test::Stubs.new
|
|
stubs.get('/ebi') do |env|
|
|
[
|
|
200,
|
|
{ 'Content-Type': 'application/javascript' },
|
|
'{"name": "shrimp"}'
|
|
]
|
|
end
|
|
|
|
# fails because of stubs.verify_stubbed_calls
|
|
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 |env|
|
|
[
|
|
404,
|
|
{ 'Content-Type': 'application/javascript' },
|
|
'{}'
|
|
]
|
|
end
|
|
|
|
cli = client(stubs)
|
|
assert_nil cli.sushi('ebi')
|
|
stubs.verify_stubbed_calls
|
|
end
|
|
|
|
def client(stubs)
|
|
conn = Faraday.new do |builder|
|
|
builder.adapter :test, stubs
|
|
end
|
|
Client.new(conn)
|
|
end
|
|
end
|