Files
IfcOpenShell/src/ifcpatch/test/test_RegenerateGlobalIds.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
2.1 KiB
Python
Raw Normal View History

2024-04-02 12:32:36 +05:00
# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2022 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/>.
2025-12-19 18:53:04 +05:00
2025-06-09 10:59:22 +05:00
import ifcopenshell.api.root
2025-12-19 18:53:04 +05:00
import ifcpatch
import test.bootstrap
2024-04-02 12:32:36 +05:00
class TestRegenerateGlobalIds(test.bootstrap.IFC4):
2024-04-02 12:32:36 +05:00
def test_run(self):
2025-06-09 10:59:22 +05:00
project = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
wall = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWall")
2024-04-02 12:32:36 +05:00
used_guids = {project.GlobalId, wall.GlobalId}
ifcpatch.execute({"file": self.file, "recipe": "RegenerateGlobalIds", "arguments": [False]})
2024-04-02 12:32:36 +05:00
new_guids = {project.GlobalId, wall.GlobalId}
assert not new_guids.intersection(used_guids)
def test_regenerate_guids_for_duplicates(self):
2025-06-09 10:59:22 +05:00
project = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcProject")
wall1 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWall")
wall2 = ifcopenshell.api.root.create_entity(self.file, ifc_class="IfcWall")
2024-04-02 12:32:36 +05:00
wall1.GlobalId = wall2.GlobalId
used_guids = {project, wall1.GlobalId, wall2.GlobalId}
ifcpatch.execute({"file": self.file, "recipe": "RegenerateGlobalIds", "arguments": [True]})
2024-04-02 12:32:36 +05:00
new_guids = {project, wall1.GlobalId, wall2.GlobalId}
assert len(new_guids) == 3
assert len(new_guids.intersection(used_guids)) == 2
class TestRegenerateGlobalIdsIFC2X3(test.bootstrap.IFC2X3, TestRegenerateGlobalIds):
pass