1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2007-2010 Søren Roug, European Environment Agency
#
# This is free software. You may redistribute it under the terms
# of the Apache license and the GNU General Public License Version
# 2 or at your option any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Contributor(s):
#
import unittest, sys
from odf.opendocument import OpenDocumentText
from odf import style, text
from odf.table import Table, TableColumn, TableRow, TableCell
from odf.element import IllegalChild
from odf.namespaces import TEXTNS
from elementparser import ElementParser
class TestStyles(unittest.TestCase):
def test_style(self):
""" Get a common style with getStyleByName """
textdoc = OpenDocumentText()
tablecontents = style.Style(name=u"Table Contents", family=u"paragraph")
tablecontents.addElement(style.ParagraphProperties(numberlines=u"false", linenumber=u"0"))
textdoc.styles.addElement(tablecontents)
s = textdoc.getStyleByName(u'Table Contents')
self.assertEqual((u'urn:oasis:names:tc:opendocument:xmlns:style:1.0', 'style'), s.qname)
def test_style(self):
""" Get an automatic style with getStyleByName """
textdoc = OpenDocumentText()
boldstyle = style.Style(name=u'Bold', family=u"text")
boldstyle.addElement(style.TextProperties(fontweight=u"bold"))
textdoc.automaticstyles.addElement(boldstyle)
s = textdoc.getStyleByName(u'Bold')
self.assertEqual((u'urn:oasis:names:tc:opendocument:xmlns:style:1.0', 'style'), s.qname)
def testStyleFail(self):
""" Verify that 'xname' attribute is not legal """
self.assertRaises(AttributeError, style.Style, xname=u'Table Contents')
def testBadChild(self):
""" Test that you can't add an illegal child """
tablecontents = style.Style(name=u"Table Contents", family=u"paragraph")
p = text.P(text=u"x")
with self.assertRaises(Exception) as cm:
tablecontents.addElement(p)
# FIXME: This doesn't work on Python 3.
if sys.version_info[0]==2:
self.assertTrue(isinstance(cm.exception, IllegalChild))
def testTextStyleName(self):
""" Test that you can use the name of the style in references """
boldstyle = style.Style(name=u"Bold",family=u"text")
boldstyle.addElement(style.TextProperties(attributes={u'fontweight':u"bold"}))
text.Span(stylename=u"Bold",text=u"This part is bold. ")
def testBadFamily(self):
""" Test that odfpy verifies 'family' argument """
self.assertRaises(ValueError, style.Style, name=u"Bold",family=u"incorrect")
class TestQattributes(unittest.TestCase):
def testAttribute(self):
""" Test that you can add a normal attributes using 'qattributes' """
standard = style.Style(name=u"Standard", family=u"paragraph")
p = style.ParagraphProperties(qattributes={(TEXTNS,u'enable-numbering'):'true'})
standard.addElement(p)
def testAttributeForeign(self):
""" Test that you can add foreign attributes """
textdoc = OpenDocumentText()
standard = style.Style(name=u"Standard", family=u"paragraph")
p = style.ParagraphProperties(qattributes={(u'http://foreignuri.com','enable-numbering'):u'true'})
standard.addElement(p)
textdoc.styles.addElement(standard)
s = textdoc.stylesxml()
s.index(u"""<?xml version='1.0' encoding='UTF-8'?>\n""")
s.index(u'xmlns:ns41="http://foreignuri.com"')
s.index(u'<style:paragraph-properties ns41:enable-numbering="true"/>')
e = ElementParser(s,u'style:style')
# e = ElementParser('<style:style style:name="Standard" style:display-name="Standard" style:family="paragraph">')
self.assertEqual(e.element,u'style:style')
self.assertTrue(e.has_value(u"style:display-name","Standard"))
self.assertTrue(e.has_value(u"style:name","Standard"))
self.assertTrue(e.has_value(u"style:family","paragraph"))
if __name__ == '__main__':
unittest.main()
|