forked from lostisland/faraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_test.rb
79 lines (67 loc) · 1.61 KB
/
client_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# 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