mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-12 02:23:34 +00:00
more tests for ifc2x3
This commit is contained in:
@@ -75,3 +75,7 @@ class TestAddContext(test.bootstrap.IFC4):
|
||||
self.test_adding_a_2d_context()
|
||||
project = self.file.by_type("IfcProject")[0]
|
||||
assert len(project.RepresentationContexts) == 2
|
||||
|
||||
|
||||
class TestAddContextIFC2X3(test.bootstrap.IFC2X3, TestAddContext):
|
||||
pass
|
||||
|
||||
@@ -58,3 +58,7 @@ class TestEditContext(test.bootstrap.IFC4):
|
||||
assert subcontext.TargetScale == 0.5
|
||||
assert subcontext.TargetView == "MODEL_VIEW"
|
||||
assert subcontext.UserDefinedTargetView == "UserDefinedTargetView"
|
||||
|
||||
|
||||
class TestEditContext(test.bootstrap.IFC2X3, TestEditContext):
|
||||
pass
|
||||
|
||||
@@ -38,16 +38,22 @@ class TestRemoveContext(test.bootstrap.IFC4):
|
||||
subcontext = self.file.createIfcGeometricRepresentationSubcontext()
|
||||
subcontext.ParentContext = context
|
||||
representation = self.file.createIfcRepresentation(ContextOfItems=subcontext)
|
||||
projected_crs = self.file.createIfcProjectedCRS()
|
||||
map_conversion = self.file.createIfcMapConversion(SourceCRS=subcontext, TargetCRS=projected_crs)
|
||||
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)
|
||||
assert len(self.file.by_type("IfcGeometricRepresentationSubcontext")) == 0
|
||||
assert representation in self.file.get_inverse(context)
|
||||
assert len(self.file.by_type("IfcMapConversion")) == 0
|
||||
assert len(self.file.by_type("IfcProjectedCRS")) == 0
|
||||
if self.file.schema != "IFC2X3":
|
||||
assert len(self.file.by_type("IfcMapConversion")) == 0
|
||||
assert len(self.file.by_type("IfcProjectedCRS")) == 0
|
||||
|
||||
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)
|
||||
assert len([e for e in self.file]) == 0
|
||||
|
||||
|
||||
class TestRemoveContextIFC2X3(test.bootstrap.IFC2X3, TestRemoveContext):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user