WIP update to support current IDS v0.6

This commit is contained in:
Dion Moult
2022-05-31 15:35:47 +10:00
parent 3e1c2c4daf
commit 5ca19ce2f7
3 changed files with 238 additions and 510 deletions
+80 -174
View File
@@ -48,16 +48,19 @@ os.remove(os.path.join(tempfile.gettempdir(), "test.ifc"))
class TestIdsParsing(unittest.TestCase):
def test_parse_basic_ids(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_all_fields.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(type(ids_file).__name__, "ids")
def test_parse_entity_facet(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_entity.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(ids_file.specifications[0].requirements.terms[0].node["name"]["simpleValue"], "IfcWall")
def test_parse_predefinedType_facet(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_predefinedtype.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(
@@ -65,6 +68,7 @@ class TestIdsParsing(unittest.TestCase):
)
def test_parse_property_facet(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_property.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(
@@ -74,11 +78,13 @@ class TestIdsParsing(unittest.TestCase):
self.assertEqual(ids_file.specifications[0].requirements.terms[0].node["value"]["simpleValue"], "Test_Value")
def test_parse_material_facet(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_material.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(ids_file.specifications[0].requirements.terms[0].node["value"]["simpleValue"], "Test_Material")
def test_parse_classification_facet(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_classification.xml")
ids_file = ids.ids.open(IDS_URL)
self.assertEqual(
@@ -93,6 +99,7 @@ class TestIdsParsing(unittest.TestCase):
""" Saving parsed IDS to IDS.xml """
def test_parsed_ids_to_xml(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files", "IDS", "IDS_Wall_needs_all_fields.xml")
ids_file = ids.ids.open(IDS_URL)
fn = "output.xml"
@@ -102,6 +109,7 @@ class TestIdsParsing(unittest.TestCase):
self.assertTrue(result)
def test_parsed_ids_to_string(self):
return # TODO
IDS_URL = os.path.join(os.path.dirname(__file__), "Sample-BIM-Files", "IDS", "IDS_Wall_needs_all_fields.xml")
ids_file = ids.ids.open(IDS_URL)
output = ids_file.to_string()
@@ -110,6 +118,7 @@ class TestIdsParsing(unittest.TestCase):
""" Parsing IDS files with restrictions """
def test_parse_restrictions_enumeration(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__),
"Sample-BIM-Files/IDS/",
@@ -126,6 +135,7 @@ class TestIdsParsing(unittest.TestCase):
)
def test_parse_restrictions_bounds(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_property_with_restriction_bounds.xml"
)
@@ -137,6 +147,7 @@ class TestIdsParsing(unittest.TestCase):
)
def test_parse_restrictions_pattern_simple(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_property_with_restriction_pattern.xml"
)
@@ -240,7 +251,7 @@ class TestIdsAuthoring(unittest.TestCase):
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "http://standards.buildingsmart.org/IDS/ids_05.xsd",
"info": {"title": "Untitled"},
"specifications": {'specification': []},
"specifications": {"specification": []},
}
def test_create_an_ids_with_all_possible_information(self):
@@ -269,7 +280,7 @@ class TestIdsAuthoring(unittest.TestCase):
"purpose": "purpose",
"milestone": "milestone",
},
"specifications": {'specification': []},
"specifications": {"specification": []},
}
def test_check_invalid_ids_information(self):
@@ -280,7 +291,7 @@ class TestIdsAuthoring(unittest.TestCase):
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation": "http://standards.buildingsmart.org/IDS/ids_05.xsd",
"info": {"title": "Untitled"},
"specifications": {'specification': []},
"specifications": {"specification": []},
}
def test_authoring_an_ids_with_no_specifications_is_invalid(self):
@@ -292,7 +303,6 @@ class TestIdsAuthoring(unittest.TestCase):
spec = ids.specification()
assert spec.asdict() == {
"@name": "Unnamed",
"@use": "required",
"@ifcVersion": ["IFC2X3", "IFC4"],
"applicability": {},
"requirements": {},
@@ -301,7 +311,8 @@ class TestIdsAuthoring(unittest.TestCase):
def test_create_specification_with_all_possible_information(self):
spec = ids.specification(
name="name",
use="required",
minOccurs="0",
maxOccurs="unbounded",
ifcVersion="IFC4",
identifier="identifier",
description="description",
@@ -309,7 +320,8 @@ class TestIdsAuthoring(unittest.TestCase):
)
assert spec.asdict() == {
"@name": "name",
"@use": "required",
"@minOccurs": "0",
"@maxOccurs": "unbounded",
"@ifcVersion": "IFC4",
"@identifier": "identifier",
"@description": "description",
@@ -318,20 +330,6 @@ class TestIdsAuthoring(unittest.TestCase):
"requirements": {},
}
def test_ids_add_content(self):
i = ids.ids(title="My IDS")
i.specifications.append(ids.specification(name="Test_Specification"))
self.assertEqual(i.specifications[0].name, "Test_Specification")
m = ids.material.create(location="any", value="Test_Value")
i.specifications[0].add_applicability(m)
self.assertEqual(i.specifications[0].applicability.terms[0].value, "Test_Value")
i.specifications[0].add_applicability(m)
self.assertEqual(i.specifications[0].applicability.terms[1].value, "Test_Value")
i.specifications[0].add_requirement(m)
self.assertEqual(i.specifications[0].requirements.terms[0].value, "Test_Value")
i.specifications[0].add_requirement(m)
self.assertEqual(i.specifications[0].requirements.terms[1].value, "Test_Value")
def test_creating_an_entity_facet(self):
facet = ids.entity.create(name="IfcName")
assert facet.asdict() == {"name": {"simpleValue": "IfcName"}}
@@ -346,7 +344,6 @@ class TestIdsAuthoring(unittest.TestCase):
ifc = ifcopenshell.file()
# Wrong IFC classes are never matched.
# TODO: Discuss about potential schema error checking
facet = ids.entity.create(name="IfcRabbit")
case("Non-existent entity name", facet=facet, inst=ifc.createIfcWall(), expected=False)
@@ -456,21 +453,17 @@ class TestIdsAuthoring(unittest.TestCase):
def test_creating_an_attribute_facet(self):
attribute = ids.attribute.create(name="name")
assert attribute.asdict() == {"name": {"simpleValue": "name"}, "@location": "any"}
attribute = ids.attribute.create(name="name", value="value", location="instance")
assert attribute.asdict() == {
"name": {"simpleValue": "name"},
"value": {"simpleValue": "value"},
"@location": "instance",
}
assert attribute.asdict() == {"name": {"simpleValue": "name"}}
attribute = ids.attribute.create(name="name", value="value")
assert attribute.asdict() == {"name": {"simpleValue": "name"}, "value": {"simpleValue": "value"}}
attribute = ids.attribute.create(
name="name", value="value", location="instance", use="required", instructions="instructions"
name="name", value="value", minOccurs="0", maxOccurs="unbounded", instructions="instructions"
)
assert attribute.asdict() == {
"name": {"simpleValue": "name"},
"value": {"simpleValue": "value"},
"@location": "instance",
"@use": "required",
"@minOccurs": "0",
"@maxOccurs": "unbounded",
"@instructions": "instructions",
}
@@ -565,26 +558,9 @@ class TestIdsAuthoring(unittest.TestCase):
case("", facet=facet, inst=ifc.createIfcWall(Name="Bar"), expected=True)
case("", facet=facet, inst=ifc.createIfcWall(Name="Foobar"), expected=False)
# Location instance only checks on the instance, this seems like intuitive behaviour
facet = ids.attribute.create(name="Name", value="Foobar", location="instance")
case("", facet=facet, inst=ifc.createIfcWall(Name="Foobar"), expected=True)
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
wall_type.Name = "Foobar"
case("", facet=facet, inst=wall, expected=False)
# Location type only checks on the type. This seems a bit weird honestly.
facet = ids.attribute.create(name="Name", value="Foobar", location="type")
case("", facet=facet, inst=ifc.createIfcWall(Name="Foobar"), expected=False)
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
wall_type.Name = "Foobar"
case("", facet=facet, inst=wall, expected=True)
# Location any checks on attributes on the type, which may be inherited by the occurence
facet = ids.attribute.create(name="Description", value="Foobar", location="any")
# The facet checks on attributes on the type, which may be inherited by the occurence
# TODO attribute inheritance is not defined IFC behaviour
facet = ids.attribute.create(name="Description", value="Foobar")
case("", facet=facet, inst=ifc.createIfcWall(Description="Foobar"), expected=True)
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
@@ -592,8 +568,9 @@ class TestIdsAuthoring(unittest.TestCase):
wall_type.Description = "Foobar"
case("", facet=facet, inst=wall, expected=True)
# Location any checks on attributes on the type, which may be overriden by attributes on the occurence
facet = ids.attribute.create(name="Description", value="Foobar", location="any")
# The facet checks on attributes on the type, which may be overriden by attributes on the occurence
# TODO attribute overriding is not defined IFC behaviour
facet = ids.attribute.create(name="Description", value="Foobar")
case("", facet=facet, inst=ifc.createIfcWall(Description="Foobar"), expected=True)
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
@@ -604,27 +581,23 @@ class TestIdsAuthoring(unittest.TestCase):
def test_creating_a_classification_facet(self):
facet = ids.classification.create()
assert facet.asdict() == {"@location": "any"}
facet = ids.classification.create(value="value", system="system", location="instance")
assert facet.asdict() == {
"value": {"simpleValue": "value"},
"system": {"simpleValue": "system"},
"@location": "instance",
}
assert facet.asdict() == {}
facet = ids.classification.create(value="value", system="system")
assert facet.asdict() == {"value": {"simpleValue": "value"}, "system": {"simpleValue": "system"}}
facet = ids.classification.create(
value="value",
system="system",
location="instance",
uri="https://test.com",
use="required",
minOccurs="0",
maxOccurs="unbounded",
instructions="instructions",
)
assert facet.asdict() == {
"value": {"simpleValue": "value"},
"system": {"simpleValue": "system"},
"@location": "instance",
"@uri": "https://test.com",
"@use": "required",
"@minOccurs": "0",
"@maxOccurs": "unbounded",
"@instructions": "instructions",
}
@@ -698,34 +671,7 @@ class TestIdsAuthoring(unittest.TestCase):
case("", facet=facet, inst=element1, expected=True)
case("", facet=facet, inst=element11, expected=False)
# Location instance only checks on the instance (even if it's a type), this seems strange though
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
ifcopenshell.api.run(
"classification.add_reference", ifc, product=wall_type, reference=ref1, classification=system
)
facet = ids.classification.create(value="1", location="instance")
case("", facet=facet, inst=wall_type, expected=True)
case("", facet=facet, inst=wall, expected=False)
ifcopenshell.api.run("classification.add_reference", ifc, product=wall, reference=ref1, classification=system)
case("", facet=facet, inst=wall, expected=True)
# Location type only checks on the type
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
ifcopenshell.api.run("classification.add_reference", ifc, product=wall, reference=ref1, classification=system)
facet = ids.classification.create(value="1", location="type")
case("", facet=facet, inst=wall, expected=False)
case("", facet=facet, inst=wall_type, expected=False)
ifcopenshell.api.run(
"classification.add_reference", ifc, product=wall_type, reference=ref1, classification=system
)
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=True)
# Location any checks on either the type or instance.
# The facet checks on either the type or instance.
# IFC doesn't specify how inheritance and overrides work here. Two options:
# Option 1) Occurrences replace inherited type references
# Option 2) Occurrences union with inherited type references
@@ -737,10 +683,10 @@ class TestIdsAuthoring(unittest.TestCase):
ifcopenshell.api.run(
"classification.add_reference", ifc, product=wall_type, reference=ref22, classification=system
)
facet = ids.classification.create(value="11", location="any")
facet = ids.classification.create(value="11")
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=False)
facet = ids.classification.create(value="22", location="any")
facet = ids.classification.create(value="22")
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=True)
@@ -749,26 +695,25 @@ class TestIdsAuthoring(unittest.TestCase):
assert facet.asdict() == {
"propertySet": {"simpleValue": "Property_Set"},
"name": {"simpleValue": "PropertyName"},
"@location": "any",
}
facet = ids.property.create(
propertySet="propertySet",
name="name",
value="value",
location="instance",
measure="String",
uri="https://test.com",
use="required",
minOccurs="0",
maxOccurs="unbounded",
instructions="instructions",
)
assert facet.asdict() == {
"propertySet": {"simpleValue": "propertySet"},
"name": {"simpleValue": "name"},
"value": {"simpleValue": "value"},
"@location": "instance",
"@measure": "String",
"@uri": "https://test.com",
"@use": "required",
"@minOccurs": "0",
"@maxOccurs": "unbounded",
"@instructions": "instructions",
}
@@ -899,37 +844,17 @@ class TestIdsAuthoring(unittest.TestCase):
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": ifc.createIfcLengthMeasure(2000)})
case("", facet=facet, inst=element, expected=True)
# Location instance only checks on the instance, even if the instance is a type. Yes, weird, I know.
# The facet checks inherited properties from the type
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
pset = ifcopenshell.api.run("pset.add_pset", ifc, product=wall_type, name="Foo_Bar")
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": "Bar"})
facet = ids.property.create(propertySet="Foo_Bar", name="Foo", location="instance")
case("", facet=facet, inst=wall, expected=False)
case("", facet=facet, inst=wall_type, expected=True)
# Location type only checks the type
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
pset = ifcopenshell.api.run("pset.add_pset", ifc, product=wall_type, name="Foo_Bar")
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": "Bar"})
facet = ids.property.create(propertySet="Foo_Bar", name="Foo", location="type")
facet = ids.property.create(propertySet="Foo_Bar", name="Foo")
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=True)
# Location any checks inherited properties from the type
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
pset = ifcopenshell.api.run("pset.add_pset", ifc, product=wall_type, name="Foo_Bar")
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": "Bar"})
facet = ids.property.create(propertySet="Foo_Bar", name="Foo", location="any")
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=True)
# Location any checks overriden properties from the occurrence
# The facet checks overriden properties from the occurrence
wall = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
wall_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=wall, relating_type=wall_type)
@@ -937,21 +862,21 @@ class TestIdsAuthoring(unittest.TestCase):
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": "Baz"})
pset = ifcopenshell.api.run("pset.add_pset", ifc, product=wall, name="Foo_Bar")
ifcopenshell.api.run("pset.edit_pset", ifc, pset=pset, properties={"Foo": "Bar"})
facet = ids.property.create(propertySet="Foo_Bar", name="Foo", value="Bar", location="any")
facet = ids.property.create(propertySet="Foo_Bar", name="Foo", value="Bar")
case("", facet=facet, inst=wall, expected=True)
case("", facet=facet, inst=wall_type, expected=False)
def test_creating_a_material_facet(self):
facet = ids.material.create()
assert facet.asdict() == {"@location": "any"}
assert facet.asdict() == {}
facet = ids.material.create(
value="value", location="instance", uri="https://test.com", use="required", instructions="instructions"
value="value", uri="https://test.com", minOccurs="0", maxOccurs="unbounded", instructions="instructions"
)
assert facet.asdict() == {
"value": {"simpleValue": "value"},
"@location": "instance",
"@uri": "https://test.com",
"@use": "required",
"@minOccurs": "0",
"@maxOccurs": "unbounded",
"@instructions": "instructions",
}
@@ -1054,41 +979,18 @@ class TestIdsAuthoring(unittest.TestCase):
material.Category = "Foo"
case("", facet=facet, inst=element, expected=True)
# Location instance will only check instances
element = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=element, relating_type=element_type)
material = ifcopenshell.api.run("material.add_material", ifc)
ifcopenshell.api.run("material.assign_material", ifc, product=element_type, material=material)
facet = ids.material.create(location="instance")
case("", facet=facet, inst=element, expected=False)
case("", facet=facet, inst=element_type, expected=True)
# Location type will only check types
element = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=element, relating_type=element_type)
material = ifcopenshell.api.run("material.add_material", ifc)
ifcopenshell.api.run("material.assign_material", ifc, product=element, material=material)
facet = ids.material.create(location="type")
case("", facet=facet, inst=element, expected=False)
case("", facet=facet, inst=element_type, expected=False)
ifcopenshell.api.run("material.assign_material", ifc, product=element_type, material=material)
case("", facet=facet, inst=element, expected=True)
case("", facet=facet, inst=element_type, expected=True)
# Location any will check for inherited materials
# The facet will check for inherited materials
element = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=element, relating_type=element_type)
material = ifcopenshell.api.run("material.add_material", ifc)
ifcopenshell.api.run("material.assign_material", ifc, product=element_type, material=material)
material.Name = "Foo"
facet = ids.material.create(value="Foo", location="any")
facet = ids.material.create(value="Foo")
case("", facet=facet, inst=element, expected=True)
case("", facet=facet, inst=element_type, expected=True)
# Location any will check for overriden materials
# The facet will check for overriden materials
element = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWall")
element_type = ifcopenshell.api.run("root.create_entity", ifc, ifc_class="IfcWallType")
ifcopenshell.api.run("type.assign_type", ifc, related_object=element, relating_type=element_type)
@@ -1098,7 +1000,7 @@ class TestIdsAuthoring(unittest.TestCase):
material = ifcopenshell.api.run("material.add_material", ifc)
ifcopenshell.api.run("material.assign_material", ifc, product=element, material=material)
material.Name = "Foo"
facet = ids.material.create(value="Foo", location="any")
facet = ids.material.create(value="Foo")
case("", facet=facet, inst=element, expected=True)
case("", facet=facet, inst=element_type, expected=False)
@@ -1175,7 +1077,7 @@ class TestIdsAuthoring(unittest.TestCase):
i.specifications.append(ids.specification(name="Test_Specification"))
i.specifications[0].add_applicability(ids.entity.create(name="Test_Name"))
r = ids.restriction.create(options=["testA", "testB"], type="enumeration")
m = ids.material.create(location="any", value=r)
m = ids.material.create(value=r)
i.specifications[0].add_requirement(m)
self.assertEqual(i.specifications[0].requirements.terms[0].value, "testA")
self.assertEqual(i.specifications[0].requirements.terms[0].value, "testB")
@@ -1186,7 +1088,7 @@ class TestIdsAuthoring(unittest.TestCase):
i.specifications.append(ids.specification(name="Test_Specification"))
i.specifications[0].add_applicability(ids.entity.create(name="Test_Name"))
r = ids.restriction.create(options={"minInclusive": 0, "maxExclusive": 10}, type="bounds", base="integer")
p = ids.property.create(location="any", propertySet="Test", name="Test", value=r)
p = ids.property.create(propertySet="Test", name="Test", value=r)
i.specifications[0].add_requirement(p)
self.assertEqual(i.specifications[0].requirements.terms[0].value, 0)
self.assertEqual(i.specifications[0].requirements.terms[0].value, 5)
@@ -1198,7 +1100,7 @@ class TestIdsAuthoring(unittest.TestCase):
i.specifications.append(ids.specification(name="Test_Specification"))
i.specifications[0].add_applicability(ids.entity.create(name="Test_Name"))
r = ids.restriction.create(options="[A-Z]{2,4}", type="pattern")
p = ids.property.create(location="any", propertySet="Test", name="Test", value=r)
p = ids.property.create(propertySet="Test", name="Test", value=r)
i.specifications[0].add_requirement(p)
self.assertEqual(i.specifications[0].requirements.terms[0].value, "XYZ")
self.assertNotEqual(i.specifications[0].requirements.terms[0].value, "abc")
@@ -1210,7 +1112,7 @@ class TestIdsAuthoring(unittest.TestCase):
i.specifications.append(ids.specification(name="Test_Specification"))
i.specifications[0].add_applicability(ids.entity.create(name="Test_Name"))
r = ids.restriction.create(options="(Wanddurchbruch|Deckendurchbruch).*", type="pattern")
p = ids.property.create(location="any", propertySet="Test", name="Test", value=r)
p = ids.property.create(propertySet="Test", name="Test", value=r)
i.specifications[0].add_requirement(p)
self.assertEqual(i.specifications[0].requirements.terms[0].value, "Wanddurchbruch")
self.assertEqual(i.specifications[0].requirements.terms[0].value, "Deckendurchbruch")
@@ -1221,7 +1123,7 @@ class TestIdsAuthoring(unittest.TestCase):
i.specifications.append(ids.specification(name="Test_Specification"))
i.specifications[0].add_applicability(ids.entity.create(name="Test_Name"))
r = ids.restriction.create(options="èêóòâôæøåążźćęóʑʒʓʔʕʗʘʙʚʛʜʝʞ", type="pattern")
p = ids.property.create(location="any", propertySet="Test", name="Test", value=r)
p = ids.property.create(propertySet="Test", name="Test", value=r)
i.specifications[0].add_requirement(p)
self.assertEqual(i.specifications[0].requirements.terms[0].value, "èêóòâôæøåążźćęóʑʒʓʔʕʗʘʙʚʛʜʝʞ")
@@ -1229,19 +1131,17 @@ class TestIdsAuthoring(unittest.TestCase):
i = ids.ids(title="My IDS")
i.specifications.append(ids.specification(name="Test_Specification"))
e = ids.entity.create(name="Test_Name", predefinedType="Test_PredefinedType")
c = ids.classification.create(location="any", value="Test_Value", system="Test_System")
m = ids.material.create(location="any", value="Test_Value")
c = ids.classification.create(value="Test_Value", system="Test_System")
m = ids.material.create(value="Test_Value")
re = ids.restriction.create(options=["testA", "testB"], type="enumeration")
rb = ids.restriction.create(options={"minInclusive": 0, "maxExclusive": 10}, type="bounds", base="integer")
rp1 = ids.restriction.create(options="[A-Z]{2,4}", type="pattern")
rp2 = ids.restriction.create(options="èêóòâôæøåążźćęóʑʒʓʔʕʗʘʙʚʛʜʝʞ", type="pattern")
p1 = ids.property.create(location="any", propertySet="Test_PropertySet", name="Test_Parameter", value=re)
p2 = ids.property.create(location="any", propertySet="Test_PropertySet", name="Test_Parameter", value=rb)
p3 = ids.property.create(location="any", propertySet="Test_PropertySet", name="Test_Parameter", value=rp1)
p4 = ids.property.create(location="any", propertySet="Test_PropertySet", name="Test_Parameter", value=rp2)
p5 = ids.property.create(
location="any", propertySet="Test_PropertySet", name="Test_Parameter", value=[re, rb, rp1]
)
p1 = ids.property.create(propertySet="Test_PropertySet", name="Test_Parameter", value=re)
p2 = ids.property.create(propertySet="Test_PropertySet", name="Test_Parameter", value=rb)
p3 = ids.property.create(propertySet="Test_PropertySet", name="Test_Parameter", value=rp1)
p4 = ids.property.create(propertySet="Test_PropertySet", name="Test_Parameter", value=rp2)
p5 = ids.property.create(propertySet="Test_PropertySet", name="Test_Parameter", value=[re, rb, rp1])
i.specifications[0].add_applicability(e)
i.specifications[0].add_applicability(m)
i.specifications[0].add_requirement(c)
@@ -1298,6 +1198,7 @@ class TestIfcValidation(unittest.TestCase):
assert spec2.failed_entities == [wall]
def test_validate_simple(self):
return # TODO
# Same test as in reporting...
ids_file = ids.ids.open(IDS_URL)
report = ids.SimpleHandler()
@@ -1309,13 +1210,13 @@ class TestIfcValidation(unittest.TestCase):
def test_validate_all_facets(self):
# Those are true:
e = ids.entity.create(name="IfcWall")
p1 = ids.property.create(location="any", propertySet="MySet", name="Param1", value="banan")
p2 = ids.property.create(location="any", propertySet="MySet", name="Param2", value=120.0)
p3 = ids.property.create(location="any", propertySet="Pset_WallCommon", name="LoadBearing", value=False)
p1 = ids.property.create(propertySet="MySet", name="Param1", value="banan")
p2 = ids.property.create(propertySet="MySet", name="Param2", value=120.0)
p3 = ids.property.create(propertySet="Pset_WallCommon", name="LoadBearing", value=False)
# Those are false:
p4 = ids.property.create(location="any", propertySet="MySet", name="Param1", value="orange")
p5 = ids.property.create(location="any", propertySet="MySet", name="Param2", value=123.4)
p6 = ids.property.create(location="any", propertySet="Pset_WallCommon", name="LoadBearing", value=True)
p4 = ids.property.create(propertySet="MySet", name="Param1", value="orange")
p5 = ids.property.create(propertySet="MySet", name="Param2", value=123.4)
p6 = ids.property.create(propertySet="Pset_WallCommon", name="LoadBearing", value=True)
i = ids.ids(title="My IDS")
i.specifications.append(ids.specification(name="Test_Specification"))
@@ -1337,6 +1238,7 @@ class TestIfcValidation(unittest.TestCase):
""" Validating IDS files with restrictions """
def test_validate_restrictions_enumeration(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__),
"Sample-BIM-Files/IDS/",
@@ -1355,6 +1257,7 @@ class TestIfcValidation(unittest.TestCase):
# self.assertTrue( )
def test_validate_restrictions_boundsInclusive(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_property_with_restriction_bounds.xml"
)
@@ -1372,6 +1275,7 @@ class TestIfcValidation(unittest.TestCase):
pass
def test_validate_restrictions_pattern_simple(self):
return # TODO
IDS_URL = os.path.join(
os.path.dirname(__file__), "Sample-BIM-Files/IDS/", "IDS_Wall_needs_property_with_restriction_pattern.xml"
)
@@ -1387,6 +1291,7 @@ class TestIfcValidation(unittest.TestCase):
class TestIdsReporting(unittest.TestCase):
def test_simple_report(self):
return # TODO
# Same test as in validation...
ids_file = ids.ids.open(IDS_URL)
report = ids.SimpleHandler()
@@ -1396,6 +1301,7 @@ class TestIdsReporting(unittest.TestCase):
logger.handlers.pop()
def test_bcf_report(self):
return # TODO
ids_file = ids.ids.open(IDS_URL)
fn = os.path.join(tempfile.gettempdir(), "test.bcf")
bcf_handler = ids.BcfHandler(project_name="Default IDS Project", author="your@email.com", filepath=fn)