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,16 +17,16 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.layer
class TestAddLayer(test.bootstrap.IFC4):
def test_add_layer_no_arguments(self):
layer = ifcopenshell.api.run("layer.add_layer", self.file)
layer = ifcopenshell.api.layer.add_layer(self.file)
assert layer.Name == "Unnamed"
def test_assign_additional_items(self):
layer = ifcopenshell.api.run("layer.add_layer", self.file, name="Name")
layer = ifcopenshell.api.layer.add_layer(self.file, name="Name")
assert layer.Name == "Name"
@@ -17,7 +17,7 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.layer
class TestAssignLayer(test.bootstrap.IFC4):
@@ -25,7 +25,7 @@ class TestAssignLayer(test.bootstrap.IFC4):
items = [self.file.createIfcExtrudedAreaSolid() for i in range(2)]
layer = self.file.createIfcPresentationLayerAssignment()
ifcopenshell.api.run("layer.assign_layer", self.file, items=items, layer=layer)
ifcopenshell.api.layer.assign_layer(self.file, items=items, layer=layer)
assert len(layer.AssignedItems) == 2
assert set(layer.AssignedItems) == set(items)
@@ -33,8 +33,8 @@ class TestAssignLayer(test.bootstrap.IFC4):
items = [self.file.createIfcExtrudedAreaSolid() for i in range(4)]
layer = self.file.createIfcPresentationLayerAssignment()
ifcopenshell.api.run("layer.assign_layer", self.file, items=items[:2], layer=layer)
ifcopenshell.api.run("layer.assign_layer", self.file, items=items[2:], layer=layer)
ifcopenshell.api.layer.assign_layer(self.file, items=items[:2], layer=layer)
ifcopenshell.api.layer.assign_layer(self.file, items=items[2:], layer=layer)
assert len(layer.AssignedItems) == 4
assert set(layer.AssignedItems) == set(items)
@@ -17,7 +17,7 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import test.bootstrap
import ifcopenshell.api
import ifcopenshell.api.layer
class TestUnassignLayer(test.bootstrap.IFC4):
@@ -25,8 +25,8 @@ class TestUnassignLayer(test.bootstrap.IFC4):
items = [self.file.createIfcExtrudedAreaSolid() for i in range(3)]
layer = self.file.createIfcPresentationLayerAssignment()
ifcopenshell.api.run("layer.assign_layer", self.file, items=items, layer=layer)
ifcopenshell.api.run("layer.unassign_layer", self.file, items=items[2:], layer=layer)
ifcopenshell.api.layer.assign_layer(self.file, items=items, layer=layer)
ifcopenshell.api.layer.unassign_layer(self.file, items=items[2:], layer=layer)
assert len(layer.AssignedItems) == 2
assert set(layer.AssignedItems) == set(items[:2])
@@ -34,8 +34,8 @@ class TestUnassignLayer(test.bootstrap.IFC4):
items = [self.file.createIfcExtrudedAreaSolid() for i in range(3)]
layer = self.file.createIfcPresentationLayerAssignment()
ifcopenshell.api.run("layer.assign_layer", self.file, items=items, layer=layer)
ifcopenshell.api.run("layer.unassign_layer", self.file, items=items, layer=layer)
ifcopenshell.api.layer.assign_layer(self.file, items=items, layer=layer)
ifcopenshell.api.layer.unassign_layer(self.file, items=items, layer=layer)
assert not self.file.by_type("IfcPresentationLayerAssignment")