diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2016-08-28 18:36:27 +0200 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2016-08-28 18:36:27 +0200 |
commit | 91734c6bd33bab47c443ca23e6948e3a7900856b (patch) | |
tree | cb46a29b681d5d45f6497091352ac758e7854161 | |
parent | 7fcce24e75b8281621a0b8816dc58cbdc05fdc91 (diff) |
Add tests for dom.el
* test/lisp/dom-tests.el: New file with tests for dom.el.
-rw-r--r-- | test/lisp/dom-tests.el | 201 |
1 files changed, 201 insertions, 0 deletions
diff --git a/test/lisp/dom-tests.el b/test/lisp/dom-tests.el new file mode 100644 index 0000000000..ca6bfbf84b --- /dev/null +++ b/test/lisp/dom-tests.el @@ -0,0 +1,201 @@ +;;; dom-tests.el --- Tests for dom.el -*- lexical-binding: t; -*- + +;; Copyright (C) 2016 Free Software Foundation, Inc. + +;; Author: Simen Heggestøyl <simenheg@gmail.com> +;; Keywords: + +;; 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 <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;; + +;;; Code: + +(require 'dom) +(require 'ert) +(require 'subr-x) + +(defun dom-tests--tree () + "Return a DOM tree for testing." + (dom-node "html" nil + (dom-node "head" nil + (dom-node "title" nil + "Test")) + (dom-node "body" nil + (dom-node "div" '((class . "foo") + (style . "color: red;")) + (dom-node "p" '((id . "bar")) + "foo")) + (dom-node "div" '((title . "2nd div")) + "bar")))) + +(ert-deftest dom-tests-tag () + (let ((dom (dom-tests--tree))) + (should (equal (dom-tag dom) "html")) + (should (equal (dom-tag (car (dom-children dom))) "head")))) + +(ert-deftest dom-tests-attributes () + (let ((dom (dom-tests--tree))) + (should-not (dom-attributes dom)) + (should (equal (dom-attributes (dom-by-class dom "foo")) + '((class . "foo") (style . "color: red;")))))) + +(ert-deftest dom-tests-children () + (let ((dom (dom-tests--tree))) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("head" "body"))) + (should (equal (dom-tag (dom-children (dom-children dom))) + "title")))) + +(ert-deftest dom-tests-non-text-children () + (let ((dom (dom-tests--tree))) + (should (equal (dom-children dom) (dom-non-text-children dom))) + (should-not (dom-non-text-children + (dom-children (dom-children dom)))))) + +(ert-deftest dom-tests-set-attributes () + (let ((dom (dom-tests--tree)) + (attributes '((xmlns "http://www.w3.org/1999/xhtml")))) + (should-not (dom-attributes dom)) + (dom-set-attributes dom attributes) + (should (equal (dom-attributes dom) attributes)))) + +(ert-deftest dom-tests-set-attribute () + (let ((dom (dom-tests--tree)) + (attr 'xmlns) + (value "http://www.w3.org/1999/xhtml")) + (should-not (dom-attributes dom)) + (dom-set-attribute dom attr value) + (should (equal (dom-attr dom attr) value)))) + +(ert-deftest dom-tests-attr () + (let ((dom (dom-tests--tree))) + (should-not (dom-attr dom 'id)) + (should (equal (dom-attr (dom-by-id dom "bar") 'id) "bar")))) + +(ert-deftest dom-tests-text () + (let ((dom (dom-tests--tree))) + (should (string-empty-p (dom-text dom))) + (should (equal (dom-text (dom-by-tag dom "title")) "Test")))) + +(ert-deftest dom-tests-texts () + (let ((dom (dom-tests--tree))) + (should (equal (dom-texts dom) "Test foo bar")) + (should (equal (dom-texts dom ", ") "Test, foo, bar")))) + +(ert-deftest dom-tests-child-by-tag () + (let ((dom (dom-tests--tree))) + (should (equal (dom-child-by-tag dom "head") + (car (dom-children dom)))) + (should-not (dom-child-by-tag dom "title")))) + +(ert-deftest dom-tests-by-tag () + (let ((dom (dom-tests--tree))) + (should (= (length (dom-by-tag dom "div")) 2)) + (should-not (dom-by-tag dom "article")))) + +(ert-deftest dom-tests-strings () + (let ((dom (dom-tests--tree))) + (should (equal (dom-strings dom) '("Test" "foo" "bar"))) + (should (equal (dom-strings (dom-children dom)) '("Test"))))) + +(ert-deftest dom-tests-by-class () + (let ((dom (dom-tests--tree))) + (should (equal (dom-tag (dom-by-class dom "foo")) "div")) + (should-not (dom-by-class dom "bar")))) + +(ert-deftest dom-tests-by-style () + (let ((dom (dom-tests--tree))) + (should (equal (dom-tag (dom-by-style dom "color")) "div")) + (should-not (dom-by-style dom "width")))) + +(ert-deftest dom-tests-by-id () + (let ((dom (dom-tests--tree))) + (should (equal (dom-tag (dom-by-id dom "bar")) "p")) + (should-not (dom-by-id dom "foo")))) + +(ert-deftest dom-tests-elements () + (let ((dom (dom-tests--tree))) + (should (equal (dom-elements dom 'class "foo") + (dom-by-class dom "foo"))) + (should (equal (dom-attr (dom-elements dom 'title "2nd") 'title) + "2nd div")))) + +(ert-deftest dom-tests-remove-node () + (let ((dom (dom-tests--tree))) + (should-not (dom-remove-node dom dom)) + (should (= (length (dom-children dom)) 2)) + (dom-remove-node dom (car (dom-children dom))) + (should (= (length (dom-children dom)) 1)) + (dom-remove-node dom (car (dom-children dom))) + (should-not (dom-children dom)))) + +(ert-deftest dom-tests-parent () + (let ((dom (dom-tests--tree))) + (should-not (dom-parent dom dom)) + (should (equal (dom-parent dom (car (dom-children dom))) dom)))) + +(ert-deftest dom-tests-previous-sibling () + (let ((dom (dom-tests--tree))) + (should-not (dom-previous-sibling dom dom)) + (let ((children (dom-children dom))) + (should (equal (dom-previous-sibling dom (cadr children)) + (car children)))))) + +(ert-deftest dom-tests-append-child () + (let ((dom (dom-tests--tree))) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("head" "body"))) + (dom-append-child dom (dom-node "feet")) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("head" "body" "feet"))))) + +(ert-deftest dom-tests-add-child-before () + "Test `dom-add-child-before'. +Tests the cases of adding a new first-child and mid-child. Also +checks that an attempt to add a new node before a non-existent +child results in an error." + (let ((dom (dom-tests--tree))) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("head" "body"))) + (dom-add-child-before dom (dom-node "neck") + (dom-child-by-tag dom "body")) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("head" "neck" "body"))) + (dom-add-child-before dom (dom-node "hat")) + (should (equal (mapcar #'dom-tag (dom-children dom)) + '("hat" "head" "neck" "body"))) + (should-error (dom-add-child-before dom (dom-node "neck") + (dom-by-id dom "bar"))))) + +(ert-deftest dom-tests-ensure-node () + (let ((node (dom-node "foo"))) + (should (equal (dom-ensure-node '("foo")) node)) + (should (equal (dom-ensure-node '(("foo"))) node)) + (should (equal (dom-ensure-node '("foo" nil)) node)) + (should (equal (dom-ensure-node '(("foo") nil)) node)))) + +(ert-deftest dom-tests-pp () + (let ((node (dom-node "foo" nil ""))) + (with-temp-buffer + (dom-pp node) + (should (equal (buffer-string) "(\"foo\" nil\n \"\")"))) + (with-temp-buffer + (dom-pp node t) + (should (equal (buffer-string) "(\"foo\" nil)"))))) + +(provide 'dom-tests) +;;; dom-tests.el ends here |