Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
PyDocX / tests / openxml / wordprocessing / test_paragraph_properties.py
Size: Mime:
# coding: utf-8
from __future__ import (
    absolute_import,
    print_function,
    unicode_literals,
)

from unittest import TestCase

from pydocx.openxml.wordprocessing import NumberingProperties, ParagraphProperties  # noqa
from pydocx.util.xml import parse_xml_from_string


class ParagraphPropertiesTestBase(TestCase):
    def _load_from_xml(self, xml):
        root = parse_xml_from_string(xml)
        return ParagraphProperties.load(root)


class ParagraphPropertiesTestCase(ParagraphPropertiesTestBase):
    def test_pStyle_child_mapped_to_parent_style_attribute(self):
        xml = '''
            <pPr>
                <pStyle val="foostyle" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.parent_style, "foostyle")

    def test_numPr_child_mapped_to_numbering_properties_attribute(self):
        xml = '''
            <pPr>
                <numPr />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        assert isinstance(properties.numbering_properties, NumberingProperties)

    def test_indentation_left(self):
        xml = '''
            <pPr>
                <ind left="123" right="456" firstLine="789" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.indentation_left, '123')

    def test_indentation_right(self):
        xml = '''
            <pPr>
                <ind left="123" right="456" firstLine="789" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.indentation_right, '456')

    def test_indentation_first_line(self):
        xml = '''
            <pPr>
                <ind left="123" right="456" firstLine="789" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.indentation_first_line, '789')


class StartMarginPositionTestCase(ParagraphPropertiesTestBase):
    def test_returns_zero_when_no_indentation_set(self):
        xml = '<pPr />'
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 0)

    def test_returns_left_indentation_by_itself(self):
        xml = '''
            <pPr>
                <ind left="123" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 123)

    def test_returns_left_minus_hanging(self):
        xml = '''
            <pPr>
                <ind left="123" hanging="23" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 100)

    def test_returns_left_plus_first_line(self):
        xml = '''
            <pPr>
                <ind left="123" firstLine="50" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 173)

    def test_returns_left_minus_hanging_ignoring_first_line(self):
        xml = '''
            <pPr>
                <ind left="123" hanging="23" firstLine="50" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 100)

    def test_allow_decimal_indentation_for_hanging(self):
        xml = '''
            <pPr>
                <ind left="123.1" hanging="23.2" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 100)

    def test_allow_decimal_indentation_for_first_line(self):
        xml = '''
            <pPr>
                <ind left="123.3" firstLine="50.4" />
            </pPr>
        '''
        properties = self._load_from_xml(xml)
        self.assertEqual(properties.start_margin_position, 173)