sequence.copy_work_schedule #6901

Similar to e50215ddc but for IfcWorkSchedules

Button location - https://files.catbox.moe/jfd1ol.png
This commit is contained in:
Andrej730
2025-07-24 19:25:36 +05:00
parent f5b28c0df8
commit b76b05fc71
11 changed files with 135 additions and 3 deletions
@@ -23,6 +23,7 @@ import test.bootstrap
class TestCopyCostSchedule(test.bootstrap.IFC4):
def test_run(self):
# Shared code logic with test_copy_work_schedule.
schedule = ifcopenshell.api.cost.add_cost_schedule(self.file, name="Foo")
item = ifcopenshell.api.cost.add_cost_item(self.file, cost_schedule=schedule)
ifcopenshell.api.cost.add_cost_item(self.file, cost_item=item) # Subitem.
@@ -0,0 +1,47 @@
# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2024 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/>.
import ifcopenshell.api.sequence
import ifcopenshell.util.sequence
import test.bootstrap
class TestCopyWorkSchedule(test.bootstrap.IFC4):
def test_run(self):
self.file.create_entity("IfcProject")
# Shared code logic with test_copy_cost_schedule.
work_plan = ifcopenshell.api.sequence.add_work_plan(self.file)
schedule = ifcopenshell.api.sequence.add_work_schedule(self.file, work_plan=work_plan)
task = ifcopenshell.api.sequence.add_task(self.file, work_schedule=schedule)
ifcopenshell.api.sequence.add_task(self.file, parent_task=task) # Subtask.
old_cost_items = set(self.file.by_type("IfcTask"))
new_schedule = ifcopenshell.api.sequence.copy_work_schedule(self.file, schedule)
# We don't check how well IfcTasks are copied,
# it should be tested separately in test_duplicate_task.
assert isinstance(new_schedule, ifcopenshell.entity_instance)
assert new_schedule != schedule
assert len(ifcopenshell.util.sequence.get_root_tasks(new_schedule)) == 1
new_tasks = set(ifcopenshell.util.sequence.get_work_schedule_tasks(new_schedule))
assert len(new_tasks) == 2
assert len(new_tasks.intersection(old_cost_items)) == 0
class TestCopyWorkScheduleIFC4X3(test.bootstrap.IFC4X3, TestCopyWorkSchedule):
pass