Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi, Monks... My quest to get the Everything Engine running continues.

t/astress...........Unrecognized escape \d passed through at blib/lib/ +XML/DOM.pm line 136.

This is what I encountered earlier today (`make test`) when building XML::DOM. I will node something in the next couple days regarding my adventures getting this code to work. However, at the moment, it still doesn't. The fix for this particular error (yes it is an error) is very simple:

# blib/lib/XML/DOM.pm line number 136 change: $ReCharRef = "(?:\&#(?:\d+|x[0-9a-fA-F]+);)"; # to ... $ReCharRef = qr!(?:\&#(?:\d+|x[0-9a-fA-F]+);)!;
This strikes me as a particularly careless error on the author's part. However, it doesnt quite end here. When we run make test now, we still have the errors from before:
t/attr..............Can't locate object method "equals" via package "X +ML::Parser::ContentModel" at CmpDOM.pm line 168.
After a bit of hacking around, we see this code in ./CmpDOM.pm:
if (ref ($p1)) { return 0 unless $p1->equals ($p2, $cmp); }
I did a fair amount of bitching this morning in the CB about this. I will spare everyone the rant, but basically, I feel this code is extremely stylistically impaired. There is not one single line of comment in it. After some searching and yelling, we find that $p1 is looking for a method 'equals' in the file /home/perl/lib/site_perl/5.6.0/ppc-linux-thread-multi/XML/Parser/Expat.pm which, according to perl (and correctly), doesnt exist. Getting the feeling that this module was hopelessly borked anyways, I decided to add that method to Parser::Expat. I added this code:
# roughly line 500 sub equals { $_[1] && $_[2] && return $_[0]; undef; }
This is about as kludgey as I am willing to get on code that will actually be used. I interpret this to mean "if the parameters we are passed are both true, return the object that called us (which will mean true to a test since we got here anyways) otherwise, return undef." Sure, its ugly, but the method doesnt exist and the author provides no documentation for what this should actually be doing nor why it is coded as such. The good news is it then clears the syntax. Furthermore, it clears up a "dubious" result from the test. We are still left with two errors:
t/attr..............ok 23/23FAILED test 3 + Failed 1/23 tests, 95.65% okay # and... t/print.............ok 3/3FAILED test 2 + Failed 1/3 tests, 66.67% okay
back in the attr test, we see this code:
my $str = <<END; <!DOCTYPE simpsons [ <!ELEMENT person (#PCDATA)> <!ATTLIST person name CDATA #REQUIRED hair (none | blue | yellow) "yellow" sex CDATA #REQUIRED> ]> <simpsons> <person name="homer" hair="none" sex="male"/> <person name="marge" hair="blue" sex="female"/> <person name="bart" sex="almost"/> <person name="lisa" sex="never"/> </simpsons> END my $parser = new XML::DOM::Parser; my $doc = $parser->parse ($str); assert_ok (not $@); my $out = $doc->toString; $out =~ tr/\012/\n/; # this line is mine... # warn "out - $out | str - $str"; assert_ok ($out eq $str);
The output of this was positively infuriating. As it turns out, the reason this assertion is failing is thus:
# this... hair (none|blue|yellow) 'yellow' # is not equal to this... hair (none | blue | yellow) "yellow" # which is from the HEREDOC above.
We fix this, and the test is passed. The last test, 'print' fails for a similar reason. In t/print.t:
# change this... <!ELEMENT doc (beavis|butthead)*> # to this... <!ELEMENT doc (beavis | butthead)*> # and all is well.
I am really not one to be negative. And I am also totally unfamiliar with XML. But I am going to go waaaaay out on a limb here and say that these errors are criminally negligent. I read recently here in the CB that XML requires strict adherence to RFC's (or whatever) and mandates failure. Personally, if that is the reason this module failed to test correctly, I dont want anything to do with XML. No thank you. However, if this is in fact what I think it is, egregious errors on the part of the author, I am happy to have been able to provide a fix for people having trouble with it.

Before you ask if this is perhaps something I have locally (jptxs was able to successfully install this module), I have two things to say. First, this copy of perl was installed from scratch, by hand, today. Bundle::XML was the first package to be installed because I was so hell-bent on getting XML to work. Second, it is certainly possible that XML::Expat uses some weirdness in its c-code (provided it has any compiled c code at all). This is a PowerPC, so there might be some compilation differences. If that is the case, I apologize for my fiery rhetoric. Nobody, however, should ever have to spend hours fixing somebody elses undocumented, poorly styled, BROKEN code.

off my soapbox, and on to the Engine...
brother dep.

--
transcending "coolness" is what makes us cool.


In reply to Weirdness (and bugfix for) XML::DOM ... by deprecated

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-19 04:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found