class Aws::Stubbing::Protocols::Json

Public Instance Methods

stub_data(api, operation, data) click to toggle source
# File lib/aws-sdk-core/stubbing/protocols/json.rb, line 6
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
stub_error(error_code) click to toggle source
# File lib/aws-sdk-core/stubbing/protocols/json.rb, line 15
        def stub_error(error_code)
          http_resp = Seahorse::Client::Http::Response.new
          http_resp.status_code = 400
          http_resp.body = "{
  "code": #{error_code.inspect},
  "message": "stubbed-response-error-message"
}
".strip
          http_resp
        end

Private Instance Methods

build_body(operation, data) click to toggle source
# File lib/aws-sdk-core/stubbing/protocols/json.rb, line 33
def build_body(operation, data)
  Aws::Json::Builder.new(operation.output).to_json(data)
end
content_type(api) click to toggle source
# File lib/aws-sdk-core/stubbing/protocols/json.rb, line 29
def content_type(api)
  "application/x-amz-json-#{api.metadata['jsonVerison']}"
end