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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
|
# pyright: reportPrivateUsage=false
"""Test suite for the docx.table module."""
from __future__ import annotations
from typing import cast
import pytest
from docx.document import Document
from docx.enum.style import WD_STYLE_TYPE
from docx.enum.table import (
WD_ALIGN_VERTICAL,
WD_ROW_HEIGHT,
WD_TABLE_ALIGNMENT,
WD_TABLE_DIRECTION,
)
from docx.oxml.parser import parse_xml
from docx.oxml.table import CT_Row, CT_Tbl, CT_TblGridCol, CT_Tc
from docx.parts.document import DocumentPart
from docx.shared import Emu, Inches, Length
from docx.table import Table, _Cell, _Column, _Columns, _Row, _Rows
from docx.text.paragraph import Paragraph
from .unitutil.cxml import element, xml
from .unitutil.file import snippet_seq
from .unitutil.mock import FixtureRequest, Mock, instance_mock, property_mock
class DescribeTable:
"""Unit-test suite for `docx.table._Rows` objects."""
def it_can_add_a_row(self, document_: Mock):
snippets = snippet_seq("add-row-col")
tbl = cast(CT_Tbl, parse_xml(snippets[0]))
table = Table(tbl, document_)
row = table.add_row()
assert table._tbl.xml == snippets[1]
assert isinstance(row, _Row)
assert row._tr is table._tbl.tr_lst[-1]
assert row._parent is table
def it_can_add_a_column(self, document_: Mock):
snippets = snippet_seq("add-row-col")
tbl = cast(CT_Tbl, parse_xml(snippets[0]))
table = Table(tbl, document_)
column = table.add_column(Inches(1.5))
assert table._tbl.xml == snippets[2]
assert isinstance(column, _Column)
assert column._gridCol is table._tbl.tblGrid.gridCol_lst[-1]
assert column._parent is table
def it_provides_access_to_a_cell_by_row_and_col_indices(self, table: Table):
for row_idx in range(2):
for col_idx in range(2):
cell = table.cell(row_idx, col_idx)
assert isinstance(cell, _Cell)
tr = table._tbl.tr_lst[row_idx]
tc = tr.tc_lst[col_idx]
assert tc is cell._tc
def it_provides_access_to_the_table_rows(self, table: Table):
rows = table.rows
assert isinstance(rows, _Rows)
def it_provides_access_to_the_table_columns(self, table: Table):
columns = table.columns
assert isinstance(columns, _Columns)
def it_provides_access_to_the_cells_in_a_column(
self, _cells_: Mock, _column_count_: Mock, document_: Mock
):
table = Table(cast(CT_Tbl, element("w:tbl")), document_)
_cells_.return_value = [0, 1, 2, 3, 4, 5, 6, 7, 8]
_column_count_.return_value = 3
column_idx = 1
column_cells = table.column_cells(column_idx)
assert column_cells == [1, 4, 7]
def it_provides_access_to_the_cells_in_a_row(
self, _cells_: Mock, _column_count_: Mock, document_: Mock
):
table = Table(cast(CT_Tbl, element("w:tbl")), document_)
_cells_.return_value = [0, 1, 2, 3, 4, 5, 6, 7, 8]
_column_count_.return_value = 3
row_cells = table.row_cells(1)
assert row_cells == [3, 4, 5]
@pytest.mark.parametrize(
("tbl_cxml", "expected_value"),
[
("w:tbl/w:tblPr", None),
("w:tbl/w:tblPr/w:jc{w:val=center}", WD_TABLE_ALIGNMENT.CENTER),
("w:tbl/w:tblPr/w:jc{w:val=right}", WD_TABLE_ALIGNMENT.RIGHT),
("w:tbl/w:tblPr/w:jc{w:val=left}", WD_TABLE_ALIGNMENT.LEFT),
],
)
def it_knows_its_alignment_setting(
self, tbl_cxml: str, expected_value: WD_TABLE_ALIGNMENT | None, document_: Mock
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
assert table.alignment == expected_value
@pytest.mark.parametrize(
("tbl_cxml", "new_value", "expected_cxml"),
[
("w:tbl/w:tblPr", WD_TABLE_ALIGNMENT.LEFT, "w:tbl/w:tblPr/w:jc{w:val=left}"),
(
"w:tbl/w:tblPr/w:jc{w:val=left}",
WD_TABLE_ALIGNMENT.RIGHT,
"w:tbl/w:tblPr/w:jc{w:val=right}",
),
("w:tbl/w:tblPr/w:jc{w:val=right}", None, "w:tbl/w:tblPr"),
],
)
def it_can_change_its_alignment_setting(
self,
tbl_cxml: str,
new_value: WD_TABLE_ALIGNMENT | None,
expected_cxml: str,
document_: Mock,
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
table.alignment = new_value
assert table._tbl.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("tbl_cxml", "expected_value"),
[
("w:tbl/w:tblPr", True),
("w:tbl/w:tblPr/w:tblLayout", True),
("w:tbl/w:tblPr/w:tblLayout{w:type=autofit}", True),
("w:tbl/w:tblPr/w:tblLayout{w:type=fixed}", False),
],
)
def it_knows_whether_it_should_autofit(
self, tbl_cxml: str, expected_value: bool, document_: Mock
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
assert table.autofit is expected_value
@pytest.mark.parametrize(
("tbl_cxml", "new_value", "expected_cxml"),
[
("w:tbl/w:tblPr", True, "w:tbl/w:tblPr/w:tblLayout{w:type=autofit}"),
("w:tbl/w:tblPr", False, "w:tbl/w:tblPr/w:tblLayout{w:type=fixed}"),
(
"w:tbl/w:tblPr/w:tblLayout{w:type=fixed}",
True,
"w:tbl/w:tblPr/w:tblLayout{w:type=autofit}",
),
(
"w:tbl/w:tblPr/w:tblLayout{w:type=autofit}",
False,
"w:tbl/w:tblPr/w:tblLayout{w:type=fixed}",
),
],
)
def it_can_change_its_autofit_setting(
self, tbl_cxml: str, new_value: bool, expected_cxml: str, document_: Mock
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
table.autofit = new_value
assert table._tbl.xml == xml(expected_cxml)
def it_knows_it_is_the_table_its_children_belong_to(self, table: Table):
assert table.table is table
@pytest.mark.parametrize(
("tbl_cxml", "expected_value"),
[
("w:tbl/w:tblPr", None),
("w:tbl/w:tblPr/w:bidiVisual", WD_TABLE_DIRECTION.RTL),
("w:tbl/w:tblPr/w:bidiVisual{w:val=0}", WD_TABLE_DIRECTION.LTR),
("w:tbl/w:tblPr/w:bidiVisual{w:val=on}", WD_TABLE_DIRECTION.RTL),
],
)
def it_knows_its_direction(
self, tbl_cxml: str, expected_value: WD_TABLE_DIRECTION | None, document_: Mock
):
tbl = cast(CT_Tbl, element(tbl_cxml))
assert Table(tbl, document_).table_direction == expected_value
@pytest.mark.parametrize(
("tbl_cxml", "new_value", "expected_cxml"),
[
("w:tbl/w:tblPr", WD_TABLE_DIRECTION.RTL, "w:tbl/w:tblPr/w:bidiVisual"),
(
"w:tbl/w:tblPr/w:bidiVisual",
WD_TABLE_DIRECTION.LTR,
"w:tbl/w:tblPr/w:bidiVisual{w:val=0}",
),
(
"w:tbl/w:tblPr/w:bidiVisual{w:val=0}",
WD_TABLE_DIRECTION.RTL,
"w:tbl/w:tblPr/w:bidiVisual",
),
("w:tbl/w:tblPr/w:bidiVisual{w:val=1}", None, "w:tbl/w:tblPr"),
],
)
def it_can_change_its_direction(
self, tbl_cxml: str, new_value: WD_TABLE_DIRECTION, expected_cxml: str, document_: Mock
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
table.table_direction = new_value
assert table._element.xml == xml(expected_cxml)
def it_knows_its_table_style(self, part_prop_: Mock, document_part_: Mock, document_: Mock):
part_prop_.return_value = document_part_
style_ = document_part_.get_style.return_value
table = Table(cast(CT_Tbl, element("w:tbl/w:tblPr/w:tblStyle{w:val=BarBaz}")), document_)
style = table.style
document_part_.get_style.assert_called_once_with("BarBaz", WD_STYLE_TYPE.TABLE)
assert style is style_
@pytest.mark.parametrize(
("tbl_cxml", "new_value", "style_id", "expected_cxml"),
[
("w:tbl/w:tblPr", "Tbl A", "TblA", "w:tbl/w:tblPr/w:tblStyle{w:val=TblA}"),
(
"w:tbl/w:tblPr/w:tblStyle{w:val=TblA}",
"Tbl B",
"TblB",
"w:tbl/w:tblPr/w:tblStyle{w:val=TblB}",
),
("w:tbl/w:tblPr/w:tblStyle{w:val=TblB}", None, None, "w:tbl/w:tblPr"),
],
)
def it_can_change_its_table_style(
self,
tbl_cxml: str,
new_value: str | None,
style_id: str | None,
expected_cxml: str,
document_: Mock,
part_prop_: Mock,
document_part_: Mock,
):
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
part_prop_.return_value = document_part_
document_part_.get_style_id.return_value = style_id
table.style = new_value
document_part_.get_style_id.assert_called_once_with(new_value, WD_STYLE_TYPE.TABLE)
assert table._tbl.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("snippet_idx", "cell_count", "unique_count", "matches"),
[
(0, 9, 9, ()),
(1, 9, 8, ((0, 1),)),
(2, 9, 8, ((1, 4),)),
(3, 9, 6, ((0, 1, 3, 4),)),
(4, 9, 4, ((0, 1), (3, 6), (4, 5, 7, 8))),
],
)
def it_provides_access_to_its_cells_to_help(
self,
snippet_idx: int,
cell_count: int,
unique_count: int,
matches: tuple[tuple[int, ...]],
document_: Mock,
):
tbl_xml = snippet_seq("tbl-cells")[snippet_idx]
table = Table(cast(CT_Tbl, parse_xml(tbl_xml)), document_)
cells = table._cells
assert len(cells) == cell_count
assert len(set(cells)) == unique_count
for matching_idxs in matches:
comparator_idx = matching_idxs[0]
for idx in matching_idxs[1:]:
assert cells[idx] is cells[comparator_idx]
def it_knows_its_column_count_to_help(self, document_: Mock):
tbl_cxml = "w:tbl/w:tblGrid/(w:gridCol,w:gridCol,w:gridCol)"
expected_value = 3
table = Table(cast(CT_Tbl, element(tbl_cxml)), document_)
column_count = table._column_count
assert column_count == expected_value
# fixtures -------------------------------------------------------
@pytest.fixture
def _cells_(self, request: FixtureRequest):
return property_mock(request, Table, "_cells")
@pytest.fixture
def _column_count_(self, request: FixtureRequest):
return property_mock(request, Table, "_column_count")
@pytest.fixture
def document_(self, request: FixtureRequest):
return instance_mock(request, Document)
@pytest.fixture
def document_part_(self, request: FixtureRequest):
return instance_mock(request, DocumentPart)
@pytest.fixture
def part_prop_(self, request: FixtureRequest):
return property_mock(request, Table, "part")
@pytest.fixture
def table(self, document_: Mock):
tbl_cxml = "w:tbl/(w:tblGrid/(w:gridCol,w:gridCol),w:tr/(w:tc,w:tc),w:tr/(w:tc,w:tc))"
return Table(cast(CT_Tbl, element(tbl_cxml)), document_)
class Describe_Cell:
"""Unit-test suite for `docx.table._Cell` objects."""
@pytest.mark.parametrize(
("tc_cxml", "expected_value"),
[
("w:tc", 1),
("w:tc/w:tcPr", 1),
("w:tc/w:tcPr/w:gridSpan{w:val=1}", 1),
("w:tc/w:tcPr/w:gridSpan{w:val=4}", 4),
],
)
def it_knows_its_grid_span(self, tc_cxml: str, expected_value: int, parent_: Mock):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
assert cell.grid_span == expected_value
@pytest.mark.parametrize(
("tc_cxml", "expected_text"),
[
("w:tc", ""),
('w:tc/w:p/w:r/w:t"foobar"', "foobar"),
('w:tc/(w:p/w:r/w:t"foo",w:p/w:r/w:t"bar")', "foo\nbar"),
('w:tc/(w:tcPr,w:p/w:r/w:t"foobar")', "foobar"),
('w:tc/w:p/w:r/(w:t"fo",w:tab,w:t"ob",w:br,w:t"ar",w:br)', "fo\tob\nar\n"),
],
)
def it_knows_what_text_it_contains(self, tc_cxml: str, expected_text: str, parent_: Mock):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
text = cell.text
assert text == expected_text
@pytest.mark.parametrize(
("tc_cxml", "new_text", "expected_cxml"),
[
("w:tc/w:p", "foobar", 'w:tc/w:p/w:r/w:t"foobar"'),
(
"w:tc/w:p",
"fo\tob\rar\n",
'w:tc/w:p/w:r/(w:t"fo",w:tab,w:t"ob",w:br,w:t"ar",w:br)',
),
(
"w:tc/(w:tcPr, w:p, w:tbl, w:p)",
"foobar",
'w:tc/(w:tcPr, w:p/w:r/w:t"foobar")',
),
],
)
def it_can_replace_its_content_with_a_string_of_text(
self, tc_cxml: str, new_text: str, expected_cxml: str, parent_: Mock
):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
cell.text = new_text
assert cell._tc.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("tc_cxml", "expected_value"),
[
("w:tc", None),
("w:tc/w:tcPr", None),
("w:tc/w:tcPr/w:vAlign{w:val=bottom}", WD_ALIGN_VERTICAL.BOTTOM),
("w:tc/w:tcPr/w:vAlign{w:val=top}", WD_ALIGN_VERTICAL.TOP),
],
)
def it_knows_its_vertical_alignment(
self, tc_cxml: str, expected_value: WD_ALIGN_VERTICAL | None, parent_: Mock
):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
assert cell.vertical_alignment == expected_value
@pytest.mark.parametrize(
("tc_cxml", "new_value", "expected_cxml"),
[
("w:tc", WD_ALIGN_VERTICAL.TOP, "w:tc/w:tcPr/w:vAlign{w:val=top}"),
(
"w:tc/w:tcPr",
WD_ALIGN_VERTICAL.CENTER,
"w:tc/w:tcPr/w:vAlign{w:val=center}",
),
(
"w:tc/w:tcPr/w:vAlign{w:val=center}",
WD_ALIGN_VERTICAL.BOTTOM,
"w:tc/w:tcPr/w:vAlign{w:val=bottom}",
),
("w:tc/w:tcPr/w:vAlign{w:val=center}", None, "w:tc/w:tcPr"),
("w:tc", None, "w:tc/w:tcPr"),
("w:tc/w:tcPr", None, "w:tc/w:tcPr"),
],
)
def it_can_change_its_vertical_alignment(
self, tc_cxml: str, new_value: WD_ALIGN_VERTICAL | None, expected_cxml: str, parent_: Mock
):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
cell.vertical_alignment = new_value
assert cell._element.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("tc_cxml", "expected_value"),
[
("w:tc", None),
("w:tc/w:tcPr", None),
("w:tc/w:tcPr/w:tcW{w:w=25%,w:type=pct}", None),
("w:tc/w:tcPr/w:tcW{w:w=1440,w:type=dxa}", 914400),
],
)
def it_knows_its_width_in_EMU(self, tc_cxml: str, expected_value: int | None, parent_: Mock):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
assert cell.width == expected_value
@pytest.mark.parametrize(
("tc_cxml", "new_value", "expected_cxml"),
[
("w:tc", Inches(1), "w:tc/w:tcPr/w:tcW{w:w=1440,w:type=dxa}"),
(
"w:tc/w:tcPr/w:tcW{w:w=25%,w:type=pct}",
Inches(2),
"w:tc/w:tcPr/w:tcW{w:w=2880,w:type=dxa}",
),
],
)
def it_can_change_its_width(
self, tc_cxml: str, new_value: Length, expected_cxml: str, parent_: Mock
):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
cell.width = new_value
assert cell.width == new_value
assert cell._tc.xml == xml(expected_cxml)
def it_provides_access_to_the_paragraphs_it_contains(self, parent_: Mock):
cell = _Cell(cast(CT_Tc, element("w:tc/(w:p, w:p)")), parent_)
paragraphs = cell.paragraphs
# -- every w:p produces a Paragraph instance --
assert len(paragraphs) == 2
assert all(isinstance(p, Paragraph) for p in paragraphs)
# -- the return value is iterable and indexable --
assert all(p is paragraphs[idx] for idx, p in enumerate(paragraphs))
@pytest.mark.parametrize(
("tc_cxml", "expected_table_count"),
[
("w:tc", 0),
("w:tc/w:tbl", 1),
("w:tc/(w:tbl,w:tbl)", 2),
("w:tc/(w:p,w:tbl)", 1),
("w:tc/(w:tbl,w:tbl,w:p)", 2),
],
)
def it_provides_access_to_the_tables_it_contains(
self, tc_cxml: str, expected_table_count: int, parent_: Mock
):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
tables = cell.tables
# --- test len(), iterable, and indexed access
assert len(tables) == expected_table_count
assert all(isinstance(t, Table) for t in tables)
assert all(t is tables[idx] for idx, t in enumerate(tables))
@pytest.mark.parametrize(
("tc_cxml", "expected_cxml"),
[
("w:tc", "w:tc/w:p"),
("w:tc/w:p", "w:tc/(w:p, w:p)"),
("w:tc/w:tbl", "w:tc/(w:tbl, w:p)"),
],
)
def it_can_add_a_paragraph(self, tc_cxml: str, expected_cxml: str, parent_: Mock):
cell = _Cell(cast(CT_Tc, element(tc_cxml)), parent_)
p = cell.add_paragraph()
assert isinstance(p, Paragraph)
assert cell._tc.xml == xml(expected_cxml)
def it_can_add_a_table(self, parent_: Mock):
cell = _Cell(cast(CT_Tc, element("w:tc/w:p")), parent_)
table = cell.add_table(rows=2, cols=2)
assert isinstance(table, Table)
assert cell._element.xml == snippet_seq("new-tbl")[1]
def it_can_merge_itself_with_other_cells(
self, tc_: Mock, tc_2_: Mock, parent_: Mock, merged_tc_: Mock
):
cell, other_cell = _Cell(tc_, parent_), _Cell(tc_2_, parent_)
tc_.merge.return_value = merged_tc_
merged_cell = cell.merge(other_cell)
assert isinstance(merged_cell, _Cell)
tc_.merge.assert_called_once_with(other_cell._tc)
assert merged_cell._tc is merged_tc_
assert merged_cell._parent is cell._parent
# fixtures -------------------------------------------------------
@pytest.fixture
def merged_tc_(self, request: FixtureRequest):
return instance_mock(request, CT_Tc)
@pytest.fixture
def parent_(self, request: FixtureRequest):
return instance_mock(request, Table)
@pytest.fixture
def tc_(self, request: FixtureRequest):
return instance_mock(request, CT_Tc)
@pytest.fixture
def tc_2_(self, request: FixtureRequest):
return instance_mock(request, CT_Tc)
class Describe_Column:
"""Unit-test suite for `docx.table._Cell` objects."""
def it_provides_access_to_its_cells(self, _index_prop_: Mock, table_prop_: Mock, table_: Mock):
table_prop_.return_value = table_
_index_prop_.return_value = 4
column = _Column(cast(CT_TblGridCol, element("w:gridCol{w:w=500}")), table_)
table_.column_cells.return_value = [3, 2, 1]
cells = column.cells
table_.column_cells.assert_called_once_with(4)
assert cells == (3, 2, 1)
def it_provides_access_to_the_table_it_belongs_to(self, table_: Mock):
table_.table = table_
column = _Column(cast(CT_TblGridCol, element("w:gridCol{w:w=500}")), table_)
assert column.table is table_
@pytest.mark.parametrize(
("gridCol_cxml", "expected_width"),
[
("w:gridCol{w:w=4242}", 2693670),
("w:gridCol{w:w=1440}", 914400),
("w:gridCol{w:w=2.54cm}", 914400),
("w:gridCol{w:w=54mm}", 1944000),
("w:gridCol{w:w=12.5pt}", 158750),
("w:gridCol", None),
],
)
def it_knows_its_width_in_EMU(
self, gridCol_cxml: str, expected_width: int | None, table_: Mock
):
column = _Column(cast(CT_TblGridCol, element(gridCol_cxml)), table_)
assert column.width == expected_width
@pytest.mark.parametrize(
("gridCol_cxml", "new_value", "expected_cxml"),
[
("w:gridCol", Emu(914400), "w:gridCol{w:w=1440}"),
("w:gridCol{w:w=4242}", Inches(0.5), "w:gridCol{w:w=720}"),
("w:gridCol{w:w=4242}", None, "w:gridCol"),
("w:gridCol", None, "w:gridCol"),
],
)
def it_can_change_its_width(
self, gridCol_cxml: str, new_value: Length | None, expected_cxml: str, table_: Mock
):
column = _Column(cast(CT_TblGridCol, element(gridCol_cxml)), table_)
column.width = new_value
assert column.width == new_value
assert column._gridCol.xml == xml(expected_cxml)
def it_knows_its_index_in_table_to_help(self, table_: Mock):
tbl = cast(CT_Tbl, element("w:tbl/w:tblGrid/(w:gridCol,w:gridCol,w:gridCol)"))
gridCol = tbl.tblGrid.gridCol_lst[1]
column = _Column(gridCol, table_)
assert column._index == 1
# fixtures -------------------------------------------------------
@pytest.fixture
def _index_prop_(self, request: FixtureRequest):
return property_mock(request, _Column, "_index")
@pytest.fixture
def parent_(self, request: FixtureRequest):
return instance_mock(request, Table)
@pytest.fixture
def table_(self, request: FixtureRequest):
return instance_mock(request, Table)
@pytest.fixture
def table_prop_(self, request: FixtureRequest):
return property_mock(request, _Column, "table")
class Describe_Columns:
"""Unit-test suite for `docx.table._Columns` objects."""
def it_has_sequence_behaviors(self, table_: Mock):
columns = _Columns(cast(CT_Tbl, element("w:tbl/w:tblGrid/(w:gridCol,w:gridCol)")), table_)
# -- it supports len() --
assert len(columns) == 2
# -- it is iterable --
assert len(tuple(c for c in columns)) == 2
assert all(type(c) is _Column for c in columns)
# -- it is indexable --
assert all(type(columns[i]) is _Column for i in range(2))
def it_raises_on_indexed_access_out_of_range(self, table_: Mock):
columns = _Columns(cast(CT_Tbl, element("w:tbl/w:tblGrid/(w:gridCol,w:gridCol)")), table_)
with pytest.raises(IndexError):
columns[2]
with pytest.raises(IndexError):
columns[-3]
def it_provides_access_to_the_table_it_belongs_to(self, table_: Mock):
columns = _Columns(cast(CT_Tbl, element("w:tbl")), table_)
table_.table = table_
assert columns.table is table_
# fixtures -------------------------------------------------------
@pytest.fixture
def table_(self, request: FixtureRequest):
return instance_mock(request, Table)
class Describe_Row:
"""Unit-test suite for `docx.table._Row` objects."""
@pytest.mark.parametrize(
("tr_cxml", "expected_value"),
[
("w:tr", 0),
("w:tr/w:trPr", 0),
("w:tr/w:trPr/w:gridAfter{w:val=0}", 0),
("w:tr/w:trPr/w:gridAfter{w:val=4}", 4),
],
)
def it_knows_its_grid_cols_after(self, tr_cxml: str, expected_value: int | None, parent_: Mock):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
assert row.grid_cols_after == expected_value
@pytest.mark.parametrize(
("tr_cxml", "expected_value"),
[
("w:tr", 0),
("w:tr/w:trPr", 0),
("w:tr/w:trPr/w:gridBefore{w:val=0}", 0),
("w:tr/w:trPr/w:gridBefore{w:val=3}", 3),
],
)
def it_knows_its_grid_cols_before(
self, tr_cxml: str, expected_value: int | None, parent_: Mock
):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
assert row.grid_cols_before == expected_value
@pytest.mark.parametrize(
("tr_cxml", "expected_value"),
[
("w:tr", None),
("w:tr/w:trPr", None),
("w:tr/w:trPr/w:trHeight", None),
("w:tr/w:trPr/w:trHeight{w:val=0}", 0),
("w:tr/w:trPr/w:trHeight{w:val=1440}", 914400),
],
)
def it_knows_its_height(self, tr_cxml: str, expected_value: int | None, parent_: Mock):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
assert row.height == expected_value
@pytest.mark.parametrize(
("tr_cxml", "new_value", "expected_cxml"),
[
("w:tr", Inches(1), "w:tr/w:trPr/w:trHeight{w:val=1440}"),
("w:tr/w:trPr", Inches(1), "w:tr/w:trPr/w:trHeight{w:val=1440}"),
("w:tr/w:trPr/w:trHeight", Inches(1), "w:tr/w:trPr/w:trHeight{w:val=1440}"),
(
"w:tr/w:trPr/w:trHeight{w:val=1440}",
Inches(2),
"w:tr/w:trPr/w:trHeight{w:val=2880}",
),
("w:tr/w:trPr/w:trHeight{w:val=2880}", None, "w:tr/w:trPr/w:trHeight"),
("w:tr", None, "w:tr/w:trPr"),
("w:tr/w:trPr", None, "w:tr/w:trPr"),
("w:tr/w:trPr/w:trHeight", None, "w:tr/w:trPr/w:trHeight"),
],
)
def it_can_change_its_height(
self, tr_cxml: str, new_value: Length | None, expected_cxml: str, parent_: Mock
):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
row.height = new_value
assert row._tr.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("tr_cxml", "expected_value"),
[
("w:tr", None),
("w:tr/w:trPr", None),
("w:tr/w:trPr/w:trHeight{w:val=0, w:hRule=auto}", WD_ROW_HEIGHT.AUTO),
(
"w:tr/w:trPr/w:trHeight{w:val=1440, w:hRule=atLeast}",
WD_ROW_HEIGHT.AT_LEAST,
),
(
"w:tr/w:trPr/w:trHeight{w:val=2880, w:hRule=exact}",
WD_ROW_HEIGHT.EXACTLY,
),
],
)
def it_knows_its_height_rule(
self, tr_cxml: str, expected_value: WD_ROW_HEIGHT | None, parent_: Mock
):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
assert row.height_rule == expected_value
@pytest.mark.parametrize(
("tr_cxml", "new_value", "expected_cxml"),
[
("w:tr", WD_ROW_HEIGHT.AUTO, "w:tr/w:trPr/w:trHeight{w:hRule=auto}"),
(
"w:tr/w:trPr",
WD_ROW_HEIGHT.AT_LEAST,
"w:tr/w:trPr/w:trHeight{w:hRule=atLeast}",
),
(
"w:tr/w:trPr/w:trHeight",
WD_ROW_HEIGHT.EXACTLY,
"w:tr/w:trPr/w:trHeight{w:hRule=exact}",
),
(
"w:tr/w:trPr/w:trHeight{w:val=1440, w:hRule=exact}",
WD_ROW_HEIGHT.AUTO,
"w:tr/w:trPr/w:trHeight{w:val=1440, w:hRule=auto}",
),
(
"w:tr/w:trPr/w:trHeight{w:val=1440, w:hRule=auto}",
None,
"w:tr/w:trPr/w:trHeight{w:val=1440}",
),
("w:tr", None, "w:tr/w:trPr"),
("w:tr/w:trPr", None, "w:tr/w:trPr"),
("w:tr/w:trPr/w:trHeight", None, "w:tr/w:trPr/w:trHeight"),
],
)
def it_can_change_its_height_rule(
self, tr_cxml: str, new_value: WD_ROW_HEIGHT | None, expected_cxml: str, parent_: Mock
):
row = _Row(cast(CT_Row, element(tr_cxml)), parent_)
row.height_rule = new_value
assert row._tr.xml == xml(expected_cxml)
@pytest.mark.parametrize(
("tbl_cxml", "row_idx", "expected_len"),
[
# -- cell corresponds to single layout-grid cell --
("w:tbl/w:tr/w:tc/w:p", 0, 1),
# -- cell has a horizontal span --
("w:tbl/w:tr/w:tc/(w:tcPr/w:gridSpan{w:val=2},w:p)", 0, 2),
# -- cell is in latter row of vertical span --
(
"w:tbl/(w:tr/w:tc/(w:tcPr/w:vMerge{w:val=restart},w:p),"
"w:tr/w:tc/(w:tcPr/w:vMerge,w:p))",
1,
1,
),
# -- cell both has horizontal span and is latter row of vertical span --
(
"w:tbl/(w:tr/w:tc/(w:tcPr/(w:gridSpan{w:val=2},w:vMerge{w:val=restart}),w:p),"
"w:tr/w:tc/(w:tcPr/(w:gridSpan{w:val=2},w:vMerge),w:p))",
1,
2,
),
],
)
def it_provides_access_to_its_cells(
self, tbl_cxml: str, row_idx: int, expected_len: int, parent_: Mock
):
tbl = cast(CT_Tbl, element(tbl_cxml))
tr = tbl.tr_lst[row_idx]
table = Table(tbl, parent_)
row = _Row(tr, table)
cells = row.cells
assert len(cells) == expected_len
assert all(type(c) is _Cell for c in cells)
def it_provides_access_to_the_table_it_belongs_to(self, parent_: Mock, table_: Mock):
parent_.table = table_
row = _Row(cast(CT_Row, element("w:tr")), parent_)
assert row.table is table_
def it_knows_its_index_in_table_to_help(self, parent_: Mock):
tbl = element("w:tbl/(w:tr,w:tr,w:tr)")
row = _Row(cast(CT_Row, tbl[1]), parent_)
assert row._index == 1
# fixtures -------------------------------------------------------
@pytest.fixture
def _index_prop_(self, request: FixtureRequest):
return property_mock(request, _Row, "_index")
@pytest.fixture
def parent_(self, request: FixtureRequest):
return instance_mock(request, Table)
@pytest.fixture
def table_(self, request: FixtureRequest):
return instance_mock(request, Table)
@pytest.fixture
def table_prop_(self, request: FixtureRequest, table_: Mock):
return property_mock(request, _Row, "table")
class Describe_Rows:
"""Unit-test suite for `docx.table._Rows` objects."""
@pytest.mark.parametrize(
("tbl_cxml", "expected_len"),
[
("w:tbl", 0),
("w:tbl/w:tr", 1),
("w:tbl/(w:tr,w:tr)", 2),
("w:tbl/(w:tr,w:tr,w:tr)", 3),
],
)
def it_has_sequence_behaviors(self, tbl_cxml: str, expected_len: int, parent_: Mock):
tbl = cast(CT_Tbl, element(tbl_cxml))
table = Table(tbl, parent_)
rows = _Rows(tbl, table)
# -- it supports len() --
assert len(rows) == expected_len
# -- it is iterable --
assert len(tuple(r for r in rows)) == expected_len
assert all(type(r) is _Row for r in rows)
# -- it is indexable --
assert all(type(rows[i]) is _Row for i in range(expected_len))
@pytest.mark.parametrize(
("tbl_cxml", "out_of_range_idx"),
[
("w:tbl", 0),
("w:tbl", 1),
("w:tbl", -1),
("w:tbl/w:tr", 1),
("w:tbl/w:tr", -2),
("w:tbl/(w:tr,w:tr,w:tr)", 3),
("w:tbl/(w:tr,w:tr,w:tr)", -4),
],
)
def it_raises_on_indexed_access_out_of_range(
self, tbl_cxml: str, out_of_range_idx: int, parent_: Mock
):
rows = _Rows(cast(CT_Tbl, element(tbl_cxml)), parent_)
with pytest.raises(IndexError, match="list index out of range"):
rows[out_of_range_idx]
@pytest.mark.parametrize(("start", "end", "expected_len"), [(1, 3, 2), (0, -1, 2)])
def it_provides_sliced_access_to_rows(
self, start: int, end: int, expected_len: int, parent_: Mock
):
tbl = cast(CT_Tbl, element("w:tbl/(w:tr,w:tr,w:tr)"))
rows = _Rows(tbl, parent_)
slice_of_rows = rows[start:end]
assert len(slice_of_rows) == expected_len
for idx, row in enumerate(slice_of_rows):
assert tbl.tr_lst.index(row._tr) == start + idx
assert isinstance(row, _Row)
def it_provides_access_to_the_table_it_belongs_to(self, parent_: Mock):
tbl = cast(CT_Tbl, element("w:tbl"))
table = Table(tbl, parent_)
rows = _Rows(tbl, table)
assert rows.table is table
# fixtures -------------------------------------------------------
@pytest.fixture
def parent_(self, request: FixtureRequest):
return instance_mock(request, Document)
|