Sha256: e45535badfbf0113d763938083849c62449d40497033d0e644e71a1e931ce64b
Contents?: true
Size: 978 Bytes
Versions: 1160
Compression:
Stored size: 978 Bytes
Contents
module Aws module Stubbing module Protocols class Json def stub_data(api, operation, data) resp = Seahorse::Client::Http::Response.new resp.status_code = 200 resp.headers["Content-Type"] = content_type(api) resp.headers["x-amzn-RequestId"] = "stubbed-request-id" resp.body = build_body(operation, data) resp end def stub_error(error_code) http_resp = Seahorse::Client::Http::Response.new http_resp.status_code = 400 http_resp.body = <<-JSON.strip { "code": #{error_code.inspect}, "message": "stubbed-response-error-message" } JSON http_resp end private def content_type(api) "application/x-amz-json-#{api.metadata['jsonVerison']}" end def build_body(operation, data) Aws::Json::Builder.new(operation.output).to_json(data) end end end end end
Version data entries
1,160 entries across 1,160 versions & 2 rubygems