from __future__ import absolute_import
# Copyright (c) 2010-2015 openpyxl
import pytest
from openpyxl.xml.functions import fromstring, tostring
from openpyxl.tests.helper import compare_xml
@pytest.fixture
[docs]def BookView():
from ..views import BookView
return BookView
[docs]class TestBookView:
[docs] def test_ctor(self, BookView):
view = BookView()
xml = tostring(view.to_tree())
expected = """
<workbookView />
"""
diff = compare_xml(xml, expected)
assert diff is None, diff
[docs] def test_from_xml(self, BookView):
src = """
<workbookView />
"""
node = fromstring(src)
view = BookView.from_tree(node)
assert view == BookView()
@pytest.fixture
[docs]def CustomWorkbookView():
from ..views import CustomWorkbookView
return CustomWorkbookView
[docs]class TestCustomWorkbookView:
[docs] def test_ctor(self, CustomWorkbookView):
view = CustomWorkbookView(
name="custom view",
guid="{00000000-5BD2-4BC8-9F70-7020E1357FB2}",
windowWidth=800,
windowHeight=600,
activeSheetId=1,
)
xml = tostring(view.to_tree())
expected = """
<customWorkbookView activeSheetId="1"
guid="{00000000-5BD2-4BC8-9F70-7020E1357FB2}"
name="custom view"
showComments="commIndicator"
showObjects="all"
windowHeight="600"
windowWidth="800" />
"""
diff = compare_xml(xml, expected)
assert diff is None, diff
[docs] def test_from_xml(self, CustomWorkbookView):
src = """
<customWorkbookView activeSheetId="1"
guid="{00000000-5BD2-4BC8-9F70-7020E1357FB2}"
name="custom view"
showComments="commIndicator"
showObjects="all"
windowHeight="600"
windowWidth="800" />
"""
node = fromstring(src)
view = CustomWorkbookView.from_tree(node)
assert view == CustomWorkbookView(
name="custom view",
guid="{00000000-5BD2-4BC8-9F70-7020E1357FB2}",
windowWidth=800,
windowHeight=600,
activeSheetId=1,
)