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
|
# Copyright (c) 2021, Manfred Moitzi
# License: MIT License
import pytest
from ezdxf.enums import MTextParagraphAlignment
from ezdxf.tools.text import (
MTextParser,
TokenType,
ParagraphProperties,
)
def token_types(tokens):
return tuple(token.type for token in tokens)
def token_data(tokens):
return tuple(token.data for token in tokens)
class TestMTextContentParsing:
def test_parse_plain_text(self):
tokens = list(MTextParser("word1 word2 word3"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.SPACE,
TokenType.WORD,
TokenType.SPACE,
TokenType.WORD,
)
assert token_data(tokens) == ("word1", None, "word2", None, "word3")
def test_three_adjacent_spaces(self):
tokens = list(MTextParser(" "))
assert token_types(tokens) == (
TokenType.SPACE,
TokenType.SPACE,
TokenType.SPACE,
)
def test_non_breaking_space(self):
tokens = list(MTextParser(r"word\~word"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.NBSP,
TokenType.WORD,
)
def test_space_and_adjacent_non_breaking_space(self):
tokens = list(MTextParser(r"word \~ word"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.SPACE,
TokenType.NBSP,
TokenType.SPACE,
TokenType.WORD,
)
def test_tabulator_caret_I(self):
tokens = list(MTextParser(r"word^Iword"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.TABULATOR,
TokenType.WORD,
)
assert token_data(tokens) == ("word", None, "word")
def test_new_paragraph_caret_J(self):
tokens = list(MTextParser(r"word^Jword"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.NEW_PARAGRAPH,
TokenType.WORD,
)
assert token_data(tokens) == ("word", None, "word")
def test_replace_caret_chars_by_space(self):
tokens = list(MTextParser(r"word^Mword"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.SPACE,
TokenType.WORD,
)
assert token_data(tokens) == ("word", None, "word")
def test_escaped_letters_building_words(self):
tokens = list(MTextParser(r"\\\{\} \\\{\}"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.SPACE,
TokenType.WORD,
)
assert token_data(tokens) == (r"\{}", None, r"\{}")
def test_invalid_escaped_letters_printed_verbatim(self):
# The current implementation automatically end the previous word
# at a backslash. Therefore "\:\;" returns two tokens!
w1 = r"\:"
w2 = r"\;"
tokens = list(MTextParser(w1 + w2))
t0, t1 = tokens
assert t0.type is TokenType.WORD
assert t0.data == w1
assert t1.type is TokenType.WORD
assert t1.data == w2
def test_single_new_paragraph_token(self):
tokens = list(MTextParser(r"\P"))
assert token_types(tokens) == (TokenType.NEW_PARAGRAPH,)
def test_new_paragraph_token_in_usual_context(self):
tokens = list(MTextParser(r"word\Pword"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.NEW_PARAGRAPH,
TokenType.WORD,
)
def test_single_new_column_token(self):
tokens = list(MTextParser(r"\N"))
assert token_types(tokens) == (TokenType.NEW_COLUMN,)
def test_grouping_chars_do_not_yield_tokens(self):
tokens = list(MTextParser("{word{word}}"))
assert token_types(tokens) == (
TokenType.WORD,
TokenType.WORD,
)
def test_parser_does_not_check_valid_grouping(self):
tokens = list(MTextParser("{{{}"))
assert len(tokens) == 0
def test_wrap_at_dimline(self):
mp = MTextParser(r"1\X2")
tokens = list(mp)
assert token_types(tokens) == (
TokenType.WORD,
TokenType.WRAP_AT_DIMLINE,
TokenType.WORD,
)
def test_decode_special_encodings(self):
token = list(MTextParser("%%c%%d%%p%%C%%D%%P"))[0]
assert token.data == "ذ±Ø°±"
def test_unknown_special_encodings(self):
# underline codes in TEXT are not supported in MTEXT:
token = list(MTextParser("%%a%%uTEXT%%u%%z"))[0]
assert token.data == "%%a%%uTEXT%%u%%z"
def test_percent_sign_usage(self):
token = list(MTextParser("%_%%_%%%_%%%%"))[0]
assert token.data == "%_%%_%%%_%%%%"
class TestParsingFractions:
def test_simple_horizontal_fraction(self):
token = list(MTextParser("\\S1/2;"))[0]
assert token.data == ("1", "2", "/")
def test_simple_diagonal_fraction(self):
token = list(MTextParser("\\S1#2;"))[0]
assert token.data == ("1", "2", "#")
def test_simple_limit_style_fraction(self):
token = list(MTextParser("\\S1^ 2;"))[0]
assert token.data == ("1", "2", "^")
def test_without_terminator_parsing_until_end_of_string(self):
token = list(MTextParser("\\S1/2"))[0]
assert token.data == ("1", "2", "/")
@pytest.mark.parametrize("char", list("AIJMZ"))
def test_replace_all_caret_encoded_chars_by_space(self, char):
# AutoCAD/BricsCAD preserve "^I" as tabulator, but this makes no sense
# in a stacking expression and would add an unnecessary "if" check.
token = list(MTextParser(f"\\S\\^{char}^ 2;"))[0]
assert token.data == (" ", "2", "^")
def test_escape_terminator_char(self):
token = list(MTextParser("\\S1\\;/2;"))[0]
assert token.data == ("1;", "2", "/")
def test_escape_backslash_char(self):
token = list(MTextParser("\\S\\\\1/\\\\2;"))[0]
assert token.data == ("\\1", "\\2", "/")
def test_escape_stacking_type_char(self):
token = list(MTextParser("\\S1\\/2;"))[0]
assert token.data == ("1/2", "", "")
token = list(MTextParser("\\S1\\#2;"))[0]
assert token.data == ("1#2", "", "")
def test_escape_caret_char(self):
token = list(MTextParser("\\S1\\^ 2;"))[0]
assert token.data == ("1^2", "", "")
def test_escape_caret_new_line(self):
token = list(MTextParser("\\S\\^J^ 2;"))[0]
assert token.data == (" ", "2", "^")
def test_remove_backslash_escape_char(self):
token = list(MTextParser("\\S\\N^ \\P;"))[0]
assert token.data == ("N", "P", "^")
def test_preserve_second_stacking_type_char(self):
token = list(MTextParser("\\S1/2/3;"))[0]
assert token.data == ("1", "2/3", "/")
token = list(MTextParser("\\S1#2/3;"))[0]
assert token.data == ("1", "2/3", "#")
def test_preserve_second_caret_char(self):
token = list(MTextParser("\\S1^ 2^ 3;"))[0]
assert token.data == ("1", "2^3", "^")
def test_parse_without_stacking_type_char(self):
token = list(MTextParser("\\S123;"))[0]
assert token.data == ("123", "", "")
def test_next_word_after_stacking(self):
tokens = list(MTextParser("\\S1/2;word"))
assert token_types(tokens) == (TokenType.STACK, TokenType.WORD)
assert tokens[1].data == "word"
def test_next_semi_colon_after_stacking(self):
tokens = list(MTextParser("\\S1/2;;"))
assert token_types(tokens) == (TokenType.STACK, TokenType.WORD)
assert tokens[1].data == ";"
@pytest.mark.parametrize(
"expr",
[
r"word\p______;word",
r"word\f______;word",
r"word\F______;word",
],
)
def test_extraction_of_expression(self, expr):
tokens = list(MTextParser(expr))
assert token_types(tokens) == (TokenType.WORD, TokenType.WORD)
assert token_data(tokens) == ("word", "word")
class TestMTextContextParsing:
def test_switch_underline_on(self):
tokens = list(MTextParser(r"\Lword"))
assert len(tokens) == 1, "property changes should not yield tokens"
assert tokens[0].ctx.underline is True
def test_switch_underline_on_off_for_multiple_words(self):
tokens = list(MTextParser(r"\Lword\l \Lword\l \Lword\l"))
assert len(tokens) == 5
assert tokens[0].ctx.underline is True
assert tokens[1].ctx.underline is False
assert tokens[2].ctx.underline is True
assert tokens[3].ctx.underline is False
assert tokens[4].ctx.underline is True
def test_consecutive_tokens_get_the_same_context_objects_if_unchanged(self):
tokens = list(MTextParser(r"\Lword word"))
t0, t1, t2 = tokens
assert t0.ctx is t1.ctx and t0.ctx == t1.ctx
assert t1.ctx is t2.ctx and t1.ctx == t2.ctx
# This is the reason why context objects are treated as immutable:
# If the context doesn't change the tokens can share the same object.
def test_switch_underline_on_off_creates_different_context_objects(self):
tokens = list(MTextParser(r"\Lword\lword"))
t0, t1 = tokens
assert t0.ctx.underline is True
assert t1.ctx.underline is False
assert t0.ctx != t1.ctx
def test_switch_overline_on_off(self):
mp = MTextParser(r"\Oword\o")
tokens = list(mp)
assert len(tokens) == 1
t0 = tokens[0]
# attribute context store the final context
final_ctx = mp.ctx
assert t0.ctx.overline is not final_ctx.overline
assert t0.ctx != final_ctx
def test_switch_strike_through_on_off(self):
mp = MTextParser(r"\Kword word\k")
tokens = list(mp)
t0, t1, t2 = tokens
final_ctx = mp.ctx
assert t2.ctx.strike_through is not final_ctx.strike_through
assert t2.ctx != final_ctx
@pytest.mark.parametrize(
"s,e,attr",
[
["\\L", "\\l", "underline"],
["\\K", "\\k", "strike_through"],
["\\O", "\\o", "overline"],
],
)
def test_switch_stroke_on_off_multiple_times(self, s, e, attr):
text = s + "word word" + e + " " + s + "word word" + e + " word"
# t[x] 0 12 3 4 56 78
mp = MTextParser(text)
assert [getattr(t.ctx, attr) for t in mp] == [
True, # 0
True, # 1
True, # 2
False, # 3
True, # 4
True, # 5
True, # 6
False, # 7
False, # 8
]
def test_context_stack_for_grouping(self):
t0, t1, t2 = MTextParser(r"word{\Lword}word")
assert t0.ctx.underline is False
assert t1.ctx.underline is True
assert t2.ctx.underline is False
assert t0.ctx is not t1.ctx
assert t0.ctx is t2.ctx, "initial context should be restored"
def test_bottom_alignment_with_terminator(self):
tokens = list(MTextParser(r"\A0;word"))
assert len(tokens) == 1
t0 = tokens[0]
assert t0.data == "word", "terminator should be removed"
assert t0.ctx.align == 0
def test_middle_alignment_without_terminator(self):
tokens = list(MTextParser(r"\A10"))
assert len(tokens) == 1
assert tokens[0].ctx.align == 1
def test_top_alignment_without_terminator(self):
tokens = list(MTextParser(r"\A2word"))
assert len(tokens) == 1
assert tokens[0].ctx.align == 2
def test_alignment_default_value_for_invalid_argument(self):
tokens = list(MTextParser(r"\A3word"))
assert len(tokens) == 1
t0 = tokens[0]
assert t0.ctx.align == 0
assert t0.data == "word", "invalid argument should be removed"
def test_font_b0_i0(self):
t0 = list(MTextParser(r"\fArial Narrow;word"))[0]
font_face = t0.ctx.font_face
assert font_face.family == "Arial Narrow"
assert font_face.style == "Regular"
assert font_face.weight == 400
def test_font_b1_i0(self):
t0 = list(MTextParser(r"\fArial Narrow|b1;word"))[0]
assert t0.ctx.font_face.weight == 700
def test_font_b0_i1(self):
t0 = list(MTextParser(r"\fArial Narrow|i1;word"))[0]
assert t0.ctx.font_face.style == "Italic"
def test_font_b1_i1(self):
t0 = list(MTextParser(r"\fArial Narrow|i1|b1;word"))[0]
assert t0.ctx.font_face.style == "Italic"
assert t0.ctx.font_face.weight == 700
def test_font_uppercase_command(self):
t0 = list(MTextParser(r"\FArial Narrow;word"))[0]
assert t0.ctx.font_face.family == "Arial Narrow"
def test_empty_font_command_does_not_change_font_properties(self):
t0, t1 = list(MTextParser(r"\fArial;word\f;word"))
assert t0.ctx.font_face.family == "Arial"
assert t0.ctx.font_face is t1.ctx.font_face
def test_empty_font_family_name_does_not_change_font_properties(self):
t0, t1 = list(MTextParser(r"\fArial;word\f|b1|i1;word"))
assert t0.ctx.font_face.family == "Arial"
assert t0.ctx.font_face is t1.ctx.font_face
@pytest.mark.parametrize(
"expr",
[
r"\H3",
r"\H3;",
r"\H+3",
r"\H+3;",
r"\H-3", # ignore sign
r"\H-3;", # ignore sign
r"\H0.3e1",
r"\H0.3e1;",
r"\H30e-1",
r"\H30e-1;",
],
)
def test_absolut_height_command(self, expr):
t0 = list(MTextParser(f"{expr}word"))[0]
assert t0.ctx.cap_height == 3
@pytest.mark.parametrize(
"expr",
[
r"\H3x",
r"\H3x;",
r"\H+3x",
r"\H+3x;",
r"\H-3x", # ignore sign
r"\H-3x;", # ignore sign
r"\H0.3e1x",
r"\H0.3e1x;",
r"\H30e-1x",
r"\H30e-1x;",
],
)
def test_relative_height_command(self, expr):
t1 = list(MTextParser(rf"\H2;word{expr}word"))[1]
assert t1.ctx.cap_height == 6.0
assert t1.data == "word"
@pytest.mark.parametrize(
"expr",
[
r"\H",
r"\H;",
r"\Hx",
r"\Hx;",
r"\H1-2;",
r"\H.3", # this does work in AutoCAD
r"\H.3;", # this does work in AutoCAD
r"\H.3x", # this does work in AutoCAD
r"\H.3x;", # this does work in AutoCAD
r"\H.",
r"\H.;",
],
)
def test_invalid_height_command(self, expr):
t0 = list(MTextParser(rf"{expr}word"))[0]
assert t0.ctx.cap_height == 1.0
# The important part: does not raise an exception, the word after the
# INVALID height command is not relevant and may differ from AutoCAD and
# BricsCAD rendering.
@pytest.mark.parametrize(
"expr",
[
r"\W3",
r"\W3;",
r"\W+3",
r"\W+3;",
r"\W-3", # ignore sign
r"\W-3;", # ignore sign
r"\W0.3e1",
r"\W0.3e1;",
r"\W30e-1",
r"\W30e-1;",
],
)
def test_absolut_width_command(self, expr):
t0 = list(MTextParser(f"{expr}word"))[0]
assert t0.ctx.width_factor == 3
@pytest.mark.parametrize(
"expr",
[
r"\W3x",
r"\W3x;",
r"\W+3x",
r"\W+3x;",
r"\W-3x", # ignore sign
r"\W-3x;", # ignore sign
r"\W0.3e1x",
r"\W0.3e1x;",
r"\W30e-1x",
r"\W30e-1x;",
],
)
def test_relative_height_command(self, expr):
t1 = list(MTextParser(rf"\W2;word{expr}word"))[1]
assert t1.ctx.width_factor == 6.0
assert t1.data == "word"
@pytest.mark.parametrize(
"expr",
[
r"\T3",
r"\T3;",
r"\T+3",
r"\T+3;",
r"\T-3", # ignore sign
r"\T-3;", # ignore sign
r"\T0.3e1",
r"\T0.3e1;",
r"\T30e-1",
r"\T30e-1;",
],
)
def test_absolut_char_tracking_command(self, expr):
t0 = list(MTextParser(f"{expr}word"))[0]
assert t0.ctx.char_tracking_factor == 3
@pytest.mark.parametrize(
"expr",
[
r"\T3x",
r"\T3x;",
r"\T+3x",
r"\T+3x;",
r"\T-3x", # ignore sign
r"\T-3x;", # ignore sign
r"\T0.3e1x",
r"\T0.3e1x;",
r"\T30e-1x",
r"\T30e-1x;",
],
)
def test_relative_char_tracking_command(self, expr):
t1 = list(MTextParser(rf"\T2;word{expr}word"))[1]
assert t1.ctx.char_tracking_factor == 6.0
assert t1.data == "word"
@pytest.mark.parametrize(
"expr",
[
r"\Q3",
r"\Q3;",
r"\Q+3",
r"\Q+3;",
r"\Q0.3e1",
r"\Q0.3e1;",
r"\Q30e-1",
r"\Q30e-1;",
],
)
def test_positive_oblique_command(self, expr):
t0 = list(MTextParser(f"{expr}word"))[0]
assert t0.ctx.oblique == 3
@pytest.mark.parametrize(
"expr",
[
r"\Q-3",
r"\Q-3;",
r"\Q-0.3e1",
r"\Q-0.3e1;",
r"\Q-30e-1",
r"\Q-30e-1;",
],
)
def test_negative_oblique_command(self, expr):
t0 = list(MTextParser(f"{expr}word"))[0]
assert t0.ctx.oblique == -3
@pytest.mark.parametrize(
"expr",
[
r"\C3",
r"\C3;",
r"\C03",
r"\C03;",
],
)
def test_aci_color(self, expr):
t0 = list(MTextParser(rf"{expr}word"))[0]
assert t0.ctx.aci == 3
assert t0.ctx.rgb is None
@pytest.mark.parametrize(
"expr",
[
r"\C1000",
r"\C1000;",
],
)
def test_aci_color_is_limited_to_256(self, expr):
t0 = list(MTextParser(rf"{expr}word"))[0]
assert t0.ctx.aci == 7 # default value
assert t0.ctx.rgb is None
assert t0.data == "word"
@pytest.mark.parametrize(
"expr",
[
r"\c255",
r"\c255;",
r"\c0255",
r"\c0255;",
],
)
def test_rgb_color(self, expr):
t0 = list(MTextParser(rf"{expr}word"))[0]
assert t0.ctx.aci == 7 # default value
assert t0.ctx.rgb == (255, 0, 0)
def test_rgb_color_overflow(self):
t0 = list(MTextParser(r"\c9999999999;word"))[0]
assert t0.ctx.rgb == (255, 227, 11)
class TestMTextParagraphProperties:
@pytest.mark.parametrize(
"expr, expected",
[
("i0;", 0),
("i+1;", 1),
("i1.1;", 1.1),
("i-1;", -1),
("i-1.1;", -1.1),
],
)
def test_indent_first_line(self, expr, expected):
t0 = list(MTextParser(rf"\p{expr}word"))[0]
assert t0.ctx.paragraph.indent == expected
@pytest.mark.parametrize(
"expr, expected",
[
("l0;", 0),
("l+1;", 1),
("l1.1;", 1.1),
("l-1;", -1),
("l-1.1;", -1.1),
],
)
def test_indent_left(self, expr, expected):
t0 = list(MTextParser(rf"\p{expr}word"))[0]
assert t0.ctx.paragraph.left == expected
@pytest.mark.parametrize(
"expr, expected",
[
("r0;", 0),
("r+1;", 1),
("r1.1;", 1.1),
("r-1;", -1),
("r-1.1;", -1.1),
],
)
def test_indent_right(self, expr, expected):
t0 = list(MTextParser(rf"\p{expr}word"))[0]
assert t0.ctx.paragraph.right == expected
@pytest.mark.parametrize(
"expr, expected",
[
("ql;", MTextParagraphAlignment.LEFT),
("qr;", MTextParagraphAlignment.RIGHT),
("qc;", MTextParagraphAlignment.CENTER),
("qj;", MTextParagraphAlignment.JUSTIFIED),
("qd;", MTextParagraphAlignment.DISTRIBUTED),
("q?;", MTextParagraphAlignment.DEFAULT),
],
)
def test_paragraph_alignment(self, expr, expected):
t0 = list(MTextParser(rf"\p{expr}word"))[0]
assert t0.ctx.paragraph.align == expected
def test_tab_stops(self):
t0 = list(MTextParser(r"\pxt4,c5,r6,7.5;word"))[0]
assert t0.ctx.paragraph.tab_stops == (4, "c5", "r6", 7.5)
@pytest.mark.parametrize(
"expr",
[
"i1,l2,r3,qc,t1,2,3;", # regular order
"qc,l2,r3,i1,t1,2,3;", # tab stops have to be the last argument
"xqc,xl2,xr3,xi1,xt1,2,3;", # ignore "x"
"xqcl2xr3xi1xt1,2,3;", # ezdxf: commas not required between arguments
],
)
def test_combinations(self, expr):
t0 = list(MTextParser(rf"\p{expr}word"))[0]
assert t0.ctx.paragraph == (
1,
2,
3,
MTextParagraphAlignment.CENTER,
(1, 2, 3),
)
def test_reset_arguments(self):
t0, t1 = list(MTextParser(r"\pi1,l2,r3,qc,t1,2,3;word\pi*,l*,r*,q*,t;word"))
assert t0.ctx.paragraph == (
1,
2,
3,
MTextParagraphAlignment.CENTER,
(1, 2, 3),
)
assert t1.ctx.paragraph == ParagraphProperties() # reset to default
def test_invalid_tab_stops(self):
tokens = list(MTextParser(r"\pi0,l0,tz;A"))
t = tokens[0]
assert t.ctx.paragraph.tab_stops == tuple()
def test_unknown_escape_sequence(self):
t0, t1 = list(MTextParser(r"word\Yword"))
assert t1.type == TokenType.WORD
assert t1.data == r"\Yword"
class TestMTextParserYieldsPropertyChangeCommands:
def test_change_height(self):
t0, t1, t2 = list(MTextParser(r"word\H150;word", yield_property_commands=True))
assert t1.type == TokenType.PROPERTIES_CHANGED
assert t1.ctx.cap_height == 150
assert t1.data == r"\H150;"
def test_change_height_without_semicolon(self):
t0, t1, t2 = list(MTextParser(r"word\H150word", yield_property_commands=True))
assert t1.type == TokenType.PROPERTIES_CHANGED
assert t1.ctx.cap_height == 150
assert t1.data == r"\H150"
def test_change_char_tracking(self):
t0, t1, t2 = list(MTextParser(r"word\T150;word", yield_property_commands=True))
assert t1.type == TokenType.PROPERTIES_CHANGED
assert t1.ctx.char_tracking_factor == 150
assert t1.data == r"\T150;"
def test_change_paragraph(self):
t0, t1 = list(
MTextParser(r"\pxt4,c5,r6,7.5;word", yield_property_commands=True)
)
assert t0.type == TokenType.PROPERTIES_CHANGED
assert t0.data == r"\pxt4,c5,r6,7.5;"
def test_one_char_commands(self):
t0, t1, t2 = list(
MTextParser(r"\Lword\l", yield_property_commands=True)
)
assert t0.type == TokenType.PROPERTIES_CHANGED
assert t0.data == r"\L"
assert t2.type == TokenType.PROPERTIES_CHANGED
assert t2.data == r"\l"
def test_unknown_escape_sequence(self):
t0, t1 = list(MTextParser(r"word\Yword", yield_property_commands=True))
assert t1.type == TokenType.WORD
assert t1.data == r"\Yword"
if __name__ == "__main__":
pytest.main([__file__])
|