Sha256: eed7acebe70ab4b7d549f76466306c346795a3129069c5498ccb4403c85768d1

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

require 'helper'
require 'peddler/xml_response_parser'

class TestPeddlerXMLResponseParser < MiniTest::Test
  def test_parses_responses
    body = '<Response><Result><Foo>Bar</Foo></Result></Response>'
    parser = Peddler::XMLResponseParser.new(response(body))
    assert_equal 'Bar', parser.parse['Foo']
  end

  def test_parses_messages
    body = '<Response><MessageType>ProcessingReport</MessageType><Message><Foo>Bar</Foo></Message></Response>'
    parser = Peddler::XMLResponseParser.new(response(body))
    assert_equal 'Bar', parser.parse['Foo']
  end

  def test_parses_reports
    body = '<fooReports><fooReport><foo>Bar</foo></fooReport></fooReports>'
    parser = Peddler::XMLResponseParser.new(response(body))
    assert_equal 'Bar', parser.parse['foo']
  end

  def test_parses_next_token
    body = '<Response><Result><NextToken>123</NextToken></Result></Response>'
    parser = Peddler::XMLResponseParser.new(response(body))
    assert_equal '123', parser.next_token
  end

  private

  def response(body)
    OpenStruct.new(
      body: body,
      headers: { 'Content-Type' => 'text/xml', 'Content-Length' => body.size }
    )
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
peddler-2.0.4 test/unit/peddler/test_xml_response_parser.rb
peddler-2.0.3 test/unit/peddler/test_xml_response_parser.rb
peddler-2.0.0 test/unit/peddler/test_xml_response_parser.rb
peddler-1.6.7 test/unit/peddler/test_xml_response_parser.rb
peddler-1.6.6 test/unit/peddler/test_xml_response_parser.rb
peddler-1.6.5 test/unit/peddler/test_xml_response_parser.rb
peddler-1.6.4 test/unit/peddler/test_xml_response_parser.rb