Replace all ifcopenshell.api.run with ifcopenshell.api static functions.

This commit is contained in:
Dion Moult
2024-06-28 12:36:31 +10:00
parent b5d613989e
commit 07060fc769
432 changed files with 4633 additions and 4856 deletions
@@ -17,48 +17,54 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.pset
import ifcopenshell.api.root
import ifcopenshell.api.type
import ifcopenshell.api.cost
import ifcopenshell.api.void
import ifcopenshell.api.style
import ifcopenshell.api.context
import ifcopenshell.api.project
import ifcopenshell.api.material
import ifcopenshell.util.element
class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
def test_do_not_append_twice(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
schedule = ifcopenshell.api.run("cost.add_cost_schedule", library, name="Schedule")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
schedule = ifcopenshell.api.cost.add_cost_schedule(library, name="Schedule")
profile = library.createIfcIShapeProfileDef()
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=schedule)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=schedule)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=profile)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=profile)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=schedule)
ifcopenshell.api.project.append_asset(self.file, library=library, element=schedule)
ifcopenshell.api.project.append_asset(self.file, library=library, element=profile)
ifcopenshell.api.project.append_asset(self.file, library=library, element=profile)
assert len(self.file.by_type("IfcWallType")) == 1
def test_append_a_type_product(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert len(self.file.by_type("IfcWallType")) == 1
def test_reuse_an_existing_context_if_it_was_added_from_library_previously(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
project = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
lib_context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
project = ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
lib_context = ifcopenshell.api.context.add_context(library, context_type="Model")
self.file.add(project) # will add project and it's contexts
material = ifcopenshell.api.run("material.add_material", library, name="Material")
style = ifcopenshell.api.run("style.add_style", library)
ifcopenshell.api.run(
"style.assign_material_style", library, material=material, style=style, context=lib_context
)
material = ifcopenshell.api.material.add_material(library, name="Material")
style = ifcopenshell.api.style.add_style(library)
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=lib_context)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 1
context = self.file.by_type("IfcMaterial")[0].HasRepresentation[0].Representations[0].ContextOfItems
@@ -66,61 +72,61 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
assert context.WorldCoordinateSystem
def test_append_a_single_type_product_even_though_an_inverse_material_relationship_is_shared(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element2], material=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
ifcopenshell.api.material.assign_material(library, products=[element2], material=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert len(self.file.by_type("IfcWallType")) == 1
def test_append_a_type_product_with_its_materials(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert self.file.by_type("IfcWallType")[0].HasAssociations[0].RelatingMaterial.Name == "Material"
def test_append_a_type_product_where_its_inverse_material_relationship_refers_to_products_not_in_scope(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", library, related_objects=[element], relating_type=element_type)
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element_type], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element_type2], material=material)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element_type = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
ifcopenshell.api.type.assign_type(library, related_objects=[element], relating_type=element_type)
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
ifcopenshell.api.material.assign_material(library, products=[element_type], material=material)
ifcopenshell.api.material.assign_material(library, products=[element_type2], material=material)
# appending another type not connected to IfcWall directly
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element_type2)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element_type2)
assert set(self.file.by_type("IfcWall")) == set()
# appending type of IfcWall
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element_type2)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element_type2)
assert set(self.file.by_type("IfcWall")) == set()
def test_append_two_type_products_sharing_the_same_material_indirectly_via_a_material_set(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element1 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element1 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
layer_set1 = ifcopenshell.api.run("material.add_material_set", library, set_type="IfcMaterialLayerSet")
ifcopenshell.api.run("material.add_layer", library, layer_set=layer_set1, material=material)
ifcopenshell.api.run("material.add_layer", library, layer_set=layer_set1, material=material)
layer_set1 = ifcopenshell.api.material.add_material_set(library, set_type="IfcMaterialLayerSet")
ifcopenshell.api.material.add_layer(library, layer_set=layer_set1, material=material)
ifcopenshell.api.material.add_layer(library, layer_set=layer_set1, material=material)
layer_set2 = ifcopenshell.api.run("material.add_material_set", library, set_type="IfcMaterialLayerSet")
ifcopenshell.api.run("material.add_layer", library, layer_set=layer_set2, material=material)
ifcopenshell.api.run("material.add_layer", library, layer_set=layer_set2, material=material)
layer_set2 = ifcopenshell.api.material.add_material_set(library, set_type="IfcMaterialLayerSet")
ifcopenshell.api.material.add_layer(library, layer_set=layer_set2, material=material)
ifcopenshell.api.material.add_layer(library, layer_set=layer_set2, material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element1], material=layer_set1)
ifcopenshell.api.run("material.assign_material", library, products=[element2], material=layer_set2)
ifcopenshell.api.material.assign_material(library, products=[element1], material=layer_set1)
ifcopenshell.api.material.assign_material(library, products=[element2], material=layer_set2)
new1 = ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element1)
new2 = ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element2)
new1 = ifcopenshell.api.project.append_asset(self.file, library=library, element=element1)
new2 = ifcopenshell.api.project.append_asset(self.file, library=library, element=element2)
material = self.file.by_type("IfcMaterial")[0]
assert ifcopenshell.util.element.get_material(new1).MaterialLayers[0].Material == material
@@ -129,13 +135,13 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
assert ifcopenshell.util.element.get_material(new2).MaterialLayers[1].Material == material
def test_append_a_type_product_with_its_styles(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
history = library.createIfcOwnerHistory()
element.OwnerHistory = history
material = ifcopenshell.api.run("material.add_material", library, name="Material")
rel = ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
material = ifcopenshell.api.material.add_material(library, name="Material")
rel = ifcopenshell.api.material.assign_material(library, products=[element], material=material)
# We share a history. This ensures that we continue to check all
# whitelisted inverses even though one of the subelements (i.e. this
# shared history) is already processed. See bug #2837.
@@ -145,13 +151,13 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
library.createIfcStyledItem(Item=item)
mapped_rep = library.createIfcShapeRepresentation(Items=[item])
element.RepresentationMaps = [library.createIfcRepresentationMap(MappedRepresentation=mapped_rep)]
new = ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
new = ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert len(new.RepresentationMaps[0].MappedRepresentation.Items[0].StyledByItem) == 1
assert self.file.by_type("IfcStyledItem")[0].Item == self.file.by_type("IfcBoundingBox")[0]
def test_append_product_with_styles_to_reuse_styleditems(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element_type = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element_type = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
history = library.createIfcOwnerHistory()
element_type.OwnerHistory = history
item = library.createIfcBoundingBox()
@@ -160,63 +166,63 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
mapped_rep = library.createIfcShapeRepresentation(Items=[item], ContextOfItems=context)
element_type.RepresentationMaps = [library.createIfcRepresentationMap(MappedRepresentation=mapped_rep)]
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
ifcopenshell.api.run("type.assign_type", library, related_objects=[element], relating_type=element_type)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
ifcopenshell.api.type.assign_type(library, related_objects=[element], relating_type=element_type)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert len(self.file.by_type("IfcStyledItem")) == 1
def test_append_a_type_product_with_a_styled_materials(self):
ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProject")
local_context = ifcopenshell.api.run("context.add_context", self.file, context_type="Model")
ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
local_context = ifcopenshell.api.context.add_context(self.file, context_type="Model")
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
context = ifcopenshell.api.context.add_context(library, context_type="Model")
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
style = ifcopenshell.api.run("style.add_style", library)
ifcopenshell.api.run("style.assign_material_style", library, material=material, style=style, context=context)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
style = ifcopenshell.api.style.add_style(library)
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=context)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert self.file.by_type("IfcWallType")[0].HasAssociations[0].RelatingMaterial.Name == "Material"
assert self.file.by_type("IfcWallType")[0].HasAssociations[0].RelatingMaterial.HasRepresentation
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 1
def test_append_a_material(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
def test_append_a_material_with_a_representation(self):
ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProject")
ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
style = ifcopenshell.api.run("style.add_style", library)
context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
ifcopenshell.api.run("style.assign_material_style", library, material=material, style=style, context=context)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
material = ifcopenshell.api.material.add_material(library, name="Material")
style = ifcopenshell.api.style.add_style(library)
context = ifcopenshell.api.context.add_context(library, context_type="Model")
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=context)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 1
context = self.file.by_type("IfcMaterial")[0].HasRepresentation[0].Representations[0].ContextOfItems
assert context.ContextType == "Model"
def test_append_a_material_with_a_representation_and_reuse_an_existing_context(self):
ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.run("context.add_context", self.file, context_type="Model")
ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.context.add_context(self.file, context_type="Model")
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
style = ifcopenshell.api.run("style.add_style", library)
context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
ifcopenshell.api.run("style.assign_material_style", library, material=material, style=style, context=context)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
material = ifcopenshell.api.material.add_material(library, name="Material")
style = ifcopenshell.api.style.add_style(library)
context = ifcopenshell.api.context.add_context(library, context_type="Model")
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=context)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 1
context = self.file.by_type("IfcMaterial")[0].HasRepresentation[0].Representations[0].ContextOfItems
@@ -225,10 +231,9 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
assert context.WorldCoordinateSystem
def test_append_a_material_with_a_representation_and_reuse_an_existing_subcontext(self):
ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.run("context.add_context", self.file, context_type="Model")
file_subcontext = ifcopenshell.api.run(
"context.add_context",
ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.context.add_context(self.file, context_type="Model")
file_subcontext = ifcopenshell.api.context.add_context(
self.file,
parent=file_context,
context_type="Model",
@@ -236,21 +241,20 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
target_view="MODEL_VIEW",
)
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
style = ifcopenshell.api.run("style.add_style", library)
context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
subcontext = ifcopenshell.api.run(
"context.add_context",
library = ifcopenshell.api.project.create_file(version=self.file.schema)
ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
material = ifcopenshell.api.material.add_material(library, name="Material")
style = ifcopenshell.api.style.add_style(library)
context = ifcopenshell.api.context.add_context(library, context_type="Model")
subcontext = ifcopenshell.api.context.add_context(
library,
parent=context,
context_type="Model",
context_identifier="Body",
target_view="MODEL_VIEW",
)
ifcopenshell.api.run("style.assign_material_style", library, material=material, style=style, context=subcontext)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=subcontext)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
assert len(self.file.by_type("IfcGeometricRepresentationContext", include_subtypes=False)) == 1
assert len(self.file.by_type("IfcGeometricRepresentationSubContext", include_subtypes=False)) == 1
@@ -260,24 +264,23 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
assert subcontext.ParentContext.WorldCoordinateSystem
def test_append_a_material_with_a_representation_and_reuse_an_existing_context_by_a_new_subcontext(self):
ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.run("context.add_context", self.file, context_type="Model")
ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
file_context = ifcopenshell.api.context.add_context(self.file, context_type="Model")
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcProject")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
style = ifcopenshell.api.run("style.add_style", library)
context = ifcopenshell.api.run("context.add_context", library, context_type="Model")
subcontext = ifcopenshell.api.run(
"context.add_context",
library = ifcopenshell.api.project.create_file(version=self.file.schema)
ifcopenshell.api.root.create_entity(library, ifc_class="IfcProject")
material = ifcopenshell.api.material.add_material(library, name="Material")
style = ifcopenshell.api.style.add_style(library)
context = ifcopenshell.api.context.add_context(library, context_type="Model")
subcontext = ifcopenshell.api.context.add_context(
library,
context_type="Model",
context_identifier="Body",
target_view="MODEL_VIEW",
parent=context,
)
ifcopenshell.api.run("style.assign_material_style", library, material=material, style=style, context=subcontext)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=material)
ifcopenshell.api.style.assign_material_style(library, material=material, style=style, context=subcontext)
ifcopenshell.api.project.append_asset(self.file, library=library, element=material)
assert len(self.file.by_type("IfcMaterial")) == 1
assert len(self.file.by_type("IfcGeometricRepresentationContext", include_subtypes=False)) == 1
assert len(self.file.by_type("IfcGeometricRepresentationSubContext", include_subtypes=False)) == 1
@@ -288,83 +291,83 @@ class TestAppendAssetIFC2X3(test.bootstrap.IFC2X3):
assert subcontext.ParentContext == file_context
def test_append_a_profile_def(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
profile = library.createIfcIShapeProfileDef()
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=profile)
ifcopenshell.api.project.append_asset(self.file, library=library, element=profile)
assert len(self.file.by_type("IfcIShapeProfileDef")) == 1
def test_append_a_product(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert len(self.file.by_type("IfcWall")) == 1
def test_append_a_product_with_all_properties(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
ifcopenshell.api.run("pset.add_pset", library, product=element, name="Foo_Bar")
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
ifcopenshell.api.pset.add_pset(library, product=element, name="Foo_Bar")
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert ifcopenshell.util.element.get_psets(self.file.by_type("IfcWall")[0])["Foo_Bar"]
def test_append_a_product_with_its_type(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", library, related_objects=[element], relating_type=element_type)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element_type = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
ifcopenshell.api.type.assign_type(library, related_objects=[element], relating_type=element_type)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert ifcopenshell.util.element.get_type(self.file.by_type("IfcWall")[0]).is_a("IfcWallType")
def test_append_only_specified_occurrences_of_a_typed_product(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element3 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", library, related_objects=[element], relating_type=element_type)
ifcopenshell.api.run("type.assign_type", library, related_objects=[element2], relating_type=element_type)
ifcopenshell.api.run("type.assign_type", library, related_objects=[element3], relating_type=element_type)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element2)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element3 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element_type = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
ifcopenshell.api.type.assign_type(library, related_objects=[element], relating_type=element_type)
ifcopenshell.api.type.assign_type(library, related_objects=[element2], relating_type=element_type)
ifcopenshell.api.type.assign_type(library, related_objects=[element3], relating_type=element_type)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element2)
assert len(ifcopenshell.util.element.get_types(self.file.by_type("IfcWallType")[0])) == 2
assert len(self.file.by_type("IfcWall")) == 2
def test_append_a_product_with_materials(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert ifcopenshell.util.element.get_material(self.file.by_type("IfcWall")[0]).Name == "Material"
def test_append_a_product_where_its_inverse_material_relationship_refers_to_product_types_not_in_scope(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", library, related_objects=[element], relating_type=element_type)
material = ifcopenshell.api.run("material.add_material", library, name="Material")
ifcopenshell.api.run("material.assign_material", library, products=[element], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element_type], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element_type2], material=material)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
element_type = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
ifcopenshell.api.type.assign_type(library, related_objects=[element], relating_type=element_type)
material = ifcopenshell.api.material.add_material(library, name="Material")
ifcopenshell.api.material.assign_material(library, products=[element], material=material)
ifcopenshell.api.material.assign_material(library, products=[element_type], material=material)
ifcopenshell.api.material.assign_material(library, products=[element_type2], material=material)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert [e.GlobalId for e in self.file.by_type("IfcWallType")] == [element_type.GlobalId]
def test_append_a_product_with_its_styles(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
item = library.createIfcBoundingBox()
library.createIfcStyledItem(Item=item)
representation = library.createIfcShapeRepresentation(Items=[item])
element.Representation = library.createIfcProductDefinitionShape(Representations=[representation])
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert self.file.by_type("IfcStyledItem")[0].Item == self.file.by_type("IfcBoundingBox")[0]
def test_append_a_product_with_openings(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWall")
opening = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcOpeningElement")
ifcopenshell.api.run("void.add_opening", library, opening=opening, element=element)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWall")
opening = ifcopenshell.api.root.create_entity(library, ifc_class="IfcOpeningElement")
ifcopenshell.api.void.add_opening(library, opening=opening, element=element)
ifcopenshell.api.project.append_asset(self.file, library=library, element=element)
assert self.file.by_type("IfcWall")[0].HasOpenings[0].RelatedOpeningElement.is_a("IfcOpeningElement")
@@ -372,28 +375,28 @@ class TestAppendAssetIFC4(test.bootstrap.IFC4, TestAppendAssetIFC2X3):
# NOTE: breaks in IFC2X3 since IfcProfileDef doesn't have "HasProperties" inverse in ifc2x3
# and we use it in whitelisted_inverse_attributes for appending IfcProfileDef
def test_append_a_profile_def_with_all_properties(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
profile = library.createIfcIShapeProfileDef()
ifcopenshell.api.run("pset.add_pset", library, product=profile, name="Foo_Bar")
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=profile)
ifcopenshell.api.pset.add_pset(library, product=profile, name="Foo_Bar")
ifcopenshell.api.project.append_asset(self.file, library=library, element=profile)
assert len(self.file.by_type("IfcIShapeProfileDef")) == 1
assert self.file.by_type("IfcIShapeProfileDef")[0].HasProperties[0].Name == "Foo_Bar"
# NOTE: breaks in IFC2X3 since IfcMaterial doesn't have "HasProperties" inverse in ifc2x3
# and we use it in whitelisted_inverse_attributes for appending IfcTypeProduct
def test_append_two_type_products_sharing_the_same_material_with_properties(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
element1 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.run("root.create_entity", library, ifc_class="IfcWallType")
material = ifcopenshell.api.run("material.add_material", library, name="Material")
library = ifcopenshell.api.project.create_file(version=self.file.schema)
element1 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
element2 = ifcopenshell.api.root.create_entity(library, ifc_class="IfcWallType")
material = ifcopenshell.api.material.add_material(library, name="Material")
pset = ifcopenshell.api.run("pset.add_pset", library, product=material, name="Foo_Bar")
ifcopenshell.api.run("pset.edit_pset", library, pset=pset, properties={"Foo": "Bar"})
pset = ifcopenshell.api.pset.add_pset(library, product=material, name="Foo_Bar")
ifcopenshell.api.pset.edit_pset(library, pset=pset, properties={"Foo": "Bar"})
ifcopenshell.api.run("material.assign_material", library, products=[element1], material=material)
ifcopenshell.api.run("material.assign_material", library, products=[element2], material=material)
new1 = ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element1)
new2 = ifcopenshell.api.run("project.append_asset", self.file, library=library, element=element2)
ifcopenshell.api.material.assign_material(library, products=[element1], material=material)
ifcopenshell.api.material.assign_material(library, products=[element2], material=material)
new1 = ifcopenshell.api.project.append_asset(self.file, library=library, element=element1)
new2 = ifcopenshell.api.project.append_asset(self.file, library=library, element=element2)
assert len(self.file.by_type("IfcMaterialProperties")) == 1
material = self.file.by_type("IfcMaterial")[0]
@@ -404,11 +407,11 @@ class TestAppendAssetIFC4(test.bootstrap.IFC4, TestAppendAssetIFC2X3):
# NOTE: breaks in IFC2X3 since IfcCostItem doesn't have "IsNestedBy" inverse in ifc2x3
# and we use it in whitelisted_inverse_attributes for appending IfcCostSchedule
def test_append_a_cost_schedule(self):
library = ifcopenshell.api.run("project.create_file", version=self.file.schema)
schedule = ifcopenshell.api.run("cost.add_cost_schedule", library, name="Schedule")
item = ifcopenshell.api.run("cost.add_cost_item", library, cost_schedule=schedule)
item2 = ifcopenshell.api.run("cost.add_cost_item", library, cost_item=item)
ifcopenshell.api.run("project.append_asset", self.file, library=library, element=schedule)
library = ifcopenshell.api.project.create_file(version=self.file.schema)
schedule = ifcopenshell.api.cost.add_cost_schedule(library, name="Schedule")
item = ifcopenshell.api.cost.add_cost_item(library, cost_schedule=schedule)
item2 = ifcopenshell.api.cost.add_cost_item(library, cost_item=item)
ifcopenshell.api.project.append_asset(self.file, library=library, element=schedule)
assert len(self.file.by_type("IfcCostSchedule")) == 1
assert len(self.file.by_type("IfcCostItem")) == 2
assert self.file.by_type("IfcCostSchedule")[0].Name == "Schedule"
@@ -17,7 +17,8 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.root
import ifcopenshell.api.project
# NOTE: supported only in IFC4+
@@ -29,11 +30,10 @@ class TestAssignDeclaration(test.bootstrap.IFC4):
return definitions
def test_assign_a_declaration(self):
element_type = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.run(
"project.assign_declaration",
element_type = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.project.assign_declaration(
self.file,
definitions=[element_type, element_type2],
relating_context=library,
@@ -42,29 +42,29 @@ class TestAssignDeclaration(test.bootstrap.IFC4):
assert len(self.file.by_type("IfcRelDeclares")) == 1
def test_doing_nothing_if_the_library_is_already_assigned(self):
element_type = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type, element_type2], relating_context=library
element_type = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type, element_type2], relating_context=library
)
total_elements = len([e for e in self.file])
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type, element_type2], relating_context=library
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type, element_type2], relating_context=library
)
assert len([e for e in self.file]) == total_elements
def test_that_old_relationships_are_updated_if_they_still_contain_elements(self):
element_type = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type], relating_context=library
element_type = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type], relating_context=library
)
rel = self.file.by_type("IfcRelDeclares")[0]
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type3 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type2, element_type3], relating_context=library
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type3 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type2, element_type3], relating_context=library
)
assert len(rel.RelatedDefinitions) == 3
@@ -17,14 +17,14 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.project
class TestCreateFile(test.bootstrap.IFC4):
def test_run(self):
ifc = ifcopenshell.api.run("project.create_file")
ifc = ifcopenshell.api.project.create_file()
assert ifc.schema == "IFC4"
ifc = ifcopenshell.api.run("project.create_file", version="IFC2X3")
ifc = ifcopenshell.api.project.create_file(version="IFC2X3")
assert ifc.schema == "IFC2X3"
assert ifc.wrapped_data.header.file_name.name == "/dev/null"
assert ifc.wrapped_data.header.file_name.time_stamp
@@ -17,7 +17,8 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.root
import ifcopenshell.api.project
from typing import Union
@@ -29,14 +30,13 @@ class TestUnassignDeclaration(test.bootstrap.IFC4):
return rel.RelatingContext
def test_unassigning_a_definition(self):
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
element_type = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type, element_type2], relating_context=library
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
element_type = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type, element_type2], relating_context=library
)
ifcopenshell.api.run(
"project.unassign_declaration",
ifcopenshell.api.project.unassign_declaration(
self.file,
definitions=[element_type, element_type2],
relating_context=library,
@@ -45,11 +45,10 @@ class TestUnassignDeclaration(test.bootstrap.IFC4):
assert len(self.file.by_type("IfcRelDeclares")) == 0
def test_doing_nothing_if_there_was_no_declaration(self):
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
element_type = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
ifcopenshell.api.run(
"project.unassign_declaration",
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
element_type = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
ifcopenshell.api.project.unassign_declaration(
self.file,
definitions=[element_type, element_type2],
relating_context=library,
@@ -58,23 +57,21 @@ class TestUnassignDeclaration(test.bootstrap.IFC4):
assert self.get_context(element_type2) == None
def test_updating_the_rel_when_a_reference_is_removed_with_multipled_elements(self):
library = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcProjectLibrary")
element_type1 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
element_type3 = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWallType")
ifcopenshell.api.run(
"project.assign_declaration", self.file, definitions=[element_type1], relating_context=library
library = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProjectLibrary")
element_type1 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
element_type3 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWallType")
ifcopenshell.api.project.assign_declaration(
self.file, definitions=[element_type1], relating_context=library
)
rel = self.file.by_type("IfcRelDeclares")[0]
ifcopenshell.api.run(
"project.assign_declaration",
ifcopenshell.api.project.assign_declaration(
self.file,
definitions=[element_type2, element_type3],
relating_context=library,
)
ifcopenshell.api.run(
"project.unassign_declaration",
ifcopenshell.api.project.unassign_declaration(
self.file,
definitions=[element_type1, element_type2],
relating_context=library,