;;; xml-tests.el --- Test suite for XML parsing. -*- lexical-binding:t -*- ;; Copyright (C) 2012-2023 Free Software Foundation, Inc. ;; Author: Chong Yidong ;; Keywords: internal ;; Human-Keywords: internal ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; Type M-x test-xml-parse RET to generate the test buffer. ;;; Code: (require 'ert) (require 'xml) (defvar xml-parse-tests--data `(;; General entity substitution ("]>&ent;;" . ((foo ((a . "b")) (bar nil "AbC;")))) ("&amp;&apos;'<>"" . ((foo () "&''<>\""))) ;; Parameter entity substitution ("]>&ent;;" . ((foo ((a . "b")) (bar nil "AbC;")))) ;; Tricky parameter entity substitution (like XML spec Appendix D) ("' > %xx; ]>A&ent;C" . ((foo () "AbC"))) ;; Bug#7172 (" ]>" . ((foo ()))) ;; Entities referencing entities, in character data ("]>&abc;" . ((foo () "aBc"))) ;; Entities referencing entities, in attribute values ("]>1" . ((foo ((a . "-aBc-")) "1"))) ;; Character references must be treated as character data ("AT&T;" . ((foo () "AT&T;"))) ("&amp;" . ((foo () "&"))) ("&amp;" . ((foo () "&"))) ;; Unusual but valid XML names [5] ("<ÀÖØö.3·-‿⁀󯿿>abc" . ((,(intern "ÀÖØö.3·-‿⁀󯿿") () "abc"))) ("<:>abc" . ((,(intern ":") () "abc")))) "Alist of XML strings and their expected parse trees.") (defvar xml-parse-tests--bad-data '(;; XML bomb in content "]>&lol2;" ;; XML bomb in attribute value "]>!" ;; Non-terminating DTD "" "asdf" "asdf&abc;" ;; Invalid XML names "<0foo>abc" "<‿foo>abc" "abc" ;; Two root tags "" ;; Bug#16344 "< /x>" "< b/>") "List of XML strings that should signal an error in the parser.") (defvar xml-parse-tests--qnames '( ;; Test data for name expansion ("/calendar/events/HTTP/1.1 200 OK" ;; Result with qnames as cons ((("DAV:" . "multistatus") ((("http://www.w3.org/2000/xmlns/" . "D") . "DAV:")) (("DAV:" . "response") nil (("DAV:" . "href") nil "/calendar/events/") (("DAV:" . "propstat") nil (("DAV:" . "status") nil "HTTP/1.1 200 OK"))))) ;; Result with qnames as symbols ((DAV:multistatus ((("http://www.w3.org/2000/xmlns/" . "D") . "DAV:")) (DAV:response nil (DAV:href nil "/calendar/events/") (DAV:propstat nil (DAV:status nil "HTTP/1.1 200 OK")))))) ("hi there" ((("FOOBAR:" . "something") nil "hi there")) ((FOOBAR:something nil "hi there")))) "List of strings which are parsed using namespace expansion. Parser is called with and without `symbol-qnames' argument.") (ert-deftest xml-parse-tests () "Test XML parsing." (with-temp-buffer (dolist (test xml-parse-tests--data) (erase-buffer) (insert (car test)) (should (equal (cdr test) (xml-parse-region)))) (let ((xml-entity-expansion-limit 50)) (dolist (test xml-parse-tests--bad-data) (erase-buffer) (insert test) (should-error (xml-parse-region)))) (let ((testdata (car xml-parse-tests--qnames))) (erase-buffer) (insert (car testdata)) (should (equal (nth 1 testdata) (xml-parse-region nil nil nil nil t))) (should (equal (nth 2 testdata) (xml-parse-region nil nil nil nil 'symbol-qnames)))) (let ((testdata (nth 1 xml-parse-tests--qnames))) (erase-buffer) (insert (car testdata)) ;; Provide additional namespace-URI mapping (should (equal (nth 1 testdata) (xml-parse-region nil nil nil nil (append xml-default-ns '(("F" . "FOOBAR:")))))) (should (equal (nth 2 testdata) (xml-parse-region nil nil nil nil (cons 'symbol-qnames (append xml-default-ns '(("F" . "FOOBAR:")))))))))) ;; Test bug #23440 (proper expansion of default namespace) ; Test data for default namespace (defvar xml-parse-test--default-namespace-qnames (cons "" '((myns:something ((("http://www.w3.org/2000/xmlns/" . "") . "myns:")) (myns:whatever nil))))) (ert-deftest xml-parse-test-default-namespace-qnames () (with-temp-buffer (insert (car xml-parse-test--default-namespace-qnames)) (should (equal (cdr xml-parse-test--default-namespace-qnames) (xml-parse-region nil nil nil nil 'symbol-qnames))))) ;; Test bug #26533 (proper expansion in prefixed attributes with 'symbol-qnames) (defvar xml-parse-test--namespace-attribute-qnames (cons "" '((something ((("http://www.w3.org/2000/xmlns/" . "a") . "myns:")) (whatever ((myns:b . "c"))))))) (ert-deftest xml-parse-namespace-attribute-qnames () (with-temp-buffer (insert (car xml-parse-test--namespace-attribute-qnames)) (should (equal (cdr xml-parse-test--namespace-attribute-qnames) (xml-parse-region nil nil nil nil 'symbol-qnames))))) (ert-deftest xml-print-invalid-cdata () "Check that Bug#41094 is fixed." (with-temp-buffer (should (equal (should-error (xml-print '((foo () "\0"))) :type 'xml-invalid-character) '(xml-invalid-character 0 1))) (should (equal (should-error (xml-print '((foo () "\u00FF \xFF"))) :type 'xml-invalid-character) '(xml-invalid-character #x3FFFFF 3))))) (defvar xml-tests--data-with-comments `(;; simple case ("bar" . ((foo ((baz . "true")) "bar"))) ;; toplevel comments -- first document child must not get lost (,(concat "bar" "") . ((foo nil "bar"))) (,(concat "" "blub") . ((foo ((a . "b")) (bar nil "blub"))))) "Alist of XML strings and their expected parse trees for discarded comments.") (ert-deftest xml-remove-comments () (dolist (test xml-tests--data-with-comments) (erase-buffer) (insert (car test)) (xml-remove-comments (point-min) (point-max)) (should (equal (cdr test) (xml-parse-region (point-min) (point-max)))))) ;;; xml-tests.el ends here