2021-11-04 18:02:50 +11:00
|
|
|
# BlenderBIM Add-on - OpenBIM Blender Add-on
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of BlenderBIM Add-on.
|
|
|
|
|
#
|
|
|
|
|
# BlenderBIM Add-on 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.
|
|
|
|
|
#
|
|
|
|
|
# BlenderBIM Add-on 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 BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import bpy
|
2021-11-05 12:20:33 +11:00
|
|
|
import brickschema
|
2021-11-04 18:02:50 +11:00
|
|
|
import ifcopenshell
|
|
|
|
|
import blenderbim.core.tool
|
|
|
|
|
import blenderbim.tool as tool
|
2021-12-09 17:45:08 +11:00
|
|
|
from rdflib.namespace import RDF
|
|
|
|
|
from rdflib import Literal, URIRef, Namespace
|
2021-11-04 18:02:50 +11:00
|
|
|
from test.bim.bootstrap import NewFile
|
|
|
|
|
from blenderbim.tool.brick import Brick as subject
|
|
|
|
|
from blenderbim.tool.brick import BrickStore
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestImplementsTool(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
assert isinstance(subject(), blenderbim.core.tool.Brick)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestAddBrickBreadcrumb(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
subject.set_active_brick_class("brick_class")
|
|
|
|
|
subject.add_brick_breadcrumb()
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.brick_breadcrumbs[0].name == "brick_class"
|
|
|
|
|
subject.add_brick_breadcrumb()
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.brick_breadcrumbs[1].name == "brick_class"
|
|
|
|
|
|
|
|
|
|
|
2021-12-09 17:45:08 +11:00
|
|
|
class TestAddBrickifcProject(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
ifc = ifcopenshell.file()
|
|
|
|
|
tool.Ifc.set(ifc)
|
|
|
|
|
project = ifc.createIfcProject(ifcopenshell.guid.new())
|
|
|
|
|
project.Name = "My Project"
|
|
|
|
|
BrickStore.graph = brickschema.Graph()
|
|
|
|
|
result = subject.add_brickifc_project("http://example.org/digitaltwin#")
|
|
|
|
|
assert result == f"http://example.org/digitaltwin#{project.GlobalId}"
|
|
|
|
|
brick = URIRef(result)
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples((brick, RDF.type, URIRef("https://brickschema.org/extension/ifc#Project")))
|
|
|
|
|
)
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples(
|
|
|
|
|
(brick, URIRef("http://www.w3.org/2000/01/rdf-schema#label"), Literal("My Project"))
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples(
|
|
|
|
|
(brick, URIRef("https://brickschema.org/extension/ifc#projectID"), Literal(project.GlobalId))
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples(
|
|
|
|
|
(
|
|
|
|
|
brick,
|
|
|
|
|
URIRef("https://brickschema.org/extension/ifc#fileLocation"),
|
|
|
|
|
Literal(bpy.context.scene.BIMProperties.ifc_file),
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestAddBrickifcReference(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestAddBrickifcProject().test_run()
|
|
|
|
|
element = tool.Ifc.get().createIfcChiller(ifcopenshell.guid.new())
|
|
|
|
|
project = URIRef(f"http://example.org/digitaltwin#{tool.Ifc.get().by_type('IfcProject')[0].GlobalId}")
|
|
|
|
|
subject.add_brickifc_reference("http://example.org/digitaltwin#foo", element, project)
|
|
|
|
|
brick = URIRef("http://example.org/digitaltwin#foo")
|
|
|
|
|
bnode = list(
|
|
|
|
|
BrickStore.graph.triples((brick, URIRef("https://brickschema.org/extension/ifc#hasIFCReference"), None))
|
|
|
|
|
)[0][2]
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples(
|
|
|
|
|
(bnode, URIRef("https://brickschema.org/extension/ifc#hasProjectReference"), project)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
assert list(
|
|
|
|
|
BrickStore.graph.triples(
|
|
|
|
|
(bnode, URIRef("https://brickschema.org/extension/ifc#globalID"), Literal(element.GlobalId))
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2021-11-04 18:02:50 +11:00
|
|
|
class TestClearBrickBrowser(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.bricks.add()
|
|
|
|
|
subject.clear_brick_browser()
|
|
|
|
|
assert len(bpy.context.scene.BIMBrickProperties.bricks) == 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestClearProject(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
BrickStore.graph = "graph"
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.active_brick_class == "brick_class"
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.brick_breadcrumbs.add().name = "foo"
|
|
|
|
|
subject.clear_project()
|
|
|
|
|
assert BrickStore.graph is None
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.active_brick_class == ""
|
|
|
|
|
assert len(bpy.context.scene.BIMBrickProperties.brick_breadcrumbs) == 0
|
|
|
|
|
|
|
|
|
|
|
2021-11-17 13:27:07 +11:00
|
|
|
class TestExportBrickAttributes(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
assert subject.export_brick_attributes("ex:#floor") == {"Identification": "ex:#floor", "Name": "floor"}
|
|
|
|
|
|
2021-11-29 20:19:58 +11:00
|
|
|
def test_run_ifc2x3(self):
|
|
|
|
|
tool.Ifc.set(ifcopenshell.file(schema="IFC2X3"))
|
|
|
|
|
assert subject.export_brick_attributes("ex:#floor") == {"ItemReference": "ex:#floor", "Name": "floor"}
|
|
|
|
|
|
2021-11-17 13:27:07 +11:00
|
|
|
|
|
|
|
|
class TestGetBrickPath(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestLoadBrickFile().test_run()
|
|
|
|
|
cwd = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
assert subject.get_brick_path() == os.path.join(cwd, "..", "files", "spaces.ttl")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestGetBrickPathName(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestLoadBrickFile().test_run()
|
|
|
|
|
assert subject.get_brick_path_name() == "spaces.ttl"
|
|
|
|
|
|
|
|
|
|
|
2021-12-09 17:45:08 +11:00
|
|
|
class TestGetBrickifcProject(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestAddBrickifcProject().test_run()
|
|
|
|
|
assert (
|
|
|
|
|
subject.get_brickifc_project()
|
|
|
|
|
== f"http://example.org/digitaltwin#{tool.Ifc.get().by_type('IfcProject')[0].GlobalId}"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2021-11-04 18:02:50 +11:00
|
|
|
class TestGetItemClass(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestLoadBrickFile().test_run()
|
2021-11-05 09:19:42 +11:00
|
|
|
assert subject.get_item_class("ex:#floor") == "Floor"
|
2021-11-04 18:02:50 +11:00
|
|
|
|
|
|
|
|
|
2021-11-17 13:27:07 +11:00
|
|
|
class TestGetLibraryBrickReference(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
ifc = ifcopenshell.file()
|
|
|
|
|
library = ifc.createIfcLibraryInformation()
|
|
|
|
|
reference = ifc.createIfcLibraryReference(Identification="ex:#floor", ReferencedLibrary=library)
|
|
|
|
|
assert subject.get_library_brick_reference(library, "ex:#floor") == reference
|
|
|
|
|
|
|
|
|
|
def test_run_ifc2x3(self):
|
|
|
|
|
ifc = ifcopenshell.file(schema="IFC2X3")
|
|
|
|
|
tool.Ifc.set(ifc)
|
|
|
|
|
reference = ifc.createIfcLibraryReference(ItemReference="ex:#floor")
|
|
|
|
|
library = ifc.createIfcLibraryInformation(LibraryReference=[reference])
|
|
|
|
|
assert subject.get_library_brick_reference(library, "ex:#floor") == reference
|
|
|
|
|
|
|
|
|
|
|
2021-12-09 17:45:08 +11:00
|
|
|
class TestGetNamespace(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
assert subject.get_namespace("http://example.org/digitaltwin#globalid") == "http://example.org/digitaltwin#"
|
|
|
|
|
|
|
|
|
|
|
2021-11-04 18:02:50 +11:00
|
|
|
class TestImportBrickClasses(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestLoadBrickFile().test_run()
|
|
|
|
|
subject.import_brick_classes("Class")
|
2021-11-05 09:19:42 +11:00
|
|
|
assert len(bpy.context.scene.BIMBrickProperties.bricks) == 2
|
2021-11-04 18:02:50 +11:00
|
|
|
brick = bpy.context.scene.BIMBrickProperties.bricks[0]
|
2021-11-05 12:20:33 +11:00
|
|
|
assert brick.name == "Building"
|
|
|
|
|
assert brick.uri == "https://brickschema.org/schema/Brick#Building"
|
|
|
|
|
assert brick.total_items == 1
|
|
|
|
|
brick = bpy.context.scene.BIMBrickProperties.bricks[1]
|
2021-11-04 18:02:50 +11:00
|
|
|
assert brick.name == "Location"
|
|
|
|
|
assert brick.uri == "https://brickschema.org/schema/Brick#Location"
|
2021-11-05 12:20:33 +11:00
|
|
|
assert brick.total_items == 1
|
2021-11-04 18:02:50 +11:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestImportBrickItems(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
TestLoadBrickFile().test_run()
|
2021-11-05 09:19:42 +11:00
|
|
|
subject.import_brick_items("Building")
|
|
|
|
|
assert len(bpy.context.scene.BIMBrickProperties.bricks) == 1
|
2021-11-04 18:02:50 +11:00
|
|
|
brick = bpy.context.scene.BIMBrickProperties.bricks[0]
|
2021-11-05 09:19:42 +11:00
|
|
|
assert brick.name == "bldg"
|
|
|
|
|
assert brick.uri == "ex:#bldg"
|
2021-11-04 18:02:50 +11:00
|
|
|
assert brick.total_items == 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestLoadBrickFile(NewFile):
|
|
|
|
|
def test_run(self):
|
2021-11-05 12:20:33 +11:00
|
|
|
# We stub the schema to make tests run faster
|
|
|
|
|
BrickStore.schema = brickschema.Graph()
|
|
|
|
|
cwd = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
schema_path = os.path.join(cwd, "..", "files", "BrickStub.ttl")
|
|
|
|
|
BrickStore.schema.load_file(schema_path)
|
|
|
|
|
|
|
|
|
|
# This is the actual test
|
2021-11-04 18:02:50 +11:00
|
|
|
cwd = os.path.dirname(os.path.realpath(__file__))
|
2021-11-05 09:19:42 +11:00
|
|
|
filepath = os.path.join(cwd, "..", "files", "spaces.ttl")
|
2021-11-04 18:02:50 +11:00
|
|
|
subject.load_brick_file(filepath)
|
|
|
|
|
assert BrickStore.graph
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestPopBrickBreadcrumb(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.brick_breadcrumbs.add().name = "foo"
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.brick_breadcrumbs.add().name = "bar"
|
|
|
|
|
assert subject.pop_brick_breadcrumb() == "bar"
|
|
|
|
|
assert len(bpy.context.scene.BIMBrickProperties.brick_breadcrumbs) == 1
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.brick_breadcrumbs[0].name == "foo"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestSelectBrowserItem(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
subject.set_active_brick_class("brick_class")
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.active_brick_class == "brick_class"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestSetActiveBrickClass(NewFile):
|
|
|
|
|
def test_run(self):
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.bricks.add().name = "foo"
|
|
|
|
|
bpy.context.scene.BIMBrickProperties.bricks.add().name = "bar"
|
|
|
|
|
subject.select_browser_item("namespace#bar")
|
|
|
|
|
assert bpy.context.scene.BIMBrickProperties.active_brick_index == 1
|