123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- # Copyright (c) 2017 Ultimaker B.V.
- # Cura is released under the terms of the LGPLv3 or higher.
- import pytest #This module contains automated tests.
- import unittest.mock #For the mocking and monkeypatching functionality.
- import copy
- import cura.CuraApplication
- import UM.Settings.ContainerRegistry #To create empty instance containers.
- import UM.Settings.ContainerStack #To set the container registry the container stacks use.
- from UM.Settings.DefinitionContainer import DefinitionContainer #To check against the class of DefinitionContainer.
- from UM.Settings.InstanceContainer import InstanceContainer #To check against the class of InstanceContainer.
- import cura.Settings.ExtruderStack #The module we're testing.
- from cura.Settings.Exceptions import InvalidContainerError, InvalidOperationError #To check whether the correct exceptions are raised.
- from cura.Settings.ExtruderManager import ExtruderManager
- from UM.Settings.ContainerRegistry import ContainerRegistry
- ## Fake container registry that always provides all containers you ask of.
- @pytest.yield_fixture()
- def container_registry():
- registry = unittest.mock.MagicMock()
- registry.return_value = unittest.mock.NonCallableMagicMock()
- registry.findInstanceContainers = lambda *args, registry = registry, **kwargs: [registry.return_value]
- registry.findDefinitionContainers = lambda *args, registry = registry, **kwargs: [registry.return_value]
- UM.Settings.ContainerRegistry.ContainerRegistry._ContainerRegistry__instance = registry
- UM.Settings.ContainerStack._containerRegistry = registry
- yield registry
- UM.Settings.ContainerRegistry.ContainerRegistry._ContainerRegistry__instance = None
- UM.Settings.ContainerStack._containerRegistry = None
- ## An empty extruder stack to test with.
- @pytest.fixture()
- def extruder_stack() -> cura.Settings.ExtruderStack.ExtruderStack:
- creteEmptyContainers()
- return cura.Settings.ExtruderStack.ExtruderStack("TestStack")
- ## Gets an instance container with a specified container type.
- #
- # \param container_type The type metadata for the instance container.
- # \return An instance container instance.
- def getInstanceContainer(container_type) -> InstanceContainer:
- container = InstanceContainer(container_id = "InstanceContainer")
- container.addMetaDataEntry("type", container_type)
- return container
- def creteEmptyContainers():
- empty_container = ContainerRegistry.getInstance().getEmptyInstanceContainer()
- empty_variant_container = copy.deepcopy(empty_container)
- empty_variant_container.setMetaDataEntry("id", "empty_variant")
- empty_variant_container.addMetaDataEntry("type", "variant")
- ContainerRegistry.getInstance().addContainer(empty_variant_container)
- empty_material_container = copy.deepcopy(empty_container)
- empty_material_container.setMetaDataEntry("id", "empty_material")
- empty_material_container.addMetaDataEntry("type", "material")
- ContainerRegistry.getInstance().addContainer(empty_material_container)
- empty_quality_container = copy.deepcopy(empty_container)
- empty_quality_container.setMetaDataEntry("id", "empty_quality")
- empty_quality_container.setName("Not Supported")
- empty_quality_container.addMetaDataEntry("quality_type", "not_supported")
- empty_quality_container.addMetaDataEntry("type", "quality")
- empty_quality_container.addMetaDataEntry("supported", False)
- ContainerRegistry.getInstance().addContainer(empty_quality_container)
- empty_quality_changes_container = copy.deepcopy(empty_container)
- empty_quality_changes_container.setMetaDataEntry("id", "empty_quality_changes")
- empty_quality_changes_container.addMetaDataEntry("type", "quality_changes")
- ContainerRegistry.getInstance().addContainer(empty_quality_changes_container)
- class DefinitionContainerSubClass(DefinitionContainer):
- def __init__(self):
- super().__init__(container_id = "SubDefinitionContainer")
- class InstanceContainerSubClass(InstanceContainer):
- def __init__(self, container_type):
- super().__init__(container_id = "SubInstanceContainer")
- self.addMetaDataEntry("type", container_type)
- #############################START OF TEST CASES################################
- ## Tests whether adding a container is properly forbidden.
- def test_addContainer(extruder_stack):
- with pytest.raises(InvalidOperationError):
- extruder_stack.addContainer(unittest.mock.MagicMock())
- #Tests setting user changes profiles to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong container type"),
- getInstanceContainer(container_type = "material"), #Existing, but still wrong type.
- DefinitionContainer(container_id = "wrong class")
- ])
- def test_constrainUserChangesInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.userChanges = container
- #Tests setting user changes profiles.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "user"),
- InstanceContainerSubClass(container_type = "user")
- ])
- def test_constrainUserChangesValid(container, extruder_stack):
- extruder_stack.userChanges = container #Should not give an error.
- #Tests setting quality changes profiles to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong container type"),
- getInstanceContainer(container_type = "material"), #Existing, but still wrong type.
- DefinitionContainer(container_id = "wrong class")
- ])
- def test_constrainQualityChangesInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.qualityChanges = container
- #Test setting quality changes profiles.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "quality_changes"),
- InstanceContainerSubClass(container_type = "quality_changes")
- ])
- def test_constrainQualityChangesValid(container, extruder_stack):
- extruder_stack.qualityChanges = container #Should not give an error.
- #Tests setting quality profiles to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong container type"),
- getInstanceContainer(container_type = "material"), #Existing, but still wrong type.
- DefinitionContainer(container_id = "wrong class")
- ])
- def test_constrainQualityInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.quality = container
- #Test setting quality profiles.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "quality"),
- InstanceContainerSubClass(container_type = "quality")
- ])
- def test_constrainQualityValid(container, extruder_stack):
- extruder_stack.quality = container #Should not give an error.
- #Tests setting materials to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong container type"),
- getInstanceContainer(container_type = "quality"), #Existing, but still wrong type.
- DefinitionContainer(container_id = "wrong class")
- ])
- def test_constrainMaterialInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.material = container
- #Test setting materials.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "material"),
- InstanceContainerSubClass(container_type = "material")
- ])
- def test_constrainMaterialValid(container, extruder_stack):
- extruder_stack.material = container #Should not give an error.
- #Tests setting variants to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong container type"),
- getInstanceContainer(container_type = "material"), #Existing, but still wrong type.
- DefinitionContainer(container_id = "wrong class")
- ])
- def test_constrainVariantInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.variant = container
- #Test setting variants.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "variant"),
- InstanceContainerSubClass(container_type = "variant")
- ])
- def test_constrainVariantValid(container, extruder_stack):
- extruder_stack.variant = container #Should not give an error.
- #Tests setting definitions to invalid containers.
- @pytest.mark.parametrize("container", [
- getInstanceContainer(container_type = "wrong class"),
- getInstanceContainer(container_type = "material"), #Existing, but still wrong class.
- ])
- def test_constrainVariantInvalid(container, extruder_stack):
- with pytest.raises(InvalidContainerError): #Invalid container, should raise an error.
- extruder_stack.definition = container
- #Test setting definitions.
- @pytest.mark.parametrize("container", [
- DefinitionContainer(container_id = "DefinitionContainer"),
- DefinitionContainerSubClass()
- ])
- def test_constrainDefinitionValid(container, extruder_stack):
- extruder_stack.definition = container #Should not give an error.
- ## Tests whether deserialising completes the missing containers with empty
- # ones.
- @pytest.mark.skip #The test currently fails because the definition container doesn't have a category, which is wrong but we don't have time to refactor that right now.
- def test_deserializeCompletesEmptyContainers(extruder_stack: cura.Settings.ExtruderStack):
- extruder_stack._containers = [DefinitionContainer(container_id = "definition")] #Set the internal state of this stack manually.
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- extruder_stack.deserialize("")
- assert len(extruder_stack.getContainers()) == len(cura.Settings.CuraContainerStack._ContainerIndexes.IndexTypeMap) #Needs a slot for every type.
- for container_type_index in cura.Settings.CuraContainerStack._ContainerIndexes.IndexTypeMap:
- if container_type_index == cura.Settings.CuraContainerStack._ContainerIndexes.Definition: #We're not checking the definition.
- continue
- assert extruder_stack.getContainer(container_type_index).getId() == "empty" #All others need to be empty.
- ## Tests whether an instance container with the wrong type gets removed when
- # deserialising.
- def test_deserializeRemovesWrongInstanceContainer(extruder_stack):
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = getInstanceContainer(container_type = "wrong type")
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Definition] = DefinitionContainer(container_id = "some definition")
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- extruder_stack.deserialize("")
- assert extruder_stack.quality == extruder_stack._empty_instance_container #Replaced with empty.
- ## Tests whether a container with the wrong class gets removed when
- # deserialising.
- def test_deserializeRemovesWrongContainerClass(extruder_stack):
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = DefinitionContainer(container_id = "wrong class")
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Definition] = DefinitionContainer(container_id = "some definition")
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- extruder_stack.deserialize("")
- assert extruder_stack.quality == extruder_stack._empty_instance_container #Replaced with empty.
- ## Tests whether an instance container in the definition spot results in an
- # error.
- def test_deserializeWrongDefinitionClass(extruder_stack):
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Definition] = getInstanceContainer(container_type = "definition") #Correct type but wrong class.
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- with pytest.raises(UM.Settings.ContainerStack.InvalidContainerStackError): #Must raise an error that there is no definition container.
- extruder_stack.deserialize("")
- ## Tests whether an instance container with the wrong type is moved into the
- # correct slot by deserialising.
- def test_deserializeMoveInstanceContainer(extruder_stack):
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Quality] = getInstanceContainer(container_type = "material") #Not in the correct spot.
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Definition] = DefinitionContainer(container_id = "some definition")
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- extruder_stack.deserialize("")
- assert extruder_stack.quality.getId() == "empty"
- assert extruder_stack.material.getId() != "empty"
- ## Tests whether a definition container in the wrong spot is moved into the
- # correct spot by deserialising.
- @pytest.mark.skip #The test currently fails because the definition container doesn't have a category, which is wrong but we don't have time to refactor that right now.
- def test_deserializeMoveDefinitionContainer(extruder_stack):
- extruder_stack._containers[cura.Settings.CuraContainerStack._ContainerIndexes.Material] = DefinitionContainer(container_id = "some definition") #Not in the correct spot.
- with unittest.mock.patch("UM.Settings.ContainerStack.ContainerStack.deserialize", unittest.mock.MagicMock()): #Prevent calling super().deserialize.
- extruder_stack.deserialize("")
- assert extruder_stack.material.getId() == "empty"
- assert extruder_stack.definition.getId() != "empty"
- UM.Settings.ContainerStack._containerRegistry = None
- ## Tests whether getProperty properly applies the stack-like behaviour on its
- # containers.
- def test_getPropertyFallThrough(extruder_stack):
- # ExtruderStack.setNextStack calls registerExtruder for backward compatibility, but we do not need a complete extruder manager
- ExtruderManager._ExtruderManager__instance = unittest.mock.MagicMock()
- #A few instance container mocks to put in the stack.
- mock_layer_heights = {} #For each container type, a mock container that defines layer height to something unique.
- mock_no_settings = {} #For each container type, a mock container that has no settings at all.
- container_indices = cura.Settings.CuraContainerStack._ContainerIndexes #Cache.
- for type_id, type_name in container_indices.IndexTypeMap.items():
- container = unittest.mock.MagicMock()
- # Return type_id when asking for value and -1 when asking for limit_to_extruder
- container.getProperty = lambda key, property, context = None, type_id = type_id: type_id if (key == "layer_height" and property == "value") else (None if property != "limit_to_extruder" else "-1") #Returns the container type ID as layer height, in order to identify it.
- container.hasProperty = lambda key, property: key == "layer_height"
- container.getMetaDataEntry = unittest.mock.MagicMock(return_value = type_name)
- mock_layer_heights[type_id] = container
- container = unittest.mock.MagicMock()
- container.getProperty = unittest.mock.MagicMock(return_value = None) #Has no settings at all.
- container.hasProperty = unittest.mock.MagicMock(return_value = False)
- container.getMetaDataEntry = unittest.mock.MagicMock(return_value = type_name)
- mock_no_settings[type_id] = container
- extruder_stack.userChanges = mock_no_settings[container_indices.UserChanges]
- extruder_stack.qualityChanges = mock_no_settings[container_indices.QualityChanges]
- extruder_stack.quality = mock_no_settings[container_indices.Quality]
- extruder_stack.material = mock_no_settings[container_indices.Material]
- extruder_stack.variant = mock_no_settings[container_indices.Variant]
- with unittest.mock.patch("cura.Settings.CuraContainerStack.DefinitionContainer", unittest.mock.MagicMock): #To guard against the type checking.
- extruder_stack.definition = mock_layer_heights[container_indices.Definition] #There's a layer height in here!
- extruder_stack.setNextStack(unittest.mock.MagicMock())
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.Definition
- extruder_stack.variant = mock_layer_heights[container_indices.Variant]
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.Variant
- extruder_stack.material = mock_layer_heights[container_indices.Material]
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.Material
- extruder_stack.quality = mock_layer_heights[container_indices.Quality]
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.Quality
- extruder_stack.qualityChanges = mock_layer_heights[container_indices.QualityChanges]
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.QualityChanges
- extruder_stack.userChanges = mock_layer_heights[container_indices.UserChanges]
- assert extruder_stack.getProperty("layer_height", "value") == container_indices.UserChanges
- ## Tests whether inserting a container is properly forbidden.
- def test_insertContainer(extruder_stack):
- with pytest.raises(InvalidOperationError):
- extruder_stack.insertContainer(0, unittest.mock.MagicMock())
- ## Tests whether removing a container is properly forbidden.
- def test_removeContainer(extruder_stack):
- with pytest.raises(InvalidOperationError):
- extruder_stack.removeContainer(unittest.mock.MagicMock())
- ## Tests setting definitions by specifying an ID of a definition that exists.
- def test_setDefinitionByIdExists(extruder_stack, container_registry):
- container_registry.return_value = DefinitionContainer(container_id = "some_definition")
- extruder_stack.setDefinitionById("some_definition")
- assert extruder_stack.definition.getId() == "some_definition"
- ## Tests setting definitions by specifying an ID of a definition that doesn't
- # exist.
- def test_setDefinitionByIdDoesntExist(extruder_stack):
- with pytest.raises(InvalidContainerError):
- extruder_stack.setDefinitionById("some_definition") #Container registry is empty now.
- ## Tests setting materials by specifying an ID of a material that exists.
- def test_setMaterialByIdExists(extruder_stack, container_registry):
- container_registry.return_value = getInstanceContainer(container_type = "material")
- extruder_stack.setMaterialById("InstanceContainer")
- assert extruder_stack.material.getId() == "InstanceContainer"
- ## Tests setting materials by specifying an ID of a material that doesn't
- # exist.
- def test_setMaterialByIdDoesntExist(extruder_stack):
- with pytest.raises(InvalidContainerError):
- extruder_stack.setMaterialById("some_material") #Container registry is empty now.
- ## Tests setting properties directly on the extruder stack.
- @pytest.mark.parametrize("key, property, value", [
- ("layer_height", "value", 0.1337),
- ("foo", "value", 100),
- ("support_enabled", "value", True),
- ("layer_height", "default_value", 0.1337),
- ("layer_height", "is_bright_pink", "of course")
- ])
- def test_setPropertyUser(key, property, value, extruder_stack):
- user_changes = unittest.mock.MagicMock()
- user_changes.getMetaDataEntry = unittest.mock.MagicMock(return_value = "user")
- extruder_stack.userChanges = user_changes
- extruder_stack.setProperty(key, property, value) #The actual test.
- extruder_stack.userChanges.setProperty.assert_called_once_with(key, property, value) #Make sure that the user container gets a setProperty call.
- ## Tests setting properties on specific containers on the global stack.
- @pytest.mark.parametrize("target_container, stack_variable", [
- ("user", "userChanges"),
- ("quality_changes", "qualityChanges"),
- ("quality", "quality"),
- ("material", "material"),
- ("variant", "variant")
- ])
- def test_setPropertyOtherContainers(target_container, stack_variable, extruder_stack):
- #Other parameters that don't need to be varied.
- key = "layer_height"
- property = "value"
- value = 0.1337
- #A mock container in the right spot.
- container = unittest.mock.MagicMock()
- container.getMetaDataEntry = unittest.mock.MagicMock(return_value = target_container)
- setattr(extruder_stack, stack_variable, container) #For instance, set global_stack.qualityChanges = container.
- extruder_stack.setProperty(key, property, value, target_container = target_container) #The actual test.
- getattr(extruder_stack, stack_variable).setProperty.assert_called_once_with(key, property, value) #Make sure that the proper container gets a setProperty call.
- ## Tests setting qualities by specifying an ID of a quality that exists.
- def test_setQualityByIdExists(extruder_stack, container_registry):
- container_registry.return_value = getInstanceContainer(container_type = "quality")
- extruder_stack.setQualityById("InstanceContainer")
- assert extruder_stack.quality.getId() == "InstanceContainer"
- ## Tests setting qualities by specifying an ID of a quality that doesn't exist.
- def test_setQualityByIdDoesntExist(extruder_stack):
- with pytest.raises(InvalidContainerError):
- extruder_stack.setQualityById("some_quality") #Container registry is empty now.
- ## Tests setting quality changes by specifying an ID of a quality change that
- # exists.
- def test_setQualityChangesByIdExists(extruder_stack, container_registry):
- container_registry.return_value = getInstanceContainer(container_type = "quality_changes")
- extruder_stack.setQualityChangesById("InstanceContainer")
- assert extruder_stack.qualityChanges.getId() == "InstanceContainer"
- ## Tests setting quality changes by specifying an ID of a quality change that
- # doesn't exist.
- def test_setQualityChangesByIdDoesntExist(extruder_stack):
- with pytest.raises(InvalidContainerError):
- extruder_stack.setQualityChangesById("some_quality_changes") #Container registry is empty now.
- ## Tests setting variants by specifying an ID of a variant that exists.
- def test_setVariantByIdExists(extruder_stack, container_registry):
- container_registry.return_value = getInstanceContainer(container_type = "variant")
- extruder_stack.setVariantById("InstanceContainer")
- assert extruder_stack.variant.getId() == "InstanceContainer"
- ## Tests setting variants by specifying an ID of a variant that doesn't exist.
- def test_setVariantByIdDoesntExist(extruder_stack):
- with pytest.raises(InvalidContainerError):
- extruder_stack.setVariantById("some_variant") #Container registry is empty now.
|