2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of IfcOpenShell.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# IfcOpenShell is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2021-10-01 14:48:44 +10:00
|
|
|
import test.bootstrap
|
|
|
|
|
import ifcopenshell.api
|
|
|
|
|
|
|
|
|
|
|
2024-05-13 12:32:58 +05:00
|
|
|
class TestRemoveRoleIFC2X3(test.bootstrap.IFC2X3):
|
2021-10-01 14:48:44 +10:00
|
|
|
def test_removing_a_role(self):
|
|
|
|
|
role = self.file.createIfcActorRole()
|
|
|
|
|
ifcopenshell.api.run("owner.remove_role", self.file, role=role)
|
|
|
|
|
assert len(self.file.by_type("IfcActorRole")) == 0
|
|
|
|
|
|
|
|
|
|
def test_ensuring_organisation_cardinality_is_valid(self):
|
|
|
|
|
role = self.file.createIfcActorRole()
|
|
|
|
|
organisation = self.file.createIfcOrganization()
|
|
|
|
|
organisation.Roles = [role]
|
|
|
|
|
ifcopenshell.api.run("owner.remove_role", self.file, role=role)
|
|
|
|
|
assert organisation.Roles is None
|
|
|
|
|
|
|
|
|
|
def test_ensuring_person_cardinality_is_valid(self):
|
|
|
|
|
role = self.file.createIfcActorRole()
|
|
|
|
|
person = self.file.createIfcPerson()
|
|
|
|
|
person.Roles = [role]
|
|
|
|
|
ifcopenshell.api.run("owner.remove_role", self.file, role=role)
|
|
|
|
|
assert person.Roles is None
|
|
|
|
|
|
|
|
|
|
def test_ensuring_person_and_organisation_cardinality_is_valid(self):
|
|
|
|
|
role = self.file.createIfcActorRole()
|
|
|
|
|
person_and_organisation = self.file.createIfcPersonAndOrganization()
|
|
|
|
|
person_and_organisation.Roles = [role]
|
|
|
|
|
ifcopenshell.api.run("owner.remove_role", self.file, role=role)
|
|
|
|
|
assert person_and_organisation.Roles is None
|
|
|
|
|
|
2024-05-13 12:32:58 +05:00
|
|
|
|
|
|
|
|
class TestRemoveRoleIFC4(test.bootstrap.IFC4, TestRemoveRoleIFC2X3):
|
2021-10-01 14:48:44 +10:00
|
|
|
def test_deleting_resource_approval_relationships(self):
|
2024-05-13 12:32:58 +05:00
|
|
|
organisation = self.file.create_entity("IfcOrganization")
|
|
|
|
|
self.file.create_entity("IfcResourceApprovalRelationship", RelatedResourceObjects=[organisation])
|
2021-10-01 14:48:44 +10:00
|
|
|
ifcopenshell.api.run("owner.remove_organisation", self.file, organisation=organisation)
|
|
|
|
|
assert len(self.file.by_type("IfcResourceApprovalRelationship")) == 0
|
|
|
|
|
|
|
|
|
|
def test_deleting_resource_constraint_relationships(self):
|
2024-05-13 12:32:58 +05:00
|
|
|
organisation = self.file.create_entity("IfcOrganization")
|
|
|
|
|
self.file.create_entity("IfcResourceConstraintRelationship", RelatedResourceObjects=[organisation])
|
2021-10-01 14:48:44 +10:00
|
|
|
ifcopenshell.api.run("owner.remove_organisation", self.file, organisation=organisation)
|
|
|
|
|
assert len(self.file.by_type("IfcResourceConstraintRelationship")) == 0
|
|
|
|
|
|
|
|
|
|
def test_deleting_external_reference_relationships(self):
|
2024-05-13 12:32:58 +05:00
|
|
|
organisation = self.file.create_entity("IfcOrganization")
|
|
|
|
|
self.file.create_entity("IfcExternalReferenceRelationship", RelatedResourceObjects=[organisation])
|
2021-10-01 14:48:44 +10:00
|
|
|
ifcopenshell.api.run("owner.remove_organisation", self.file, organisation=organisation)
|
|
|
|
|
assert len(self.file.by_type("IfcExternalReferenceRelationship")) == 0
|