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
|
# Copyright (c) 2018 Ultimaker B.V.
# Uranium is released under the terms of the LGPLv3 or higher.
from typing import Optional
import os
import uuid # For creating unique ID's for each container stack.
from unittest.mock import MagicMock
import pytest
from UM.Settings.ContainerRegistry import ContainerRegistry
from UM.Settings.ContainerStack import ContainerStack
from UM.Settings.ContainerStack import IncorrectVersionError
from UM.Settings.ContainerStack import InvalidContainerStackError
from UM.Settings.DefinitionContainer import DefinitionContainer
from UM.Settings.InstanceContainer import InstanceContainer
from UM.Settings.Validator import ValidatorState
from UM.Resources import Resources
from .MockContainer import MockContainer
Resources.addSearchPath(os.path.dirname(os.path.abspath(__file__)))
## Creates a brand new container stack to test with.
#
# The container stack will get a new, unique ID.
@pytest.fixture
def container_stack():
return ContainerStack(str(uuid.uuid4()))
## Tests the creation of a container stack.
#
# The actual creation is done in a fixture though.
#
# \param container_stack A new container stack from a fixture.
def test_container_stack(container_stack):
assert container_stack is not None
## Tests adding a container to the stack.
#
# \param container_stack A new container stack from a fixture.
def test_addContainer(container_stack):
assert container_stack.getContainers() == [] # First nothing.
container = MockContainer()
container_stack.addContainer(container)
assert container_stack.getContainers() == [container] # Then something!
with pytest.raises(Exception):
container_stack.addContainer(container_stack) # Adding itself gives an exception.
assert container_stack.getContainers() == [container] # Make sure that adding itself didn't change the state, even if it raises an exception.
## Tests deserialising a container stack from a corrupted string.
def test_deserialize_syntax_error(container_stack):
serialised = "["
with pytest.raises(Exception):
container_stack.deserialize(serialised)
## Tests deserialising a container stack when the version number is wrong.
#
# \param container_stack A new container stack from a fixture.
# \param container_registry A new container registry from a fixture.
def test_deserialize_wrong_version(container_stack, container_registry):
container_registry.addContainer(InstanceContainer("a")) # Make sure this container isn't the one it complains about.
serialised = """
[general]
name = Test
id = testid
version = -1
[containers]
0 = a
""" # -1 should always be wrong.
with pytest.raises(IncorrectVersionError):
container_stack.deserialize(serialised)
## Tests deserialising a container stack from files that are missing entries.
#
# Sorry for the indenting.
#
# \param container_stack A new container stack from a fixture.
# \param container_registry A new container registry from a fixture.
def test_deserialize_missing_items(container_stack, container_registry):
container_registry.addContainer(InstanceContainer("a")) # Make sure this container isn't the one it complains about.
serialised_no_name = """
[general]
id = testid
version = {version}
[containers]
0 = a
""".format(version = ContainerStack.Version)
with pytest.raises(InvalidContainerStackError):
container_stack.deserialize(serialised_no_name)
serialised_no_id = """
[general]
name = Test
version = {version}
[containers]
0 = a
""".format(version = ContainerStack.Version)
with pytest.raises(InvalidContainerStackError):
container_stack.deserialize(serialised_no_id)
serialised_no_version = """
[general]
name = Test
id = testid
[containers]
0 = a
"""
with pytest.raises(InvalidContainerStackError):
container_stack.deserialize(serialised_no_version)
serialised_no_containers = """
[general]
name = Test
id = testid
version = {version}
""".format(version = ContainerStack.Version)
container_stack.deserialize(serialised_no_containers) # Missing containers is allowed.
assert container_stack.getContainers() == [] # Deserialize of an empty stack should result in an empty stack
serialised_no_general = """
[metadata]
foo = bar
"""
with pytest.raises(InvalidContainerStackError):
container_stack.deserialize(serialised_no_general)
def test_deserializeMetadata():
serialised = """
[general]
name = Test
id = testid
version = {version}
[metadata]
foo = bar
""".format(version=ContainerStack.Version)
metadata = ContainerStack.deserializeMetadata(serialised, "testid")[0]
assert metadata["name"] == "Test"
assert metadata["id"] == "testid"
assert metadata["version"] == str(ContainerStack.Version)
def test_deserializeInvalidMetadata():
# No version
serialised = """
[general]
name = Test
id = testid
"""
with pytest.raises(InvalidContainerStackError):
ContainerStack.deserializeMetadata(serialised, "testid")
# No name
serialised = """
[general]
id = testid
version = {version}
""".format(version=ContainerStack.Version)
with pytest.raises(InvalidContainerStackError):
ContainerStack.deserializeMetadata(serialised, "testid")
## Tests deserialising a container stack with various subcontainers.
#
# Sorry for the indenting.
#
# \param container_stack A new container stack from a fixture.
# \param container_registry A new container registry from a fixture.
def test_deserialize_containers(container_stack, container_registry):
container = InstanceContainer("a")
container_registry.addContainer(container)
serialised = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = a
""".format(version = ContainerStack.Version) # Test case where there is a container.
container_stack.deserialize(serialised)
assert container_stack.getContainers() == [container]
container_stack = ContainerStack(str(uuid.uuid4()))
serialised = """
[general]
name = Test
id = testid
version = {version}
[containers]
""".format(version = ContainerStack.Version) # Test case where there is no container.
container_stack.deserialize(serialised)
assert container_stack.getContainers() == []
container_stack = ContainerStack(str(uuid.uuid4()))
serialised = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = a
1 = a
""".format(version = ContainerStack.Version) # Test case where there are two of the same containers.
container_stack.deserialize(serialised)
assert container_stack.getContainers() == [container, container]
container_stack = ContainerStack(str(uuid.uuid4()))
serialised = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = a
1 = b
""".format(version = ContainerStack.Version) # Test case where a container doesn't exist.
with pytest.raises(Exception):
container_stack.deserialize(serialised)
container_stack = ContainerStack(str(uuid.uuid4()))
container_b = InstanceContainer("b") # Add the missing container and try again.
ContainerRegistry.getInstance().addContainer(container_b)
container_stack.deserialize(serialised)
assert container_stack.getContainers() == [container, container_b]
## Individual test cases for test_findContainer.
#
# Each test case has:
# * A description for debugging.
# * A list of dictionaries for containers to search in.
# * A filter to search with.
# * A required result.
test_findContainer_data = [
{
"description": "Search empty",
"containers": [
{ },
{ }
],
"filter": { },
"result": { }
},
{
"description": "Not found",
"containers": [
{ "foo": "baz" }
],
"filter": { "foo": "bar" },
"result": None
},
{
"description": "Key not found",
"containers": [
{ "loo": "bar" }
],
"filter": { "foo": "bar" },
"result": None
},
{
"description": "Multiple constraints",
"containers": [
{ "id": "a", "number": 1, "string": "foo", "mixed": 10 },
{ "id": "b", "number": 2, "string": "foo", "mixed": "bar" },
{ "id": "c", "number": 1, "string": "loo", "mixed": 10 }
],
"filter": { "number": 1, "string": "foo", "mixed": 10 },
"result": { "id": "a", "number": 1, "string": "foo", "mixed": 10 }
},
{
"description": "Wildcard Number",
"containers": [
{ "id": "a", "string": "foo" },
{ "id": "b", "number": 1 },
{ "id": "c", "number": 2 },
],
"filter": { "number": "*" },
"result": { "id": "c", "number": 2 }
},
{
"description": "Wildcard String",
"containers": [
{ "id": "a", "number": 1 },
{ "id": "b", "string": "foo" },
{ "id": "c", "string": "boo" }
],
"filter": { "string": "*" },
"result": { "id": "c", "string": "boo" }
}
]
## Tests finding a container by a filter.
#
# \param container_stack A new container stack from a fixture.
# \param data Individual test cases, provided from test_findContainer_data.
@pytest.mark.parametrize("data", test_findContainer_data)
def test_findContainer(container_stack, data):
for container in data["containers"]: # Add all containers.
mockup = MockContainer()
for key, value in container.items(): # Copy the data to the metadata of the mock-up.
mockup.getMetaData()[key] = value
container_stack.addContainer(mockup)
answer = container_stack.findContainer(data["filter"]) # The actual method to test.
if data["result"] is None:
assert answer is None
else:
assert answer is not None
assert data["result"].items() <= answer.getMetaData().items()
## Tests getting a container by index.
#
# \param container_stack A new container stack from a fixture.
def test_getContainer(container_stack):
with pytest.raises(IndexError):
container_stack.getContainer(0)
# Fill with data.
container1 = MockContainer()
container_stack.addContainer(container1)
container2 = MockContainer()
container_stack.addContainer(container2)
container3 = MockContainer()
container_stack.addContainer(container3)
assert container_stack.getContainer(2) == container1
assert container_stack.getContainer(1) == container2
assert container_stack.getContainer(0) == container3
with pytest.raises(IndexError):
container_stack.getContainer(3)
with pytest.raises(IndexError):
container_stack.getContainer(-1)
## Tests getting and changing the metadata of the container stack.
#
# \param container_stack A new container stack from a fixture.
def test_getSimpleMetaData(container_stack):
meta_data = container_stack.getMetaData()
assert meta_data is not None
meta_data["foo"] = "bar" # Try adding an entry.
assert container_stack.getMetaDataEntry("foo") == "bar"
def test_getNestedMetadata(container_stack):
mock_container = MockContainer({"derp": "omg!"})
container_stack.addContainer(mock_container)
assert container_stack.getMetaDataEntry("derp") == "omg!"
def test_removeMetadata(container_stack):
container_stack.setMetaData({"foo": "blorp!"})
container_stack.removeMetaDataEntry("foo")
assert container_stack.getMetaDataEntry("foo") is None
## Individual test cases for test_getValue.
#
# Each test case has:
# * A description, for debugging.
# * A list of containers. Each container is a dictionary of the items that
# will be set in that container. Note that this list is ordered in the order
# of the stack. The first item should be referenced first.
# * A key to search for.
# * The expected result that should be returned when querying that key.
test_getValue_data = [
{
"description": "Empty stack",
"containers": [
],
"key": "foo",
"result": None
},
{
"description": "Nonexistent key",
"containers": [
{ "boo": "bar" }
],
"key": "foo",
"result": None
},
{
"description": "First hit",
"containers": [
{ "foo": "bar" },
{ "foo": "baz" }
],
"key": "foo",
"result": "bar"
},
{
"description": "Third hit",
"containers": [
{ "boo": "baz" },
{ "zoo": "bam" },
{ "foo": "bar" }
],
"key": "foo",
"result": "bar"
}
]
## Tests getting item values from the container stack.
#
# \param container_stack A new container stack from a fixture.
# \param data Individual test cases as loaded from test_getValue_data.
@pytest.mark.parametrize("data", test_getValue_data)
def test_getValue(container_stack, data):
# Fill the container stack with the containers.
for container in reversed(data["containers"]): # Reverse order to make sure the last-added item is the top of the list.
mockup = MockContainer()
mockup.items = container
container_stack.addContainer(mockup)
answer = container_stack.getProperty(data["key"], "value") # Do the actual query.
# Check if the reason the answer is None is because the property just isn't there
assert container_stack.hasProperty(data["key"], "value") == (answer is not None)
assert answer == data["result"]
## Tests removing containers from the stack.
#
# \param container_stack A new container stack from a fixture.
def test_removeContainer(container_stack):
# First test the empty case.
with pytest.raises(IndexError):
container_stack.removeContainer(0)
# Now add data.
container0 = MockContainer()
container_stack.addContainer(container0)
with pytest.raises(IndexError):
container_stack.removeContainer(1)
with pytest.raises(IndexError):
container_stack.removeContainer(-1)
with pytest.raises(TypeError): # Curveball!
container_stack.removeContainer("test")
container_stack.removeContainer(0)
assert container_stack.getContainers() == []
# Multiple subcontainers.
container0 = MockContainer()
container1 = MockContainer()
container2 = MockContainer()
container_stack.addContainer(container0)
container_stack.addContainer(container1)
container_stack.addContainer(container2)
container_stack.removeContainer(1)
assert container_stack.getContainers() == [container2, container0]
## Tests replacing a container in the stack.
#
# \param container_stack A new container stack from a fixture.
def test_replaceContainer(container_stack):
# First test the empty case.
with pytest.raises(IndexError):
container_stack.replaceContainer(0, MockContainer())
# Now add data.
container0 = MockContainer()
container_stack.addContainer(container0)
container0_replacement = MockContainer()
with pytest.raises(IndexError):
container_stack.replaceContainer(1, container0_replacement)
with pytest.raises(IndexError):
container_stack.replaceContainer(-1, container0_replacement)
container_stack.replaceContainer(0, container0_replacement)
assert container_stack.getContainers() == [container0_replacement]
# Add multiple containers.
container1 = MockContainer()
container_stack.addContainer(container1)
container2 = MockContainer()
container_stack.addContainer(container2)
container1_replacement = MockContainer()
container_stack.replaceContainer(1, container1_replacement)
assert container_stack.getContainers() == [container2, container1_replacement, container0_replacement]
# Try to replace a container with itself.
with pytest.raises(Exception):
container_stack.replaceContainer(2, container_stack)
assert container_stack.getContainers() == [container2, container1_replacement, container0_replacement]
## Tests serialising and deserialising the container stack.
#
# \param container_stack A new container stack from a fixture.
def test_serialize(container_stack):
registry = ContainerRegistry.getInstance() # All containers need to be registered in order to be recovered again after deserialising.
# First test the empty container stack.
_test_serialize_cycle(container_stack)
# Case with one subcontainer.
container = InstanceContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
_test_serialize_cycle(container_stack)
# Case with two subcontainers.
container = InstanceContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container) # Already had one, if all previous assertions were correct.
_test_serialize_cycle(container_stack)
# Case with all types of subcontainers.
container = DefinitionContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
container = ContainerStack(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
_test_serialize_cycle(container_stack)
# With some metadata.
container_stack.getMetaData()["foo"] = "bar"
_test_serialize_cycle(container_stack)
# With a changed name.
container_stack.setName("Fred")
_test_serialize_cycle(container_stack)
# A name with special characters, to test the encoding.
container_stack.setName("ルベン")
_test_serialize_cycle(container_stack)
# Just to bully the one who implements this, a name with special characters in JSON and CFG.
container_stack.setName("=,\"")
_test_serialize_cycle(container_stack)
# A container that is not in the registry.
container_stack.addContainer(DefinitionContainer(str(uuid.uuid4())))
serialised = container_stack.serialize()
container_stack = ContainerStack(str(uuid.uuid4())) # Completely fresh container stack.
with pytest.raises(Exception):
container_stack.deserialize(serialised)
## Tests serialising and deserialising the container stack with certain metadata keys ignored.
#
# \param container_stack A new container stack from a fixture.
def test_serialize_with_ignored_metadata_keys(container_stack):
ignored_metadata_keys = {"secret"}
registry = ContainerRegistry.getInstance() # All containers need to be registered in order to be recovered again after deserialising.
# Case with one subcontainer.
container = InstanceContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
# Case with two subcontainers.
container = InstanceContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container) # Already had one, if all previous assertions were correct.
# Case with all types of subcontainers.
container = DefinitionContainer(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
container = ContainerStack(str(uuid.uuid4()))
registry.addContainer(container)
container_stack.addContainer(container)
# With some metadata.
container_stack.getMetaData()["foo"] = "bar"
for key in ignored_metadata_keys:
container_stack.getMetaData()[key] = "something"
_test_serialize_cycle(container_stack, ignored_metadata_keys = ignored_metadata_keys)
# With a changed name.
container_stack.setName("Fred")
_test_serialize_cycle(container_stack, ignored_metadata_keys = ignored_metadata_keys)
# A name with special characters, to test the encoding.
container_stack.setName("ルベン")
_test_serialize_cycle(container_stack, ignored_metadata_keys = ignored_metadata_keys)
# Just to bully the one who implements this, a name with special characters in JSON and CFG.
container_stack.setName("=,\"")
_test_serialize_cycle(container_stack, ignored_metadata_keys = ignored_metadata_keys)
# A container that is not in the registry.
container_stack.addContainer(DefinitionContainer(str(uuid.uuid4())))
serialised = container_stack.serialize()
container_stack = ContainerStack(str(uuid.uuid4())) # Completely fresh container stack.
with pytest.raises(Exception):
container_stack.deserialize(serialised)
## Tests whether changing the name of the stack has the proper effects.
#
# \param container_stack A new container stack from a fixture.
# \param application An application containing the thread handle for signals.
# Must be included for the signal to check against the main thread in
# auto-mode.
def test_setName(container_stack, application):
name_change_counter = 0
def increment_name_change_counter():
nonlocal name_change_counter
name_change_counter += 1
container_stack.nameChanged.connect(increment_name_change_counter) # To make sure it emits the signal.
different_name = "test"
if container_stack.getName() == different_name:
different_name = "tast" # Make sure it is actually different!
container_stack.setName(different_name)
assert container_stack.getName() == different_name # Name is correct.
assert name_change_counter == 1 # Correctly signalled once.
different_name += "_new" # Make it different again.
container_stack.setName(different_name)
assert container_stack.getName() == different_name # Name is updated again.
assert name_change_counter == 2 # Correctly signalled once again.
container_stack.setName(different_name) # Not different this time.
assert container_stack.getName() == different_name
assert name_change_counter == 2 # Didn't signal.
## Tests the next stack functionality.
#
# \param container_stack A new container stack from a fixture.
def test_setNextStack(container_stack):
container = MockContainer()
container_stack.setNextStack(container)
assert container_stack.getNextStack() == container
with pytest.raises(Exception):
container_stack.setNextStack(container_stack) # Can't set itself as next stack.
## Test backward compatibility of container config file format change
#
# This tests whether ContainerStack can still deserialize containers using the old
# format where we would have a single comma separated entry with the containers.
def test_backwardCompatibility(container_stack, container_registry):
container_a = MockContainer({"id" : "a"})
container_registry.addContainer(container_a) # Make sure this container isn't the one it complains about.
serialised = """
[general]
name = Test
id = testid
version = {version}
containers = a,a,a
""".format(version = ContainerStack.Version) # Old-style serialized stack
container_stack.deserialize(serialised)
assert container_stack.getContainers() == [container_a, container_a, container_a]
## Test serialization and deserialization of a stack with containers with special characters in their ID
#
def test_idSpecialCharacters(container_stack, container_registry):
container_ab = MockContainer({"id" : "a,b"}) # Comma used to break deserialize
container_registry.addContainer(container_ab)
serialized = """
[general]
name = Test
id = testid
version = {version}
containers = a,b
""".format(version = ContainerStack.Version)
with pytest.raises(Exception):
# Using old code, this would fail because it tries to add two containers, a and b.
container_stack.deserialize(serialized)
serialized = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = a,b
""".format(version = ContainerStack.Version)
container_stack.deserialize(serialized)
assert container_stack.getContainers() == [container_ab]
test_container_0 = MockContainer({"id": "= TestContainer with, some? Special $ Characters #12"})
container_registry.addContainer(test_container_0)
serialized = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = = TestContainer with, some? Special $ Characters #12
""".format(version = ContainerStack.Version)
container_stack.deserialize(serialized)
assert container_stack.getContainers() == [test_container_0]
test_container_1 = MockContainer({"id" : "☂℮﹩⊥ ḉ◎η☂αїη℮ґ"})
container_registry.addContainer(test_container_1)
# Special unicode characters are handled properly
serialized = """
[general]
name = Test
id = testid
version = {version}
[containers]
0 = ☂℮﹩⊥ ḉ◎η☂αїη℮ґ
""".format(version = ContainerStack.Version)
container_stack.deserialize(serialized)
assert container_stack.getContainers() == [test_container_1]
serialized = container_stack.serialize()
# Unfortunately, we cannot check that serialized == container_stack.serialized() due to dict
# having a random order.
assert "id = testid" in serialized
assert "name = Test" in serialized
assert "0 = ☂℮﹩⊥ ḉ◎η☂αїη℮ґ" in serialized
## Tests a single cycle of serialising and deserialising a container stack.
#
# This will serialise and then deserialise the container stack, and sees if
# the deserialised container stack is the same as the original one.
#
# \param container_stack The container stack to serialise and deserialise.
# \param ignored_metadata_keys The list of keys that should be ignored when serializing the container stack.
def _test_serialize_cycle(container_stack, ignored_metadata_keys: Optional[set] = None):
metadata = {key: value for key, value in container_stack.getMetaData().items()}
containers = container_stack.getContainers()
serialised = container_stack.serialize(ignored_metadata_keys = ignored_metadata_keys)
container_stack = ContainerStack(str(uuid.uuid4())) # Completely fresh container stack.
container_stack.deserialize(serialised)
# Remove ignored keys from metadata dict
if ignored_metadata_keys:
for key in ignored_metadata_keys:
if key in metadata:
del metadata[key]
# ID and nextStack are allowed to be different.
assert metadata.items() <= container_stack.getMetaData().items()
assert containers == container_stack.getContainers()
def test_getSetReadOnly(container_stack):
container_stack.setReadOnly(True)
assert container_stack.isReadOnly()
container_stack.setReadOnly(False)
assert not container_stack.isReadOnly()
def test_isSetDirty(container_stack):
assert not container_stack.isDirty()
container_stack.setDirty(True)
assert container_stack.isDirty()
def test_getSetPath(container_stack):
container_stack.setPath("OMG")
assert container_stack.getPath() == "OMG"
def test_getHasErrors(container_stack):
definition_container = DefinitionContainer(str(uuid.uuid4()))
container_stack.addContainer(definition_container)
definition_container.getAllKeys = MagicMock(return_value = {"test_key"})
container = MagicMock()
container_stack.addContainer(container)
# We won't get any wrong validation states, so it shouldn't have errors.
assert not container_stack.hasErrors()
# Fake the property so it does return validation state
container_stack.getProperty = MagicMock(return_value = ValidatorState.MaximumError)
assert container_stack.hasErrors() # Now the container stack has errors!
assert container_stack.getErrorKeys() == ["test_key"]
|