mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 14:23:53 +00:00
Fixed test after b035129
This commit is contained in:
@@ -156,26 +156,31 @@ Scenario: Unassign material - material layer set
|
|||||||
When I press "bim.unassign_material"
|
When I press "bim.unassign_material"
|
||||||
Then nothing happens
|
Then nothing happens
|
||||||
|
|
||||||
Scenario: Unassign material - material layer set usages will not be removed
|
Scenario: Unassign material - removing inherited material
|
||||||
Given an empty IFC project
|
Given an empty IFC project
|
||||||
And I add a cube
|
And I add a cube
|
||||||
And the object "Cube" is selected
|
And the object "Cube" is selected
|
||||||
And I set "scene.BIMRootProperties.ifc_class" to "IfcWall"
|
And I set "scene.BIMRootProperties.ifc_class" to "IfcWall"
|
||||||
And I press "bim.assign_class"
|
And I press "bim.assign_class"
|
||||||
|
|
||||||
And I add an empty
|
And I add an empty
|
||||||
And the object "Empty" is selected
|
And the object "Empty" is selected
|
||||||
And I set "scene.BIMRootProperties.ifc_product" to "IfcElementType"
|
And I set "scene.BIMRootProperties.ifc_product" to "IfcElementType"
|
||||||
And I set "scene.BIMRootProperties.ifc_class" to "IfcWallType"
|
And I set "scene.BIMRootProperties.ifc_class" to "IfcWallType"
|
||||||
And I press "bim.assign_class"
|
And I press "bim.assign_class"
|
||||||
|
|
||||||
And I press "bim.add_material(obj='')"
|
And I press "bim.add_material(obj='')"
|
||||||
And I set "active_object.BIMObjectMaterialProperties.material_type" to "IfcMaterialLayerSet"
|
And I set "active_object.BIMObjectMaterialProperties.material_type" to "IfcMaterialLayerSet"
|
||||||
And I press "bim.assign_material"
|
And I press "bim.assign_material"
|
||||||
|
|
||||||
And the object "IfcWall/Cube" is selected
|
And the object "IfcWall/Cube" is selected
|
||||||
When the variable "type" is "{ifc}.by_type('IfcWallType')[0].id()"
|
When the variable "type" is "{ifc}.by_type('IfcWallType')[0].id()"
|
||||||
And I press "bim.assign_type(relating_type={type}, related_object='IfcWall/Cube')"
|
And I press "bim.assign_type(relating_type={type}, related_object='IfcWall/Cube')"
|
||||||
|
|
||||||
Then the object "IfcWall/Cube" has a "100" thick layered material containing the material "Default"
|
Then the object "IfcWall/Cube" has a "100" thick layered material containing the material "Default"
|
||||||
|
|
||||||
When I press "bim.unassign_material"
|
When I press "bim.unassign_material"
|
||||||
Then the object "IfcWall/Cube" has a "100" thick layered material containing the material "Default"
|
Then the object "IfcWall/Cube" has no IFC materials
|
||||||
|
|
||||||
Scenario: Enable editing assigned material - material layer set
|
Scenario: Enable editing assigned material - material layer set
|
||||||
Given an empty IFC project
|
Given an empty IFC project
|
||||||
|
|||||||
@@ -600,6 +600,12 @@ def the_object_name_has_a_thickness_thick_layered_material_containing_the_materi
|
|||||||
assert is_x(total_thickness, float(thickness))
|
assert is_x(total_thickness, float(thickness))
|
||||||
assert material_name in material_names
|
assert material_name in material_names
|
||||||
|
|
||||||
|
@then(parsers.parse('the object "{name}" has no IFC materials'))
|
||||||
|
def the_object_has_no_ifc_materials(name):
|
||||||
|
element = tool.Ifc.get_entity(the_object_name_exists(name))
|
||||||
|
material = ifcopenshell.util.element.get_material(element)
|
||||||
|
assert material is None
|
||||||
|
|
||||||
|
|
||||||
@then(
|
@then(
|
||||||
parsers.parse(
|
parsers.parse(
|
||||||
|
|||||||
Reference in New Issue
Block a user