我正在使用RestClient gem来构建API客户端,并且此方法会处理对API的调用
def call(api_name,api_endpoint,token = nil,*extra_params)
endpoint = fetch_endpoint(api_name,api_endpoint)
params = {}
endpoint['params'].each_with_index { |p,i| params[p] = endpoint['values'][i] }
puts params
if token.nil? then
response = RestClient::Request.execute(method: endpoint['method'], url: endpoint['url'], params: params.to_json)
else
response = RestClient::Request.execute(method: endpoint['method'], url: endpoint['url'], headers: {"Authorization" => "Bearer #{token}"}, params: params.to_json)
end
response
end
正如您所看到的,我所做的就是为调用添加一个带参数/值的哈希,并调用RestClient::Request#execute
来获得响应。
碰巧我的一些测试,比如这个
it 'request_autorization' do
obj = SpotifyIntegration.new
response = obj.call('spotify','request_authorization',nil,state: obj.random_state_string)
myjson = JSON.parse(response.body)
expect(myjson).to eq({})
end
返回400 Bad request
错误,我真的不知道为什么。其他测试,比如这个
it 'my_playlists (with no authorization token)' do
obj = SpotifyIntegration.new
expect {
response = obj.call('spotify','my_playlists')
}.to raise_error(RestClient::Unauthorized,'401 Unauthorized')
end
通过相同的方法处理,运行得非常好。
有没有办法看到发送的请求?我的意思是,看看RestClient如何将我的请求挂载/发送到相应的API?可能是这样我可以理解发生了什么。
通过“查看请求”我的意思是
puts RestClient::Request.prepared_request
或
puts RestClient::Request.prepared_url
我搜索了RestClient文档并发现没有类似内容,但也许有些人知道如何执行此操作。
答案 0 :(得分:1)
您可以尝试使用RestClient.log
获取更多信息。类似的东西:
RestClient.log = STDOUT
WebMock也是HTTP请求的一个很好的测试框架。对rest-client本身的测试大量使用了WebMock。