mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
Replace all ifcopenshell.api.run with ifcopenshell.api static functions.
This commit is contained in:
@@ -17,13 +17,13 @@
|
||||
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import test.bootstrap
|
||||
import ifcopenshell.api
|
||||
import ifcopenshell.api.context
|
||||
|
||||
|
||||
class TestAddContext(test.bootstrap.IFC4):
|
||||
def test_adding_a_3d_context(self):
|
||||
self.file.createIfcProject()
|
||||
context = ifcopenshell.api.run("context.add_context", self.file, context_type="Model")
|
||||
context = ifcopenshell.api.context.add_context(self.file, context_type="Model")
|
||||
assert context.ContextType == "Model"
|
||||
assert context.is_a() == "IfcGeometricRepresentationContext"
|
||||
assert context.WorldCoordinateSystem.is_a() == "IfcAxis2Placement3D"
|
||||
@@ -34,7 +34,7 @@ class TestAddContext(test.bootstrap.IFC4):
|
||||
|
||||
def test_adding_a_2d_context(self):
|
||||
self.file.createIfcProject()
|
||||
context = ifcopenshell.api.run("context.add_context", self.file, context_type="Plan")
|
||||
context = ifcopenshell.api.context.add_context(self.file, context_type="Plan")
|
||||
assert context.ContextType == "Plan"
|
||||
assert context.is_a() == "IfcGeometricRepresentationContext"
|
||||
assert context.WorldCoordinateSystem.is_a() == "IfcAxis2Placement2D"
|
||||
@@ -44,7 +44,7 @@ class TestAddContext(test.bootstrap.IFC4):
|
||||
|
||||
def test_defaulting_to_3d_with_an_unknown_context_type(self):
|
||||
self.file.createIfcProject()
|
||||
context = ifcopenshell.api.run("context.add_context", self.file)
|
||||
context = ifcopenshell.api.context.add_context(self.file)
|
||||
assert context.ContextType is None
|
||||
assert context.is_a() == "IfcGeometricRepresentationContext"
|
||||
assert context.WorldCoordinateSystem.is_a() == "IfcAxis2Placement3D"
|
||||
@@ -56,15 +56,15 @@ class TestAddContext(test.bootstrap.IFC4):
|
||||
def test_adding_a_subcontext(self):
|
||||
self.test_adding_a_3d_context()
|
||||
context = self.file.by_type("IfcGeometricRepresentationContext")[0]
|
||||
subcontext = ifcopenshell.api.run("context.add_context", self.file, parent=context, target_view="NOTDEFINED")
|
||||
subcontext = ifcopenshell.api.context.add_context(self.file, parent=context, target_view="NOTDEFINED")
|
||||
assert subcontext.is_a("IfcGeometricRepresentationSubContext")
|
||||
assert subcontext.TargetView == "NOTDEFINED"
|
||||
|
||||
def test_adding_a_subcontext_with_an_optional_identifier_specified(self):
|
||||
self.test_adding_a_3d_context()
|
||||
context = self.file.by_type("IfcGeometricRepresentationContext")[0]
|
||||
subcontext = ifcopenshell.api.run(
|
||||
"context.add_context", self.file, parent=context, target_view="NOTDEFINED", context_identifier="Body"
|
||||
subcontext = ifcopenshell.api.context.add_context(
|
||||
self.file, parent=context, target_view="NOTDEFINED", context_identifier="Body"
|
||||
)
|
||||
assert subcontext.is_a("IfcGeometricRepresentationSubContext")
|
||||
assert subcontext.TargetView == "NOTDEFINED"
|
||||
|
||||
@@ -17,14 +17,13 @@
|
||||
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import test.bootstrap
|
||||
import ifcopenshell.api
|
||||
import ifcopenshell.api.context
|
||||
|
||||
|
||||
class TestEditContext(test.bootstrap.IFC4):
|
||||
def test_editing_a_context(self):
|
||||
context = self.file.createIfcGeometricRepresentationContext()
|
||||
ifcopenshell.api.run(
|
||||
"context.edit_context",
|
||||
ifcopenshell.api.context.edit_context(
|
||||
self.file,
|
||||
context=context,
|
||||
attributes={
|
||||
@@ -41,8 +40,7 @@ class TestEditContext(test.bootstrap.IFC4):
|
||||
|
||||
def test_editing_a_subcontext(self):
|
||||
subcontext = self.file.createIfcGeometricRepresentationSubcontext()
|
||||
ifcopenshell.api.run(
|
||||
"context.edit_context",
|
||||
ifcopenshell.api.context.edit_context(
|
||||
self.file,
|
||||
context=subcontext,
|
||||
attributes={
|
||||
|
||||
@@ -17,20 +17,20 @@
|
||||
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import test.bootstrap
|
||||
import ifcopenshell.api
|
||||
import ifcopenshell.api.context
|
||||
|
||||
|
||||
class TestRemoveContext(test.bootstrap.IFC4):
|
||||
def test_removing_a_context(self):
|
||||
context = self.file.createIfcGeometricRepresentationContext()
|
||||
ifcopenshell.api.run("context.remove_context", self.file, context=context)
|
||||
ifcopenshell.api.context.remove_context(self.file, context=context)
|
||||
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 0
|
||||
|
||||
def test_removing_a_context_with_subcontexts(self):
|
||||
context = self.file.createIfcGeometricRepresentationContext()
|
||||
subcontext = self.file.createIfcGeometricRepresentationSubcontext()
|
||||
subcontext.ParentContext = context
|
||||
ifcopenshell.api.run("context.remove_context", self.file, context=context)
|
||||
ifcopenshell.api.context.remove_context(self.file, context=context)
|
||||
assert len(self.file.by_type("IfcGeometricRepresentationContext")) == 0
|
||||
|
||||
def test_removing_a_subcontext_and_reassigning_references_to_its_parent(self):
|
||||
@@ -41,7 +41,7 @@ class TestRemoveContext(test.bootstrap.IFC4):
|
||||
if self.file.schema != "IFC2X3":
|
||||
projected_crs = self.file.createIfcProjectedCRS()
|
||||
map_conversion = self.file.createIfcMapConversion(SourceCRS=subcontext, TargetCRS=projected_crs)
|
||||
ifcopenshell.api.run("context.remove_context", self.file, context=subcontext)
|
||||
ifcopenshell.api.context.remove_context(self.file, context=subcontext)
|
||||
assert len(self.file.by_type("IfcGeometricRepresentationSubcontext")) == 0
|
||||
assert representation in self.file.get_inverse(context)
|
||||
if self.file.schema != "IFC2X3":
|
||||
@@ -51,7 +51,7 @@ class TestRemoveContext(test.bootstrap.IFC4):
|
||||
def test_removing_a_context_with_references(self):
|
||||
context = self.file.createIfcGeometricRepresentationContext()
|
||||
representation = self.file.createIfcRepresentation(ContextOfItems=context)
|
||||
ifcopenshell.api.run("context.remove_context", self.file, context=context)
|
||||
ifcopenshell.api.context.remove_context(self.file, context=context)
|
||||
assert len([e for e in self.file]) == 0
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user