mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
Application data in IFC now reflects the latest IFC version tag
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import test.bootstrap
|
||||
import ifcopenshell.api
|
||||
|
||||
|
||||
class TestAddAddress(test.bootstrap.IFC4):
|
||||
def test_adding_to_a_person(self):
|
||||
person = self.file.createIfcPerson()
|
||||
postal = ifcopenshell.api.run(
|
||||
"owner.add_address", self.file, assigned_object=person, ifc_class="IfcPostalAddress"
|
||||
)
|
||||
telecom = ifcopenshell.api.run(
|
||||
"owner.add_address", self.file, assigned_object=person, ifc_class="IfcTelecomAddress"
|
||||
)
|
||||
assert postal.is_a("IfcPostalAddress")
|
||||
assert telecom.is_a("IfcTelecomAddress")
|
||||
assert postal.Purpose == telecom.Purpose == "OFFICE"
|
||||
assert postal in person.Addresses
|
||||
assert telecom in person.Addresses
|
||||
|
||||
def test_adding_to_a_organisation(self):
|
||||
organisation = self.file.createIfcOrganization()
|
||||
postal = ifcopenshell.api.run(
|
||||
"owner.add_address", self.file, assigned_object=organisation, ifc_class="IfcPostalAddress"
|
||||
)
|
||||
telecom = ifcopenshell.api.run(
|
||||
"owner.add_address", self.file, assigned_object=organisation, ifc_class="IfcTelecomAddress"
|
||||
)
|
||||
assert postal.is_a("IfcPostalAddress")
|
||||
assert telecom.is_a("IfcTelecomAddress")
|
||||
assert postal.Purpose == telecom.Purpose == "OFFICE"
|
||||
assert postal in organisation.Addresses
|
||||
assert telecom in organisation.Addresses
|
||||
@@ -0,0 +1,21 @@
|
||||
import test.bootstrap
|
||||
import ifcopenshell.api
|
||||
|
||||
|
||||
class TestAddApplication(test.bootstrap.IFC4):
|
||||
def test_adding_the_ifcopenshell_application(self):
|
||||
application = ifcopenshell.api.run("owner.add_application", self.file)
|
||||
developer = application.ApplicationDeveloper
|
||||
assert application.Version == ifcopenshell.version
|
||||
assert application.ApplicationFullName == "IfcOpenShell"
|
||||
assert application.ApplicationIdentifier == "IfcOpenShell"
|
||||
assert developer.is_a("IfcOrganization")
|
||||
assert developer.Identification == "IfcOpenShell"
|
||||
assert developer.Name == "IfcOpenShell"
|
||||
assert developer.Description == "IfcOpenShell is an open source software library that helps users and software developers to work with IFC data."
|
||||
assert developer.Roles[0].Role == "USERDEFINED"
|
||||
assert developer.Roles[0].UserDefinedRole == "CONTRIBUTOR"
|
||||
assert developer.Addresses[0].is_a("IfcTelecomAddress")
|
||||
assert developer.Addresses[0].Purpose == "USERDEFINED"
|
||||
assert developer.Addresses[0].UserDefinedPurpose == "WEBPAGE"
|
||||
assert developer.Addresses[0].WWWHomePageURL == "https://ifcopenshell.org"
|
||||
Reference in New Issue
Block a user