From e3f215f6675c670bd93380bc81a24cd21f55a12e Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 30 Jul 2013 00:58:16 -0400 Subject: [PATCH] Finish test_tag --- tests/test_attribute.py | 5 +-- tests/test_tag.py | 97 ++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 98 insertions(+), 4 deletions(-) diff --git a/tests/test_attribute.py b/tests/test_attribute.py index 2cb9f01..8dd84cb 100644 --- a/tests/test_attribute.py +++ b/tests/test_attribute.py @@ -71,9 +71,8 @@ class TestAttribute(TreeEqualityTestCase): def test_padding(self): """test getter/setter for the padding attributes""" for pad in ["pad_first", "pad_before_eq", "pad_after_eq"]: - padding = wraptext("\n") - node = Attribute(wraptext("id"), wraptext("foo"), **{pad: padding}) - self.assertIs(padding, getattr(node, pad)) + node = Attribute(wraptext("id"), wraptext("foo"), **{pad: "\n"}) + self.assertEqual("\n", getattr(node, pad)) setattr(node, pad, " ") self.assertEqual(" ", getattr(node, pad)) setattr(node, pad, None) diff --git a/tests/test_tag.py b/tests/test_tag.py index ed2416e..d6eb5c6 100644 --- a/tests/test_tag.py +++ b/tests/test_tag.py @@ -24,7 +24,7 @@ from __future__ import unicode_literals import unittest from mwparserfromhell.compat import str -from mwparserfromhell.nodes import Tag, Text +from mwparserfromhell.nodes import Tag, Template, Text from mwparserfromhell.nodes.extras import Attribute from ._test_tree_equality import TreeEqualityTestCase, getnodes, wrap, wraptext @@ -130,5 +130,100 @@ class TestTag(TreeEqualityTestCase): "<", (getter, node2.tag), "/>", ""] self.assertEqual(valid, output) + def test_tag(self): + """test getter/setter for the tag attribute""" + tag = wraptext("ref") + node = Tag(tag, wraptext("text")) + self.assertIs(tag, node.tag) + self.assertIs(tag, node.closing_tag) + node.tag = "span" + self.assertWikicodeEqual(wraptext("span"), node.tag) + self.assertWikicodeEqual(wraptext("span"), node.closing_tag) + self.assertEqual("text", node) + + def test_contents(self): + """test getter/setter for the contents attribute""" + contents = wraptext("text") + node = Tag(wraptext("ref"), contents) + self.assertIs(contents, node.contents) + node.contents = "text and a {{template}}" + parsed = wrap([Text("text and a "), Template(wraptext("template"))]) + self.assertWikicodeEqual(parsed, node.contents) + self.assertEqual("text and a {{template}}", node) + + def test_attributes(self): + """test getter for the attributes attribute""" + attrs = [agen("name", "bar")] + node1 = Tag(wraptext("ref"), wraptext("foo")) + node2 = Tag(wraptext("ref"), wraptext("foo"), attrs) + self.assertEqual([], node1.attributes) + self.assertIs(attrs, node2.attributes) + + def test_showtag(self): + """test getter/setter for the showtag attribute""" + node = Tag(wraptext("i"), wraptext("italic text")) + self.assertTrue(node.showtag) + node.showtag = False + self.assertFalse(node.showtag) + self.assertEqual("''italic text''", node) + node.showtag = 1 + self.assertTrue(node.showtag) + self.assertEqual("italic text", node) + + def test_self_closing(self): + """test getter/setter for the self_closing attribute""" + node = Tag(wraptext("ref"), wraptext("foobar")) + self.assertFalse(node.self_closing) + node.self_closing = True + self.assertTrue(node.self_closing) + self.assertEqual("", node) + node.self_closing = 0 + self.assertFalse(node.self_closing) + self.assertEqual("foobar", node) + + def test_invalid(self): + """test getter/setter for the invalid attribute""" + node = Tag(wraptext("br"), self_closing=True, implicit=True) + self.assertFalse(node.invalid) + node.invalid = True + self.assertTrue(node.invalid) + self.assertEqual("
", node) + node.invalid = 0 + self.assertFalse(node.invalid) + self.assertEqual("
", node) + + def test_implicit(self): + """test getter/setter for the implicit attribute""" + node = Tag(wraptext("br"), self_closing=True) + self.assertFalse(node.implicit) + node.implicit = True + self.assertTrue(node.implicit) + self.assertEqual("
", node) + node.implicit = 0 + self.assertFalse(node.implicit) + self.assertEqual("
", node) + + def test_padding(self): + """test getter/setter for the padding attribute""" + node = Tag(wraptext("ref"), wraptext("foobar")) + self.assertEqual("", node.padding) + node.padding = " " + self.assertEqual(" ", node.padding) + self.assertEqual("foobar", node) + node.padding = None + self.assertEqual("", node.padding) + self.assertEqual("foobar", node) + self.assertRaises(ValueError, setattr, node, "padding", True) + + def test_closing_tag(self): + """test getter/setter for the closing_tag attribute""" + tag = wraptext("ref") + node = Tag(tag, wraptext("foobar")) + self.assertIs(tag, node.closing_tag) + node.closing_tag = "ref {{ignore me}}" + parsed = wrap([Text("ref "), Template(wraptext("ignore me"))]) + self.assertWikicodeEqual(parsed, node.closing_tag) + self.assertEqual("foobar", node) + if __name__ == "__main__": unittest.main(verbosity=2)