Skip to content

Commit 2225e45

Browse files
committed
SalesTerm XML errors raise verbose IntuitRequestException
1 parent 7141ceb commit 2225e45

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

lib/quickeebooks/online/service/sales_term.rb

+15
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,21 @@ def fetch_by_id(id, idDomain = 'QB', options = {})
1010
url = "#{url_for_resource(Quickeebooks::Online::Model::SalesTerm::REST_RESOURCE)}/#{id}"
1111
fetch_object(Quickeebooks::Online::Model::SalesTerm, url, { :idDomain => idDomain })
1212
end
13+
14+
private
15+
16+
def fetch_object(model, url, params = {}, options = {})
17+
raise ArgumentError, "missing model to instantiate" if model.nil?
18+
response = do_http_get(url, params, {'Content-Type' => 'text/xml'})
19+
20+
xml = parse_xml(response.body)
21+
begin
22+
element = xml.at_xpath("//xmlns:#{model::XML_NODE}")
23+
rescue Nokogiri::XML::XPath::SyntaxError => ex
24+
raise IntuitRequestException.new("Error parsing XML: #{ex.message}\nHTTP Response: (#{response.code}) #{response.body}")
25+
end
26+
model.from_xml(element)
27+
end
1328
end
1429
end
1530
end

lib/quickeebooks/online/service/service_base.rb

-11
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,6 @@ def valid_xml_document(xml)
7878
%Q{<?xml version="1.0" encoding="utf-8"?>\n#{xml.strip}}
7979
end
8080

81-
def fetch_object(model, url, params = {}, options = {})
82-
raise ArgumentError, "missing model to instantiate" if model.nil?
83-
response = do_http_get(url, params, {'Content-Type' => 'text/xml'})
84-
85-
xml = parse_xml(response.body)
86-
element = xml.at_xpath("//xmlns:#{model::XML_NODE}")
87-
model.from_xml(element)
88-
rescue => ex
89-
raise IntuitRequestException.new("Error parsing XML: #{ex.message}")
90-
end
91-
9281
def fetch_collection(model, filters = [], page = 1, per_page = 20, sort = nil, options ={})
9382
raise ArgumentError, "missing model to instantiate" if model.nil?
9483

spec/quickeebooks/online/services/sales_term_spec.rb

+11
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,15 @@
3434
sales_term.meta_data.last_updated_time.should == Time.parse('2013-01-17T19:04:19-08:00')
3535
sales_term.name.should == "Net 30"
3636
end
37+
38+
context 'when a XML parsing error occurs' do
39+
it "raises an IntuitRequestException" do
40+
xml = ''
41+
url = @service.url_for_resource(Quickeebooks::Online::Model::SalesTerm.resource_for_singular)
42+
url = "#{url}/99?idDomain=QB"
43+
FakeWeb.register_uri(:get, url, :status => ["200", "OK"], :body => xml)
44+
expect{ @service.fetch_by_id(99) }.to raise_error(IntuitRequestException)
45+
end
46+
end
47+
3748
end

0 commit comments

Comments
 (0)