Mercurial > moin > 1.9
view MoinMoin/_tests/test_widget_html.py @ 0:77665d8e2254
tag of nonpublic@localhost--archive/moin--enterprise--1.5--base-0
(automatically generated log message)
imported from: moin--main--1.5--base-0
author | Thomas Waldmann <tw-public@gmx.de> |
---|---|
date | Thu, 22 Sep 2005 15:09:50 +0000 |
parents | |
children | 324b2948d197 |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - MoinMoin.widget.html Tests @copyright: 2003-2004 by Jürgen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ import unittest from MoinMoin.widget import html from MoinMoin import wikiutil class HTMLWidgetsTestCase(unittest.TestCase): """widget.html: testing html widgets""" def testCreate(self): """widget.html: creating html widgets TO DO: add tests for all elements by HTML 4 spec. """ tests = ( # description, call, expected ('Create text', html.Text('<br> &'), '<br> &'), ('Create raw html', html.Raw('<br> &'), '<br> &'), ('Create br', html.BR(), '<br>'), ('Create hr', html.HR(), '<hr>'), ('Create p', html.P(), '<p></p>'), ) for description, obj, expected in tests: result = unicode(obj) self.assertEqual(result, expected, ('%(description)s: expected "%(expected)s" ' 'but got "%(result)s"') % locals()) def testInvalidAttributes(self): """widegt.html: invalid attributes raises exception TO DO: add tests for all elements by HTML 4 spec. """ self.assertRaises(AttributeError, html.BR, name='foo') def testCompositeElements(self): """widget.html: append to and extend composite element""" html._SORT_ATTRS = 1 element = html.P() actions = ( # action, data, expected (element.append, html.Text('Text & '), '<p>Text & </p>'), (element.append, html.Text('more text. '), '<p>Text & more text. </p>'), (element.extend, (html.Text('And then '), html.Text('some.')), '<p>Text & more text. And then some.</p>'), ) for action, data, expected in actions: action(data) result = unicode(element) self.assertEqual(result, expected, 'Expected "%(expected)s" but got "%(result)s"' % locals())