Sha256: 9f5925c78ba2ba3a74aeaff6ffe3b3fa59faf073b56a3b73d955894db9a37f13

Contents?: true

Size: 1.17 KB

Versions: 11

Compression:

Stored size: 1.17 KB

Contents

module Aws
  module Stubbing
    module Protocols
      class Query

        def stub_data(api, operation, data)
          resp = Seahorse::Client::Http::Response.new
          resp.status_code = 200
          resp.body = build_body(api, operation, data)
          resp
        end

        def stub_error(error_code)
          http_resp = Seahorse::Client::Http::Response.new
          http_resp.status_code = 400
          http_resp.body = XmlError.new(error_code).to_xml
          http_resp
        end

        private

        def build_body(api, operation, data)
          xml = []
          builder = Aws::Xml::DocBuilder.new(target: xml, indent: '  ')
          builder.node(operation.name + 'Response', xmlns: xmlns(api)) do
            if (rules = operation.output)
              rules.location_name = operation.name + 'Result'
              Xml::Builder.new(rules, target: xml, pad:'  ').to_xml(data)
            end
            builder.node('ResponseMetadata') do
              builder.node('RequestId', 'stubbed-request-id')
            end
          end
          xml.join
        end

        def xmlns(api)
          api.metadata['xmlNamespace']
        end

      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
aws-sdk-core-3.100.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.99.2 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.99.1 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.99.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.98.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.97.1 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.97.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.96.1 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.96.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.95.0 lib/aws-sdk-core/stubbing/protocols/query.rb
aws-sdk-core-3.94.1 lib/aws-sdk-core/stubbing/protocols/query.rb