Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 1 | # Very simple test - Parse a file and print what happens |
| 2 | |
| 3 | # XXX TypeErrors on calling handlers, or on bad return values from a |
| 4 | # handler, are obscure and unhelpful. |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 5 | |
Jeremy Hylton | 3c19ec4 | 2001-07-30 21:47:25 +0000 | [diff] [blame] | 6 | import pyexpat |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 7 | from xml.parsers import expat |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 8 | |
Tim Peters | 2f228e7 | 2001-05-13 00:19:31 +0000 | [diff] [blame] | 9 | from test_support import sortdict |
| 10 | |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 11 | class Outputter: |
| 12 | def StartElementHandler(self, name, attrs): |
Tim Peters | 2f228e7 | 2001-05-13 00:19:31 +0000 | [diff] [blame] | 13 | print 'Start element:\n\t', repr(name), sortdict(attrs) |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 14 | |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 15 | def EndElementHandler(self, name): |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 16 | print 'End element:\n\t', repr(name) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 17 | |
| 18 | def CharacterDataHandler(self, data): |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 19 | data = data.strip() |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 20 | if data: |
| 21 | print 'Character data:' |
| 22 | print '\t', repr(data) |
| 23 | |
| 24 | def ProcessingInstructionHandler(self, target, data): |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 25 | print 'PI:\n\t', repr(target), repr(data) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 26 | |
| 27 | def StartNamespaceDeclHandler(self, prefix, uri): |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 28 | print 'NS decl:\n\t', repr(prefix), repr(uri) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 29 | |
| 30 | def EndNamespaceDeclHandler(self, prefix): |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 31 | print 'End of NS decl:\n\t', repr(prefix) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 32 | |
| 33 | def StartCdataSectionHandler(self): |
Andrew M. Kuchling | e188d52 | 2000-04-02 05:15:38 +0000 | [diff] [blame] | 34 | print 'Start of CDATA section' |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 35 | |
| 36 | def EndCdataSectionHandler(self): |
Andrew M. Kuchling | e188d52 | 2000-04-02 05:15:38 +0000 | [diff] [blame] | 37 | print 'End of CDATA section' |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 38 | |
| 39 | def CommentHandler(self, text): |
Andrew M. Kuchling | e188d52 | 2000-04-02 05:15:38 +0000 | [diff] [blame] | 40 | print 'Comment:\n\t', repr(text) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 41 | |
| 42 | def NotationDeclHandler(self, *args): |
| 43 | name, base, sysid, pubid = args |
Andrew M. Kuchling | e188d52 | 2000-04-02 05:15:38 +0000 | [diff] [blame] | 44 | print 'Notation declared:', args |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 45 | |
| 46 | def UnparsedEntityDeclHandler(self, *args): |
| 47 | entityName, base, systemId, publicId, notationName = args |
| 48 | print 'Unparsed entity decl:\n\t', args |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 49 | |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 50 | def NotStandaloneHandler(self, userData): |
| 51 | print 'Not standalone' |
| 52 | return 1 |
Fred Drake | 004d5e6 | 2000-10-23 17:22:08 +0000 | [diff] [blame] | 53 | |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 54 | def ExternalEntityRefHandler(self, *args): |
| 55 | context, base, sysId, pubId = args |
Fred Drake | 1e0611b | 2000-12-23 22:12:07 +0000 | [diff] [blame] | 56 | print 'External entity ref:', args[1:] |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 57 | return 1 |
| 58 | |
| 59 | def DefaultHandler(self, userData): |
| 60 | pass |
| 61 | |
| 62 | def DefaultHandlerExpand(self, userData): |
| 63 | pass |
| 64 | |
| 65 | |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 66 | def confirm(ok): |
| 67 | if ok: |
| 68 | print "OK." |
| 69 | else: |
| 70 | print "Not OK." |
| 71 | |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 72 | out = Outputter() |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 73 | parser = expat.ParserCreate(namespace_separator='!') |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 74 | |
| 75 | # Test getting/setting returns_unicode |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 76 | parser.returns_unicode = 0; confirm(parser.returns_unicode == 0) |
| 77 | parser.returns_unicode = 1; confirm(parser.returns_unicode == 1) |
| 78 | parser.returns_unicode = 2; confirm(parser.returns_unicode == 1) |
| 79 | parser.returns_unicode = 0; confirm(parser.returns_unicode == 0) |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 80 | |
Fred Drake | 8f42e2b | 2001-04-25 16:03:54 +0000 | [diff] [blame] | 81 | # Test getting/setting ordered_attributes |
| 82 | parser.ordered_attributes = 0; confirm(parser.ordered_attributes == 0) |
| 83 | parser.ordered_attributes = 1; confirm(parser.ordered_attributes == 1) |
| 84 | parser.ordered_attributes = 2; confirm(parser.ordered_attributes == 1) |
| 85 | parser.ordered_attributes = 0; confirm(parser.ordered_attributes == 0) |
| 86 | |
| 87 | # Test getting/setting specified_attributes |
| 88 | parser.specified_attributes = 0; confirm(parser.specified_attributes == 0) |
| 89 | parser.specified_attributes = 1; confirm(parser.specified_attributes == 1) |
| 90 | parser.specified_attributes = 2; confirm(parser.specified_attributes == 1) |
| 91 | parser.specified_attributes = 0; confirm(parser.specified_attributes == 0) |
| 92 | |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 93 | HANDLER_NAMES = [ |
| 94 | 'StartElementHandler', 'EndElementHandler', |
| 95 | 'CharacterDataHandler', 'ProcessingInstructionHandler', |
| 96 | 'UnparsedEntityDeclHandler', 'NotationDeclHandler', |
| 97 | 'StartNamespaceDeclHandler', 'EndNamespaceDeclHandler', |
| 98 | 'CommentHandler', 'StartCdataSectionHandler', |
| 99 | 'EndCdataSectionHandler', |
| 100 | 'DefaultHandler', 'DefaultHandlerExpand', |
| 101 | #'NotStandaloneHandler', |
| 102 | 'ExternalEntityRefHandler' |
| 103 | ] |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 104 | for name in HANDLER_NAMES: |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 105 | setattr(parser, name, getattr(out, name)) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 106 | |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 107 | data = '''\ |
| 108 | <?xml version="1.0" encoding="iso-8859-1" standalone="no"?> |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 109 | <?xml-stylesheet href="stylesheet.css"?> |
| 110 | <!-- comment data --> |
| 111 | <!DOCTYPE quotations SYSTEM "quotations.dtd" [ |
| 112 | <!ELEMENT root ANY> |
| 113 | <!NOTATION notation SYSTEM "notation.jpeg"> |
| 114 | <!ENTITY acirc "â"> |
| 115 | <!ENTITY external_entity SYSTEM "entity.file"> |
| 116 | <!ENTITY unparsed_entity SYSTEM "entity.file" NDATA notation> |
| 117 | %unparsed_entity; |
| 118 | ]> |
| 119 | |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 120 | <root attr1="value1" attr2="value2ὀ"> |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 121 | <myns:subelement xmlns:myns="http://www.python.org/namespace"> |
| 122 | Contents of subelements |
| 123 | </myns:subelement> |
| 124 | <sub2><![CDATA[contents of CDATA section]]></sub2> |
| 125 | &external_entity; |
| 126 | </root> |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 127 | ''' |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 128 | |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 129 | # Produce UTF-8 output |
| 130 | parser.returns_unicode = 0 |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 131 | try: |
| 132 | parser.Parse(data, 1) |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 133 | except expat.error: |
| 134 | print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) |
Andrew M. Kuchling | b17664d | 2000-03-31 15:44:52 +0000 | [diff] [blame] | 135 | print '** Line', parser.ErrorLineNumber |
| 136 | print '** Column', parser.ErrorColumnNumber |
| 137 | print '** Byte', parser.ErrorByteIndex |
| 138 | |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 139 | # Try the parse again, this time producing Unicode output |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 140 | parser = expat.ParserCreate(namespace_separator='!') |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 141 | parser.returns_unicode = 1 |
| 142 | |
| 143 | for name in HANDLER_NAMES: |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 144 | setattr(parser, name, getattr(out, name)) |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 145 | try: |
| 146 | parser.Parse(data, 1) |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 147 | except expat.error: |
| 148 | print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 149 | print '** Line', parser.ErrorLineNumber |
| 150 | print '** Column', parser.ErrorColumnNumber |
| 151 | print '** Byte', parser.ErrorByteIndex |
| 152 | |
| 153 | # Try parsing a file |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 154 | parser = expat.ParserCreate(namespace_separator='!') |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 155 | parser.returns_unicode = 1 |
| 156 | |
| 157 | for name in HANDLER_NAMES: |
Fred Drake | 265a804 | 2000-09-21 20:32:13 +0000 | [diff] [blame] | 158 | setattr(parser, name, getattr(out, name)) |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 159 | import StringIO |
| 160 | file = StringIO.StringIO(data) |
| 161 | try: |
| 162 | parser.ParseFile(file) |
Fred Drake | 7fbc85c | 2000-09-23 04:47:56 +0000 | [diff] [blame] | 163 | except expat.error: |
| 164 | print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) |
Andrew M. Kuchling | 7fd7e36 | 2000-06-27 00:37:25 +0000 | [diff] [blame] | 165 | print '** Line', parser.ErrorLineNumber |
| 166 | print '** Column', parser.ErrorColumnNumber |
| 167 | print '** Byte', parser.ErrorByteIndex |
Fred Drake | 1e0611b | 2000-12-23 22:12:07 +0000 | [diff] [blame] | 168 | |
| 169 | |
| 170 | # Tests that make sure we get errors when the namespace_separator value |
| 171 | # is illegal, and that we don't for good values: |
| 172 | print |
| 173 | print "Testing constructor for proper handling of namespace_separator values:" |
| 174 | expat.ParserCreate() |
| 175 | expat.ParserCreate(namespace_separator=None) |
| 176 | expat.ParserCreate(namespace_separator=' ') |
| 177 | print "Legal values tested o.k." |
| 178 | try: |
| 179 | expat.ParserCreate(namespace_separator=42) |
| 180 | except TypeError, e: |
| 181 | print "Caught expected TypeError:" |
| 182 | print e |
| 183 | else: |
| 184 | print "Failed to catch expected TypeError." |
Fred Drake | 8f42e2b | 2001-04-25 16:03:54 +0000 | [diff] [blame] | 185 | |
Fred Drake | 1e0611b | 2000-12-23 22:12:07 +0000 | [diff] [blame] | 186 | try: |
| 187 | expat.ParserCreate(namespace_separator='too long') |
| 188 | except ValueError, e: |
| 189 | print "Caught expected ValueError:" |
| 190 | print e |
| 191 | else: |
| 192 | print "Failed to catch expected ValueError." |
Fred Drake | 8f42e2b | 2001-04-25 16:03:54 +0000 | [diff] [blame] | 193 | |
| 194 | # ParserCreate() needs to accept a namespace_separator of zero length |
| 195 | # to satisfy the requirements of RDF applications that are required |
| 196 | # to simply glue together the namespace URI and the localname. Though |
| 197 | # considered a wart of the RDF specifications, it needs to be supported. |
| 198 | # |
| 199 | # See XML-SIG mailing list thread starting with |
| 200 | # http://mail.python.org/pipermail/xml-sig/2001-April/005202.html |
| 201 | # |
| 202 | expat.ParserCreate(namespace_separator='') # too short |