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
|
# -*- coding: utf-8 -*-
import locale
from copy import deepcopy
from xml.etree import ElementTree as etree
import pytest
from junitparser import (
TestCase,
TestSuite,
Skipped,
Failure,
Error,
Attr,
JUnitXmlError,
JUnitXml,
Property,
Properties,
IntAttr,
FloatAttr,
Element,
)
try:
from lxml import etree as expected_lxml_etree
has_lxml = True
except ImportError:
from xml.etree import ElementTree as expected_xml_etree
has_lxml = False
class Test_XmlPackage:
@pytest.mark.skipif(has_lxml, reason="xml package is used unless lxml is installed")
def test_xml_etree(self):
from junitparser.junitparser import etree as actual_etree
assert actual_etree == expected_xml_etree
@pytest.mark.skipif(not has_lxml, reason="lxml package has to be installed")
def test_lxml_etree(self):
from junitparser.junitparser import etree as actual_etree
assert actual_etree == expected_lxml_etree
class Test_MergeSuiteCounts:
def test_merge_test_count(self):
text1 = """<testsuite name="suitename1" tests="2" failures="1">
<testcase name="testname1"><failure message="failed"/></testcase>
<testcase name="testname2"></testcase>
</testsuite>"""
test_suite1 = TestSuite.fromstring(text1)
text2 = """<testsuite name="suitename2" tests="2" skipped="1">
<testcase name="testname3"><skipped message="no reason given"/></testcase>
<testcase name="testname4"></testcase>
</testsuite>"""
test_suite2 = TestSuite.fromstring(text2)
combined_suites = JUnitXml()
combined_suites += test_suite1
combined_suites += test_suite2
assert combined_suites.tests == 4
assert combined_suites.failures == 1
assert combined_suites.skipped == 1
def test_merge_same_suite(self):
text1 = """<testsuite name="suitename1" tests="2" failures="1">
<testcase name="testname1"><failure message="failed"/></testcase>
<testcase name="testname2"></testcase>
</testsuite>"""
test_suite1 = TestSuite.fromstring(text1)
text2 = """<testsuite name="suitename1" tests="2" skipped="1">
<testcase name="testname3"><skipped message="no reason given"/></testcase>
<testcase name="testname4"></testcase>
</testsuite>"""
test_suite2 = TestSuite.fromstring(text2)
combined_suites = JUnitXml()
combined_suites += test_suite1
combined_suites += test_suite2
suites = list(suite for suite in combined_suites)
assert len(suites) == 1
assert combined_suites.tests == 4
assert combined_suites.failures == 1
assert combined_suites.skipped == 1
@pytest.fixture()
def locale_fixture():
old_locale = locale.getlocale(locale.LC_NUMERIC)
yield
locale.setlocale(locale.LC_NUMERIC, old_locale)
class Test_Locale:
@pytest.mark.parametrize("loc", ["", "en_US.UTF-8", "de_DE.UTF-8"])
def test_fromstring_numbers_locale_insensitive(self, loc, locale_fixture):
"Case relies on that LC_ALL is set in the console."
locale.setlocale(locale.LC_NUMERIC, loc)
text = """<testsuites>
<testsuite errors="0" failures="0" hostname="hooch" name="pytest" skipped="0" tests="2" time="1000.125" timestamp="2020-02-05T10:52:33.843536">
<testcase classname="test_x" file="test_x.py" line="7" name="test_comp_1" time="1,000.025"/>
<testcase classname="test_x" file="test_x.py" line="10" name="test_comp_2" time="0.1"/>
</testsuite>
</testsuites>"""
result = JUnitXml.fromstring(text)
suite = list(iter(result))[0]
assert suite.time == 1000.125
cases = list(iter(suite))
assert cases[0].time == 1000.025
assert cases[1].time == 0.1
class Test_JunitXml:
def test_fromstring(self):
text = """<testsuites><testsuite name="suitename1">
<testcase name="testname1">
</testcase></testsuite>
<testsuite name="suitename2">
<testcase name="testname2">
</testcase></testsuite></testsuites>"""
result = JUnitXml.fromstring(text)
assert len(result) == 2
assert result.time == 0
def test_fromstring_no_testsuites(self):
text = """<testsuite name="suitename1">
<testcase name="testname1">
</testcase></testsuite>"""
result = JUnitXml.fromstring(text)
assert len(result) == 1
assert result.time == 0
def test_fromstring_multiple_fails(self):
text = """<testsuites>
<testsuite errors="1" failures="0" hostname="hooch" name="pytest" skipped="1" tests="3" time="0.025" timestamp="2020-02-05T10:52:33.843536">
<testcase classname="test_x" file="test_x.py" line="7" name="test_comp_1" time="0.000"/>
<testcase classname="test_x" file="test_x.py" line="10" name="test_comp_2" time="0.000">
<skipped message="unconditional skip" type="pytest.skip">test_x.py:11: unconditional skip</skipped>
<error message="test teardown failure">
@pytest.fixture(scope="module") def compb(): yield > raise PermissionError E PermissionError test_x.py:6: PermissionError
</error>
</testcase>
</testsuite>
</testsuites>"""
result = JUnitXml.fromstring(text)
assert isinstance(result, JUnitXml)
assert result.errors == 1
assert result.skipped == 1
suite = list(iter(result))[0]
cases = list(iter(suite))
assert len(cases[0].result) == 0
assert len(cases[1].result) == 2
text = cases[1].result[1].text
assert "@pytest.fixture" in text
def test_fromroot_testsuite(self):
text = """
<testsuite errors="1" failures="0" hostname="hooch" name="pytest" skipped="1" tests="3" time="0.025" timestamp="2020-02-05T10:52:33.843536">
<testcase classname="test_x" file="test_x.py" line="7" name="test_comp_1" time="0.000"/>
<testcase classname="test_x" file="test_x.py" line="10" name="test_comp_2" time="0.000">
<skipped message="unconditional skip" type="pytest.skip">test_x.py:11: unconditional skip</skipped>
<error message="test teardown failure">
@pytest.fixture(scope="module") def compb(): yield > raise PermissionError E PermissionError test_x.py:6: PermissionError
</error>
</testcase>
</testsuite>"""
root_elemt = etree.fromstring(text)
result = JUnitXml.fromroot(root_elemt)
assert isinstance(result, TestSuite)
assert result.errors == 1
assert result.skipped == 1
cases = list(iter(result))
assert len(cases[0].result) == 0
assert len(cases[1].result) == 2
text = cases[1].result[1].text
assert "@pytest.fixture" in text
def test_fromroot_testsuites(self):
text = """<testsuites>
<testsuite errors="1" failures="0" hostname="hooch" name="pytest" skipped="1" tests="3" time="0.025" timestamp="2020-02-05T10:52:33.843536">
<testcase classname="test_x" file="test_x.py" line="7" name="test_comp_1" time="0.000"/>
<testcase classname="test_x" file="test_x.py" line="10" name="test_comp_2" time="0.000">
<skipped message="unconditional skip" type="pytest.skip">test_x.py:11: unconditional skip</skipped>
<error message="test teardown failure">
@pytest.fixture(scope="module") def compb(): yield > raise PermissionError E PermissionError test_x.py:6: PermissionError
</error>
</testcase>
</testsuite>
</testsuites>"""
root_elemt = etree.fromstring(text)
result = JUnitXml.fromroot(root_elemt)
assert result.errors == 1
assert result.skipped == 1
suite = list(iter(result))[0]
cases = list(iter(suite))
assert len(cases[0].result) == 0
assert len(cases[1].result) == 2
text = cases[1].result[1].text
assert "@pytest.fixture" in text
def test_fromstring_invalid(self):
text = """<random name="suitename1"></random>"""
with pytest.raises(Exception) as context:
JUnitXml.fromstring(text)
assert isinstance(context.value, JUnitXmlError)
def test_add_suite(self):
suite1 = TestSuite("suite1")
suite2 = TestSuite("suite2")
result = JUnitXml()
result.add_testsuite(suite1)
result.add_testsuite(suite2)
assert len(result) == 2
def test_construct_xml(self):
suite1 = TestSuite()
suite1.name = "suite1"
case1 = TestCase()
case1.name = "case1"
suite1.add_testcase(case1)
result = JUnitXml()
result.add_testsuite(suite1)
assert result._elem.tag == "testsuites"
suite = result._elem.findall("testsuite")
assert len(suite) == 1
assert suite[0].attrib["name"] == "suite1"
case = suite[0].findall("testcase")
assert len(case) == 1
assert case[0].attrib["name"] == "case1"
def test_add(self):
result1 = JUnitXml()
suite1 = TestSuite("suite1")
result1.add_testsuite(suite1)
result2 = JUnitXml()
suite2 = TestSuite("suite2")
result2.add_testsuite(suite2)
result3 = result1 + result2
assert len(result3) == 2
def test_add_same_suite(self):
result1 = JUnitXml()
suite1 = TestSuite()
result1.add_testsuite(suite1)
result2 = JUnitXml()
suite2 = TestSuite()
result2.add_testsuite(suite2)
result3 = result1 + result2
assert len(result3) == 1
def test_iadd(self):
result1 = JUnitXml()
suite1 = TestSuite("suite1")
result1.add_testsuite(suite1)
result2 = JUnitXml()
suite2 = TestSuite("suite2")
result2.add_testsuite(suite2)
result1 += result2
assert len(result1) == 2
def test_iadd_same_suite(self):
result1 = JUnitXml()
suite1 = TestSuite()
result1.add_testsuite(suite1)
result2 = JUnitXml()
suite2 = TestSuite()
result2.add_testsuite(suite2)
result1 += result2
assert len(result1) == 1
def test_add_two_same_suites(self):
suite1 = TestSuite()
case1 = TestCase(name="case1")
suite1.add_testcase(case1)
suite2 = TestSuite()
case2 = TestCase(name="case2")
suite2.add_testcase(case2)
suite3 = TestSuite()
suite2.add_testsuite(suite3)
result = suite1 + suite2
assert isinstance(result, TestSuite)
assert len(list(iter(result))) == 2
assert len(list(iter(result.testsuites()))) == 1
def test_iadd_two_same_suites(self):
suite1 = TestSuite()
case1 = TestCase(name="case1")
suite1.add_testcase(case1)
suite2 = TestSuite()
case2 = TestCase(name="case2")
suite2.add_testcase(case2)
suite3 = TestSuite()
suite2.add_testsuite(suite3)
suite1 += suite2
assert isinstance(suite1, TestSuite)
assert len(list(iter(suite1))) == 2
assert len(list(iter(suite1.testsuites()))) == 1
def test_add_two_different_suites(self):
suite1 = TestSuite(name="suite1")
case1 = TestCase(name="case1")
suite1.add_testcase(case1)
suite2 = TestSuite(name="suite2")
case2 = TestCase(name="case2")
suite2.add_testcase(case2)
result = suite1 + suite2
assert isinstance(result, JUnitXml)
assert len(list(iter(result))) == 2
def test_iadd_two_different_suites(self):
suite1 = TestSuite(name="suite1")
case1 = TestCase(name="case1")
suite1.add_testcase(case1)
suite2 = TestSuite(name="suite2")
case2 = TestCase(name="case2")
suite2.add_testcase(case2)
suite1 += suite2
assert isinstance(suite1, JUnitXml)
assert len(list(iter(suite1))) == 2
def test_xml_statistics(self):
result1 = JUnitXml()
suite1 = TestSuite()
result1.add_testsuite(suite1)
result2 = JUnitXml()
suite2 = TestSuite()
result2.add_testsuite(suite2)
result3 = result1 + result2
result3.update_statistics()
assert result3.tests == 0
class Test_TestSuite:
def test_fromstring(self):
text = """<testsuite name="suitename" time="1.32">
<testcase name="testname">
<failure message="failure message" type="FailureType"/>
</testcase></testsuite>"""
suite = TestSuite.fromstring(text)
assert suite.time == 1.32
suite.update_statistics()
assert suite.name == "suitename"
assert suite.tests == 1
def test_props_fromstring(self):
text = """<testsuite name="suitename">
<properties><property name="name1" value="value1"/></properties>
</testsuite>"""
suite = TestSuite.fromstring(text)
for prop in suite.properties():
assert prop.name == "name1"
assert prop.value == "value1"
def test_quoted_attr(self):
text = """<testsuite name="suitename with "quotes"">
</testsuite>"""
suite = TestSuite.fromstring(text)
assert suite.name == 'suitename with "quotes"'
def test_combining_testsuite_should_keep_name(self):
text1 = """<testsuite name="suitename1" tests="2" failures="1">
<testcase name="testname1"><failure message="failed"/></testcase>
<testcase name="testname2"></testcase>
</testsuite>"""
test_suite1 = TestSuite.fromstring(text1)
text2 = """<testsuite name="suitename2" tests="2" skipped="1">
<testcase name="testname3"><skipped message="no reason given"/></testcase>
<testcase name="testname4"></testcase>
</testsuite>"""
test_suite2 = TestSuite.fromstring(text2)
combined_suites = JUnitXml()
combined_suites += test_suite1
combined_suites += test_suite2
assert [s.name for s in combined_suites] == ["suitename1", "suitename2"]
def test_len(self):
text = """<testsuite name="suitename"><testcase name="testname"/>
<testcase name="testname2"/>
</testsuite>"""
suite = TestSuite.fromstring(text)
assert len(suite) == 2
def test_add_case(self):
suite = TestSuite()
assert suite.tests == 0
case1 = TestCase()
case2 = TestCase()
case2.result = [Failure()]
case3 = TestCase()
case3.result = [Error()]
case4 = TestCase()
case4.result = [Skipped()]
suite.add_testcase(case1)
suite.add_testcase(case2)
suite.add_testcase(case3)
suite.add_testcase(case4)
suite.update_statistics()
assert suite.tests == 4
assert suite.failures == 1
assert suite.errors == 1
assert suite.skipped == 1
def test_case_count(self):
suite = TestSuite()
case1 = TestCase()
suite.add_testcase(case1)
assert suite.tests == 1
assert suite.failures == 0
def test_add_property(self):
suite = TestSuite()
suite.add_property("name1", "value1")
res_prop = next(suite.properties())
assert res_prop.name == "name1"
assert res_prop.value == "value1"
def test_remove_case(self):
suite = TestSuite()
case1 = TestCase()
case1.name = "test1"
case2 = TestCase()
case2.name = "test2"
suite.add_testcase(case1)
suite.add_testcase(case2)
suite.remove_testcase(case1)
assert len(suite) == 1
def test_remove_property(self):
suite = TestSuite()
suite.add_property("name1", "value1")
suite.add_property("name2", "value2")
suite.add_property("name3", "value3")
for prop in suite.properties():
if prop.name == "name2":
suite.remove_property(prop)
assert len(list(suite.properties())) == 2
def test_remove_property_from_none(self):
suite = TestSuite()
suite.remove_property(Property("key", "value"))
# Nothing should happen
def test_suite_in_suite(self):
suite = TestSuite("parent")
childsuite = TestSuite("child")
suite.add_testsuite(childsuite)
assert len(list(suite.testsuites())) == 1
def test_case_time(self):
suite = TestSuite()
case1 = TestCase()
case1.name = "test1"
case1.time = 15
suite.add_testcase(case1)
suite.update_statistics()
assert suite.time == 15
def test_wrong_attr_type(self):
suite = TestSuite()
with pytest.raises(TypeError):
suite.time = "abc"
with pytest.raises(TypeError):
suite.tests = 10.5
def test_suite_eq(self):
suite = TestSuite()
suite.add_property("name1", "value1")
suite2 = deepcopy(suite)
assert suite == suite2
def test_suite_ne(self):
suite = TestSuite()
suite.add_property("name1", "value1")
suite2 = deepcopy(suite)
suite2.add_property("name2", "value2")
assert suite != suite2
def test_add_cases(self):
suite = TestSuite()
assert suite.tests == 0
case1 = TestCase()
case2 = TestCase()
case2.result = [Failure()]
case3 = TestCase()
case3.result = [Error()]
case4 = TestCase()
case4.result = [Skipped()]
suite.add_testcases([case1, case2, case3, case4])
suite.update_statistics()
assert suite.tests == 4
assert suite.failures == 1
assert suite.errors == 1
assert suite.skipped == 1
class Test_TestCase:
def test_case_fromstring(self):
text = """<testcase name="testname">
<failure message="failure message" type="FailureType"/>
<system-out>System out</system-out>
<system-err>System err</system-err>
</testcase>"""
case = TestCase.fromstring(text)
assert case.name == "testname"
assert isinstance(case.result[0], Failure)
assert case.system_out == "System out"
assert case.system_err == "System err"
def test_xml_multi_results(self):
text = """<testcase name="testname">
<failure message="failure message" type="FailureType"/>
<skipped message="skipped message" type="FailureType"/>
</testcase>
"""
case = TestCase.fromstring(text)
# no assertion raised
assert case.name == "testname"
assert len(case.result) == 2
def test_multi_results(self):
case = TestCase("testname")
err = Error("err msg", "err_type")
fail1 = Failure("fail msg 1", "fail_type")
fail2 = Failure("fail msg 2", "fail_type")
fail3 = Failure("fail msg 3", "fail_type")
fail4 = Failure("fail msg 4", "fail_type")
case.result += [err]
assert len(case.result) == 1
case.result += [fail1]
assert len(case.result) == 2
case.result += [fail2]
assert len(case.result) == 3
case.result += [fail3]
assert len(case.result) == 4
case.result += [fail4]
assert len(case.result) == 5
def test_case_attributes(self):
case = TestCase()
case.name = "testname"
case.classname = "testclassname"
case.time = 15.123
case.result = [Skipped()]
case.result[0].text = "woah skipped"
assert case.name == "testname"
assert case.classname == "testclassname"
assert case.time == 15.123
assert isinstance(case.result[0], Skipped)
assert case.result[0].text == "woah skipped"
def test_case_init_with_attributes(self):
case = TestCase("testname", "testclassname", 15.123)
case.result = [Skipped()]
assert case.name == "testname"
assert case.classname == "testclassname"
assert case.time == 15.123
assert isinstance(case.result[0], Skipped)
def test_case_output(self):
case = TestCase()
case.system_err = "error message"
case.system_out = "out message"
assert case.system_err == "error message"
assert case.system_out == "out message"
case.system_err = "error2"
case.system_out = "out2"
assert case.system_err == "error2"
assert case.system_out == "out2"
def test_update_results(self):
case = TestCase()
case.result = Skipped()
assert len(case.result) == 1
case.result = [Failure(), Skipped()]
assert len(case.result) == 2
def test_monkypatch(self):
TestCase.id = Attr("id")
case = TestCase()
case.id = "100"
assert case.id == "100"
def test_equal(self):
case = TestCase()
case.name = "test1"
case2 = TestCase()
case2.name = "test1"
assert case == case2
def test_not_equal(self):
case = TestCase()
case.name = "test1"
case2 = TestCase()
case2.name = "test2"
assert case != case2
def test_from_elem(self):
elem = etree.Element("testcase", name="case1")
case = TestCase.fromelem(elem)
assert case.name == "case1"
def test_from_junit_elem(self):
case = TestCase()
case.name = "test1"
class TestOtherCase(TestCase):
_tag = "TestOtherCase"
assertions = Attr()
other_case = TestOtherCase.fromelem(case)
assert case.name == other_case.name
assert other_case.assertions is None
pytest.raises(AttributeError, lambda: case.assertions)
other_case.assertions = 20
assert other_case.assertions == "20"
def test_to_string(self):
case = TestCase()
case.name = "test1"
case_str = case.tostring()
assert b"test1" in case_str
def test_to_nonascii_string(self):
case = TestCase()
case.name = "测试1"
case.result = [Failure("失败", "类型")]
case_str = case.tostring()
assert "测试1" in case_str.decode("utf-8")
assert "失败" in case_str.decode("utf-8")
assert "类型" in case_str.decode("utf-8")
def test_system_out(self):
case = TestCase()
case.name = "case1"
assert case.system_out is None
case.system_out = "output"
assert case.system_out == "output"
def test_system_err(self):
case = TestCase()
case.name = "case1"
assert case.system_err is None
case.system_err = "error"
assert case.system_err == "error"
def test_result_eq(self):
assert Failure("A") == Failure("A")
assert Skipped("B") != Skipped("A")
assert Error("C") != Error("B")
def test_result_attrs(self):
res1 = Failure("A")
# NOTE: lxml gives spaceless result
assert res1.tostring() in [
b'<failure message="A" />',
b'<failure message="A"/>',
]
def test_add_child_element(self):
class CustomElement(Element):
_tag = "custom"
foo = Attr()
bar = Attr()
testcase = TestCase()
custom = CustomElement()
testcase.append(custom)
assert testcase.tostring() in [
b"<testcase><custom /></testcase>",
b"<testcase><custom/></testcase>",
]
def test_case_is_skipped(self):
case = TestCase()
case.result = [Skipped()]
assert case.is_skipped
assert not case.is_passed
def test_case_is_passed(self):
case = TestCase()
case.result = []
assert not case.is_skipped
assert case.is_passed
def test_case_is_failed(self):
case = TestCase()
case.result = [Failure()]
assert not case.is_skipped
assert not case.is_passed
class Test_Properties:
def test_property_repr1(self):
prop1 = Property("prop1", "1")
assert prop1.__repr__() == '<Element \'property\' name="prop1" value="1">'
def test_property_repr2(self):
prop1 = TestSuite()
assert prop1.__repr__() == "<Element 'testsuite'>"
def test_property_eq(self):
prop1 = Property("prop1", "1")
prop2 = Property("prop1", "1")
assert prop1 == prop2
def test_property_ne(self):
prop1 = Property("prop1", "1")
prop2 = Property("prop1", "2")
assert prop1 != prop2
def test_properties_eq(self):
prop1 = Property("prop1", "1")
prop2 = Property("prop1", "2")
# Note: an attribute can only be used at one place.
prop3 = deepcopy(prop1)
prop4 = deepcopy(prop2)
props1 = Properties()
props1.add_property(prop1)
props1.add_property(prop2)
props2 = Properties()
props2.add_property(prop3)
props2.add_property(prop4)
assert props1 == props2
def test_properties_ne(self):
prop1 = Property("prop1", "1")
prop2 = Property("prop1", "2")
prop3 = deepcopy(prop1)
prop4 = deepcopy(prop1)
props1 = Properties()
props1.add_property(prop1)
props1.add_property(prop2)
props2 = Properties()
props2.add_property(prop3)
props2.add_property(prop4)
assert props1 != props2
def test_properties_ne2(self):
prop1 = Property("prop1", "1")
prop2 = Property("prop1", "2")
prop3 = deepcopy(prop1)
props1 = Properties()
props1.add_property(prop1)
props1.add_property(prop2)
props2 = Properties()
props2.add_property(prop3)
assert props1 != props2
class Test_Attrs:
def test_attr(self):
TestCase.text = Attr("text")
TestCase.int = IntAttr("int")
TestCase.float = FloatAttr("float")
element = TestCase("foo")
element.text = "foo"
element.int = 10
element.float = 8.5
assert element.text == "foo"
assert element.int == 10
assert element.float == 8.5
|