mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
# Bonsai - OpenBIM Blender Add-on
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of Bonsai.
|
|
#
|
|
# Bonsai is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Bonsai 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Bonsai. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import bpy
|
|
import ifcopenshell
|
|
import blenderbim.core.tool
|
|
import blenderbim.tool as tool
|
|
from test.bim.bootstrap import NewFile
|
|
from blenderbim.tool.nest import Nest as subject
|
|
|
|
|
|
class TestImplementsTool(NewFile):
|
|
def test_run(self):
|
|
assert isinstance(subject(), blenderbim.core.tool.Nest)
|
|
|
|
|
|
class TestCanNest(NewFile):
|
|
def test_elements_can_nest(self):
|
|
ifc = ifcopenshell.file()
|
|
tool.Ifc.set(ifc)
|
|
element = ifc.createIfcElementAssembly()
|
|
element_obj = bpy.data.objects.new("Object", None)
|
|
tool.Ifc.link(element, element_obj)
|
|
subelement = ifc.createIfcBeam()
|
|
subelement_obj = bpy.data.objects.new("Object", None)
|
|
tool.Ifc.link(subelement, subelement_obj)
|
|
assert subject.can_nest(element_obj, subelement_obj) is True
|
|
|
|
def test_unlinked_elements_cannot_nest(self):
|
|
ifc = ifcopenshell.file()
|
|
tool.Ifc.set(ifc)
|
|
element_obj = bpy.data.objects.new("Object", None)
|
|
subelement_obj = bpy.data.objects.new("Object", None)
|
|
assert subject.can_nest(element_obj, subelement_obj) is False
|
|
|
|
|
|
class TestDisableEditing(NewFile):
|
|
def test_run(self):
|
|
obj = bpy.data.objects.new("Object", None)
|
|
subject.enable_editing(obj)
|
|
subject.disable_editing(obj)
|
|
assert obj.BIMObjectNestProperties.is_editing is False
|
|
|
|
|
|
class TestEnableEditing(NewFile):
|
|
def test_run(self):
|
|
obj = bpy.data.objects.new("Object", None)
|
|
subject.enable_editing(obj)
|
|
assert obj.BIMObjectNestProperties.is_editing is True
|
|
|
|
|
|
class TestGetContainer(NewFile):
|
|
def test_run(self):
|
|
ifc = ifcopenshell.file()
|
|
tool.Ifc.set(ifc)
|
|
element = ifc.createIfcWall()
|
|
container = ifc.createIfcBuildingStorey()
|
|
ifcopenshell.api.run("spatial.assign_container", ifc, products=[element], relating_structure=container)
|
|
assert subject.get_container(element) == container
|