mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-17 02:49:12 +00:00
840 lines
30 KiB
Python
840 lines
30 KiB
Python
# 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
|
|
import traceback
|
|
import webbrowser
|
|
import ifcopenshell
|
|
import blenderbim.tool as tool
|
|
import blenderbim.bim
|
|
from blenderbim.bim.ifc import IfcStore
|
|
from blenderbim.tool.brick import BrickStore
|
|
from blenderbim.bim.module.model.data import AuthoringData
|
|
from pytest_bdd import scenarios, given, when, then, parsers
|
|
from mathutils import Vector
|
|
|
|
scenarios("feature")
|
|
|
|
variables = {
|
|
"cwd": os.getcwd(),
|
|
"ifc": "IfcStore.get_file()",
|
|
"pset_ifc": "IfcStore.pset_template_file",
|
|
"classification_ifc": "IfcStore.classification_file",
|
|
}
|
|
|
|
# Monkey-patch webbrowser opening since we want to test headlessly
|
|
webbrowser.open = lambda x: True
|
|
|
|
|
|
def replace_variables(value):
|
|
if "{cwd}" in value and os.name == "nt":
|
|
value = value.replace("/", "\\").replace("{cwd}", os.getcwd()).replace("\\", "\\\\")
|
|
for key, new_value in variables.items():
|
|
value = value.replace("{" + key + "}", str(new_value))
|
|
return value
|
|
|
|
|
|
def is_x(number, x):
|
|
return abs(number - x) < 1e-6
|
|
|
|
|
|
def vectors_are_equal(v1, v2):
|
|
assert len(v1) == len(v2), f"Compared vectors are not equal length: {v1}, {v2}"
|
|
return all(is_x(v1[i], v2[i]) for i in range(len(v1)))
|
|
|
|
|
|
@given("an untestable scenario")
|
|
def an_untestable_scenario():
|
|
pass
|
|
|
|
|
|
@given("an empty Blender session")
|
|
@when("an empty Blender session is started")
|
|
def an_empty_blender_session():
|
|
IfcStore.purge()
|
|
bpy.ops.wm.read_homefile(app_template="")
|
|
if len(bpy.data.objects) > 0:
|
|
bpy.data.batch_remove(bpy.data.objects)
|
|
bpy.ops.outliner.orphans_purge(do_local_ids=True, do_linked_ids=True, do_recursive=True)
|
|
if len(bpy.data.materials) > 0:
|
|
bpy.data.batch_remove(bpy.data.materials)
|
|
|
|
# default project settings
|
|
bpy.context.scene.unit_settings.system = "METRIC"
|
|
bpy.context.scene.unit_settings.length_unit = "MILLIMETERS"
|
|
bpy.context.scene.BIMProjectProperties.template_file = "0"
|
|
bpy.context.preferences.addons["blenderbim"].preferences.should_play_chaching_sound = False
|
|
|
|
|
|
@given("an empty IFC project")
|
|
def an_empty_ifc_project():
|
|
an_empty_blender_session()
|
|
bpy.ops.bim.create_project()
|
|
|
|
|
|
@given("an empty IFC2X3 project")
|
|
def an_empty_ifc_2x3_project():
|
|
an_empty_blender_session()
|
|
bpy.context.scene.BIMProjectProperties.export_schema = "IFC2X3"
|
|
bpy.ops.bim.create_project()
|
|
|
|
|
|
@given("the Brickschema is stubbed")
|
|
def the_brickschema_is_stubbed():
|
|
# This makes things run faster since we don't need to load the entire brick schema
|
|
cwd = os.path.dirname(os.path.realpath(__file__))
|
|
BrickStore.schema = os.path.join(cwd, "..", "files", "BrickStub.ttl")
|
|
|
|
|
|
@when("I load a new pset template file")
|
|
def i_load_a_new_pset_template_file():
|
|
IfcStore.pset_template_path = bpy.context.scene.BIMPsetTemplateProperties.pset_template_files
|
|
IfcStore.pset_template_file = ifcopenshell.open(IfcStore.pset_template_path)
|
|
|
|
|
|
@given("I add a cube")
|
|
@when("I add a cube")
|
|
def i_add_a_cube():
|
|
bpy.ops.mesh.primitive_cube_add()
|
|
|
|
|
|
@given("I add an empty")
|
|
@when("I add an empty")
|
|
def i_add_an_empty():
|
|
bpy.ops.object.empty_add()
|
|
|
|
|
|
@given("I add a sun")
|
|
@when("I add a sun")
|
|
def i_add_a_sun():
|
|
bpy.ops.object.light_add(type="SUN")
|
|
|
|
|
|
@given("I add a material")
|
|
@when("I add a material")
|
|
def i_add_a_material():
|
|
bpy.context.active_object.active_material = bpy.data.materials.new("Material")
|
|
|
|
|
|
@given(parsers.parse('I add a new item to "{collection}"'))
|
|
@when(parsers.parse('I add a new item to "{collection}"'))
|
|
def i_add_a_new_collection_item(collection):
|
|
try:
|
|
eval(f"bpy.context.{collection}.add()")
|
|
except:
|
|
assert False, "Collection does not exist"
|
|
|
|
|
|
@given(parsers.parse('the material "{name}" colour is set to "{colour}"'))
|
|
@when(parsers.parse('the material "{name}" colour is set to "{colour}"'))
|
|
def the_material_name_colour_is_set_to_colour(name, colour):
|
|
obj = the_material_name_exists(name)
|
|
obj.diffuse_color = [float(c) for c in colour.split(",")]
|
|
blenderbim.bim.handler.color_callback(obj, None)
|
|
|
|
|
|
@given("I add an array modifier")
|
|
def i_add_a_cube():
|
|
bpy.ops.object.modifier_add(type="ARRAY")
|
|
|
|
|
|
@given(parsers.parse('I add a cube of size "{size}" at "{location}"'))
|
|
@when(parsers.parse('I add a cube of size "{size}" at "{location}"'))
|
|
def i_add_a_cube_of_size_size_at_location(size, location):
|
|
bpy.ops.mesh.primitive_cube_add(size=float(size), location=[float(co) for co in location.split(",")])
|
|
|
|
|
|
@given(parsers.parse('I add a plane of size "{size}" at "{location}"'))
|
|
@when(parsers.parse('I add a plane of size "{size}" at "{location}"'))
|
|
def i_add_a_plane_of_size_size_at_location(size, location):
|
|
bpy.ops.mesh.primitive_plane_add(size=float(size), location=[float(co) for co in location.split(",")])
|
|
|
|
|
|
@then(parsers.parse('I press "{operator}" and expect error "{error_msg}"'))
|
|
def i_press_operator_and_expect_error(operator, error_msg):
|
|
operator = replace_variables(operator)
|
|
try:
|
|
if "(" in operator:
|
|
exec(f"bpy.ops.{operator}")
|
|
else:
|
|
exec(f"bpy.ops.{operator}()")
|
|
assert False, f"Operator bpy.ops.{operator} ran without exception '{error_msg}'"
|
|
except Exception as e:
|
|
actual_error_msg = str(e).strip()
|
|
if str(e).strip() != error_msg:
|
|
traceback.print_exc()
|
|
assert False, f"Got different exception running bpy.ops.{operator} - '{actual_error_msg}' instead of '{error_msg}'"
|
|
|
|
@given(parsers.parse('I press "{operator}"'))
|
|
@when(parsers.parse('I press "{operator}"'))
|
|
def i_press_operator(operator):
|
|
operator = replace_variables(operator)
|
|
try:
|
|
if "(" in operator:
|
|
exec(f"bpy.ops.{operator}")
|
|
else:
|
|
exec(f"bpy.ops.{operator}()")
|
|
except Exception as e:
|
|
traceback.print_exc()
|
|
assert False, f"Failed to run operator bpy.ops.{operator} because of {e}"
|
|
|
|
|
|
@given(parsers.parse('I evaluate expression "{expression}"'))
|
|
@when(parsers.parse('I evaluate expression "{expression}"'))
|
|
def i_evaluate_expression(expression):
|
|
expression = replace_variables(expression)
|
|
exec(expression)
|
|
|
|
|
|
@when("I duplicate the selected objects")
|
|
def i_duplicate_the_selected_objects():
|
|
bpy.ops.bim.override_object_duplicate_move()
|
|
blenderbim.bim.handler.active_object_callback()
|
|
|
|
|
|
@when("I deselect all objects")
|
|
def i_deselect_all_objects():
|
|
bpy.context.view_layer.objects.active = None
|
|
bpy.ops.object.select_all(action="DESELECT")
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" is selected'))
|
|
@when(parsers.parse('the object "{name}" is selected'))
|
|
def the_object_name_is_selected(name):
|
|
i_deselect_all_objects()
|
|
additionally_the_object_name_is_selected(name)
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is selected'))
|
|
def then_the_object_name_is_selected(name):
|
|
obj = the_object_name_exists(name)
|
|
assert obj in bpy.context.selected_objects
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" is moved to "{location}"'))
|
|
@when(parsers.parse('the object "{name}" is moved to "{location}"'))
|
|
def the_object_name_is_moved_to_location(name, location):
|
|
location = [float(co) for co in location.split(",")]
|
|
the_object_name_exists(name).matrix_world[0][3] = location[0]
|
|
the_object_name_exists(name).matrix_world[1][3] = location[1]
|
|
the_object_name_exists(name).matrix_world[2][3] = location[2]
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" is scaled to "{scale}"'))
|
|
@when(parsers.parse('the object "{name}" is scaled to "{scale}"'))
|
|
def the_object_name_is_scaled_to_scale(name, scale):
|
|
the_object_name_exists(name).scale *= float(scale)
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" is placed in the collection "{collection}"'))
|
|
@when(parsers.parse('the object "{name}" is placed in the collection "{collection}"'))
|
|
def the_object_name_is_placed_in_the_collection_collection(name, collection):
|
|
obj = the_object_name_exists(name)
|
|
[c.objects.unlink(obj) for c in obj.users_collection]
|
|
bpy.data.collections.get(collection).objects.link(obj)
|
|
|
|
|
|
@given(parsers.parse('additionally the object "{name}" is selected'))
|
|
@when(parsers.parse('additionally the object "{name}" is selected'))
|
|
def additionally_the_object_name_is_selected(name):
|
|
obj = bpy.context.scene.objects.get(name)
|
|
if not obj:
|
|
assert False, f'The object "{name}" could not be selected'
|
|
bpy.context.view_layer.objects.active = obj
|
|
obj.select_set(True)
|
|
|
|
|
|
@given(parsers.parse('I rename the object "{name1}" to "{name2}"'))
|
|
@when(parsers.parse('I rename the object "{name1}" to "{name2}"'))
|
|
def i_rename_the_object_name1_to_name2(name1, name2):
|
|
the_object_name_exists(name1).name = name2
|
|
|
|
|
|
@given(parsers.parse('I set "{prop}" to "{value}"'))
|
|
@when(parsers.parse('I set "{prop}" to "{value}"'))
|
|
def i_set_prop_to_value(prop, value):
|
|
value = replace_variables(value)
|
|
try:
|
|
eval(f"bpy.context.{prop}")
|
|
except:
|
|
assert False, f"Property {prop} does not exist when trying to set to value {value}"
|
|
try:
|
|
exec(f'bpy.context.{prop} = r"{value}"')
|
|
except:
|
|
exec(f"bpy.context.{prop} = {value}")
|
|
|
|
|
|
@given(parsers.parse('I set "{prop}" to ""'))
|
|
@when(parsers.parse('I set "{prop}" to ""'))
|
|
def i_set_prop_to_value(prop):
|
|
try:
|
|
eval(f"bpy.context.{prop}")
|
|
except:
|
|
assert False, f"Property {prop} does not exist"
|
|
try:
|
|
exec(f'bpy.context.{prop} = r""')
|
|
except:
|
|
pass
|
|
|
|
|
|
@when(parsers.parse('I am on frame "{number}"'))
|
|
def i_am_on_frame_number(number):
|
|
bpy.context.scene.frame_set(int(number))
|
|
|
|
|
|
@when("I delete the selected objects")
|
|
def i_delete_the_selected_objects():
|
|
bpy.ops.bim.override_object_delete()
|
|
|
|
|
|
@given(parsers.parse('the variable "{key}" is "{value}"'))
|
|
@when(parsers.parse('the variable "{key}" is "{value}"'))
|
|
@then(parsers.parse('the variable "{key}" is "{value}"'))
|
|
def the_variable_key_is_value(key, value):
|
|
variables[key] = eval(replace_variables(value))
|
|
|
|
|
|
@then("nothing happens")
|
|
def nothing_happens():
|
|
pass
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" exists'))
|
|
def the_object_name_exists(name) -> bpy.types.Object:
|
|
obj = bpy.data.objects.get(name)
|
|
if not obj:
|
|
assert False, f'The object "{name}" does not exist'
|
|
return obj
|
|
|
|
|
|
@given(parsers.parse('the collection "{name}" exists'))
|
|
@when(parsers.parse('the collection "{name}" exists'))
|
|
@then(parsers.parse('the collection "{name}" exists'))
|
|
def the_collection_name_exists(name) -> bpy.types.Collection:
|
|
obj = bpy.data.collections.get(name)
|
|
if not obj:
|
|
assert False, f'The collection "{name}" does not exist'
|
|
return obj
|
|
|
|
|
|
@then(parsers.parse('the object "{name1}" and "{name2}" are different elements'))
|
|
def the_object_name1_and_name2_are_different_elements(name1, name2):
|
|
ifc = an_ifc_file_exists()
|
|
element1 = ifc.by_id(the_object_name_exists(name1).BIMObjectProperties.ifc_definition_id)
|
|
element2 = ifc.by_id(the_object_name_exists(name2).BIMObjectProperties.ifc_definition_id)
|
|
assert element1 != element2, f"Objects {name1} and {name2} have same elements {element1} and {element2}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has a body of "{value}"'))
|
|
def the_object_name_has_a_body_of_value(name, value):
|
|
assert the_object_name_exists(name).data.body == value
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" has a "{type}" representation of "{context}"'))
|
|
@then(parsers.parse('the object "{name}" has a "{type}" representation of "{context}"'))
|
|
def the_object_name_has_a_representation_type_of_context(name, type, context):
|
|
ifc = an_ifc_file_exists()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
context, subcontext, target_view = context.split("/")
|
|
rep = ifcopenshell.util.representation.get_representation(element, context, subcontext or None, target_view or None)
|
|
assert rep
|
|
assert rep.RepresentationType == type
|
|
|
|
|
|
@given(parsers.parse('the object "{name}" data is a "{type}" representation of "{context}"'))
|
|
@then(parsers.parse('the object "{name}" data is a "{type}" representation of "{context}"'))
|
|
def the_object_name_has_a_representation_type_of_context(name, type, context):
|
|
ifc = an_ifc_file_exists()
|
|
context, subcontext, target_view = context.split("/")
|
|
rep = ifc.by_id(the_object_name_exists(name).data.BIMMeshProperties.ifc_definition_id)
|
|
assert rep
|
|
assert rep.RepresentationType == type
|
|
assert rep.ContextOfItems.ContextType == context
|
|
assert rep.ContextOfItems.ContextIdentifier == subcontext
|
|
assert rep.ContextOfItems.TargetView == target_view
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" exists'))
|
|
def the_material_name_exists(name) -> bpy.types.Material:
|
|
obj = bpy.data.materials.get(name)
|
|
if not obj:
|
|
assert False, f'The material "{name}" does not exist'
|
|
return obj
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" does not exist'))
|
|
def the_material_name_does_not_exist(name):
|
|
assert bpy.data.materials.get(name) is None, "Material exists"
|
|
|
|
|
|
@then("an IFC file does not exist")
|
|
def an_ifc_file_does_not_exist():
|
|
ifc = IfcStore.get_file()
|
|
if ifc:
|
|
assert False, "An IFC is available"
|
|
|
|
|
|
@then("an IFC file exists")
|
|
def an_ifc_file_exists():
|
|
ifc = IfcStore.get_file()
|
|
if not ifc:
|
|
assert False, "No IFC file is available"
|
|
return ifc
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" should display as "{mode}"'))
|
|
def the_object_name_should_display_as_mode(name, mode):
|
|
obj = the_object_name_exists(name)
|
|
assert obj.display_type == mode
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is voided by "{void}"'))
|
|
def the_object_name_is_voided_by_void(name, void):
|
|
ifc = IfcStore.get_file()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
assert any((rel for rel in element.HasOpenings if rel.RelatedOpeningElement.Name == void)), "No void found"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is not voided by "{void}"'))
|
|
def the_object_name_is_not_voided_by_void(name, void):
|
|
try:
|
|
the_object_name_is_voided_by_void(name, void)
|
|
except AssertionError:
|
|
return
|
|
assert False, "A void was found"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is not voided'))
|
|
def the_object_name_is_not_voided(name):
|
|
ifc = IfcStore.get_file()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
assert not element.HasOpenings, "A void was found"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is a void'))
|
|
def the_object_name_is_a_void(name):
|
|
ifc = IfcStore.get_file()
|
|
obj = the_object_name_exists(name)
|
|
element = ifc.by_id(obj.BIMObjectProperties.ifc_definition_id)
|
|
assert any((element.VoidsElements)), "No void was found"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is not a void'))
|
|
def the_object_name_is_not_a_void(name):
|
|
try:
|
|
the_object_name_is_a_void(name)
|
|
except AssertionError:
|
|
return
|
|
assert False, "A void was found"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is an "{ifc_class}"'))
|
|
def the_object_name_is_an_ifc_class(name, ifc_class):
|
|
ifc = an_ifc_file_exists()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
assert element.is_a(ifc_class), f'Object "{name}" is an {element.is_a()}'
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is not an IFC element'))
|
|
def the_object_name_is_not_an_ifc_element(name):
|
|
obj = the_object_name_exists(name)
|
|
ifc_definition_id = obj.BIMObjectProperties.ifc_definition_id
|
|
assert ifc_definition_id == 0, f"The object {obj} has an ID of {ifc_definition_id}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has no data'))
|
|
def the_object_name_has_no_data(name):
|
|
assert the_object_name_exists(name).data is None
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has data which is an IFC representation'))
|
|
def the_object_name_is_not_an_ifc_element(name):
|
|
id = the_object_name_exists(name).data.BIMMeshProperties.ifc_definition_id
|
|
assert id != 0, f"The ID is {id}"
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" is an IFC material'))
|
|
def the_material_name_is_an_ifc_material(name):
|
|
obj = the_material_name_exists(name)
|
|
ifc_definition_id = obj.BIMObjectProperties.ifc_definition_id
|
|
assert ifc_definition_id != 0, f"The material {obj} has no ID: {ifc_definition_id}"
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" is not an IFC material'))
|
|
def the_material_name_is_not_an_ifc_material(name):
|
|
obj = the_material_name_exists(name)
|
|
ifc_definition_id = obj.BIMObjectProperties.ifc_definition_id
|
|
assert ifc_definition_id == 0, f"The material {obj} has an ID of {ifc_definition_id}"
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" is an IFC style'))
|
|
def the_material_name_is_an_ifc_style(name):
|
|
obj = the_material_name_exists(name)
|
|
ifc_definition_id = obj.BIMMaterialProperties.ifc_style_id
|
|
assert ifc_definition_id != 0, f"The material {obj} has a style ID of {ifc_definition_id}"
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" is not an IFC style'))
|
|
def the_material_name_is_not_an_ifc_style(name):
|
|
obj = the_material_name_exists(name)
|
|
ifc_definition_id = obj.BIMMaterialProperties.ifc_style_id
|
|
assert ifc_definition_id == 0, f"The material {obj} has a style ID of {ifc_definition_id}"
|
|
|
|
|
|
@then(parsers.parse('the material "{name}" colour is "{colour}"'))
|
|
def the_material_name_colour_is_set_to_colour(name, colour):
|
|
diffuse_color = list(the_material_name_exists(name).diffuse_color)
|
|
assert diffuse_color == [float(c) for c in colour.split(",")], f"The colour is {diffuse_color}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has "{number}" vertices'))
|
|
def the_object_name_has_number_vertices(name, number):
|
|
total = len(the_object_name_exists(name).data.vertices)
|
|
assert total == int(number), f"We found {total} vertices"
|
|
|
|
|
|
@then(parsers.parse('the void "{name}" is filled by "{filling}"'))
|
|
def the_void_name_is_filled_by_filling(name, filling):
|
|
ifc = IfcStore.get_file()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
assert any((rel.RelatedBuildingElement.Name == filling for rel in element.HasFillings)), "No filling found"
|
|
|
|
|
|
@then(parsers.parse('the void "{name}" is not filled by "{filling}"'))
|
|
def the_void_name_is_not_filled_by_filling(name, filling):
|
|
try:
|
|
the_void_name_is_filled_by_filling(name, filling)
|
|
except AssertionError:
|
|
return
|
|
assert False, "A filling was found"
|
|
|
|
|
|
@when(parsers.parse('the object "{name}" is not a filling'))
|
|
@then(parsers.parse('the object "{name}" is not a filling'))
|
|
def the_object_name_is_not_a_filling(name):
|
|
ifc = IfcStore.get_file()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
assert not any(element.FillsVoids), "A filling was found"
|
|
|
|
|
|
@then(parsers.parse('"{prop}" is "{value}"'))
|
|
def prop_is_value(prop, value):
|
|
prop = replace_variables(prop)
|
|
value = replace_variables(value)
|
|
is_value = False
|
|
try:
|
|
exec(f'assert bpy.context.{prop} == "{value}"')
|
|
is_value = True
|
|
except:
|
|
try:
|
|
exec(f"assert bpy.context.{prop} == {value}")
|
|
is_value = True
|
|
except:
|
|
try:
|
|
exec(f"assert list(bpy.context.{prop}) == {value}")
|
|
is_value = True
|
|
except:
|
|
try:
|
|
exec(f"assert vectors_are_equal(bpy.context.{prop}, {value})")
|
|
is_value = True
|
|
except:
|
|
pass
|
|
if not is_value:
|
|
print(f"bpy.context.{prop}")
|
|
actual_value = eval(f"bpy.context.{prop}")
|
|
assert False, f"Value is {actual_value}"
|
|
|
|
|
|
@then(parsers.parse('"{prop}" is roughly "{value}"'))
|
|
def prop_is_value(prop, value):
|
|
prop = replace_variables(prop)
|
|
value = replace_variables(value)
|
|
is_value = False
|
|
try:
|
|
exec(f'assert round(bpy.context.{prop}, 5) == "{value}"')
|
|
is_value = True
|
|
except:
|
|
try:
|
|
exec(f"assert round(bpy.context.{prop}, 5) == {value}")
|
|
is_value = True
|
|
except:
|
|
pass
|
|
if not is_value:
|
|
print(f"bpy.context.{prop}")
|
|
actual_value = round(eval(f"bpy.context.{prop}"), 5)
|
|
assert False, f"Value is {actual_value}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has the material "{material}"'))
|
|
def the_object_name_has_the_material_material(name, material):
|
|
assert material in [ms.material.name for ms in the_object_name_exists(name).material_slots]
|
|
|
|
|
|
@then(
|
|
parsers.parse(
|
|
'the object "{name}" has a "{thickness}" thick layered material containing the material "{material_name}"'
|
|
)
|
|
)
|
|
def the_object_name_has_a_thickness_thick_layered_material_containing_the_material_material(
|
|
name, thickness, material_name
|
|
):
|
|
element = tool.Ifc.get_entity(the_object_name_exists(name))
|
|
material = ifcopenshell.util.element.get_material(element)
|
|
assert material and "LayerSet" in material.is_a()
|
|
if material.is_a("IfcMaterialLayerSetUsage"):
|
|
material = material.ForLayerSet
|
|
total_thickness = 0
|
|
material_names = []
|
|
for layer in material.MaterialLayers or []:
|
|
total_thickness += layer.LayerThickness
|
|
material_names.append(layer.Material.Name)
|
|
assert is_x(total_thickness, float(thickness))
|
|
assert material_name in material_names
|
|
|
|
@then(parsers.parse('the object "{name}" has no IFC materials'))
|
|
def the_object_has_no_ifc_materials(name):
|
|
element = tool.Ifc.get_entity(the_object_name_exists(name))
|
|
material = ifcopenshell.util.element.get_material(element)
|
|
assert material is None
|
|
|
|
|
|
@then(
|
|
parsers.parse(
|
|
'the object "{name}" has a profiled material containing the material "{material_name}" and profile "{profile_name}"'
|
|
)
|
|
)
|
|
def the_object_name_has_a_profiled_material_containing_the_material_material_and_profile_profile(
|
|
name, material_name, profile_name
|
|
):
|
|
element = tool.Ifc.get_entity(the_object_name_exists(name))
|
|
material = ifcopenshell.util.element.get_material(element)
|
|
assert material and "ProfileSet" in material.is_a()
|
|
if material.is_a("IfcMaterialProfileSetUsage"):
|
|
material = material.ForProfileSet
|
|
material_names = []
|
|
profile_names = []
|
|
for profile in material.MaterialProfiles or []:
|
|
material_names.append(profile.Material.Name)
|
|
profile_names.append(profile.Profile.ProfileName)
|
|
assert material_name in material_names, f"No material {material_name} found in profiled materials: {material_names}"
|
|
assert profile_name in profile_names, f"No profile {profile_name} found in material profiles: {profile_names}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" does not have the material "{material}"'))
|
|
def the_object_name_does_not_have_the_material_material(name, material):
|
|
assert material not in [ms.material.name for ms in the_object_name_exists(name).material_slots]
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is in the collection "{collection}"'))
|
|
def the_object_name_is_in_the_collection_collection(name, collection):
|
|
assert collection in [c.name for c in the_object_name_exists(name).users_collection]
|
|
|
|
|
|
@then(parsers.parse('the collection "{name1}" is in the collection "{name2}"'))
|
|
def the_collection_name1_is_in_the_collection_name2(name1, name2):
|
|
assert bpy.data.collections.get(name2).children.get(name1)
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" does not exist'))
|
|
def the_object_name_does_not_exist(name):
|
|
obj = bpy.data.objects.get(name)
|
|
assert obj is None or len(obj.users_collection) == 0, f"Object {name} exists"
|
|
|
|
|
|
@then(parsers.parse('the collection "{name}" does not exist'))
|
|
def the_collection_name_does_not_exist(name):
|
|
obj = bpy.data.collections.get(name)
|
|
assert obj is None, f"Collection {name} exists"
|
|
|
|
|
|
@then(parsers.parse('objects starting with "{name}" do not exist'))
|
|
def objects_not_exist_starting_with(name):
|
|
objs = [obj for obj in bpy.data.objects if obj.name.startswith(name) and len(obj.users_collection) > 0]
|
|
if len(objs) > 0:
|
|
assert False, f'{len(objs)} objects starting with "{name}" exist'
|
|
assert True
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is at "{location}"'))
|
|
def the_object_name_is_at_location(name, location):
|
|
obj_location = the_object_name_exists(name).location
|
|
assert (
|
|
obj_location - Vector([float(co) for co in location.split(",")])
|
|
).length < 0.1, f"Object is at {obj_location}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has no scale'))
|
|
def the_object_name_has_no_scale(name):
|
|
assert the_object_name_exists(name).scale == Vector(
|
|
(
|
|
1.0,
|
|
1.0,
|
|
1.0,
|
|
)
|
|
)
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" dimensions are "{dimensions}"'))
|
|
def the_object_name_dimensions_are_dimensions(name, dimensions):
|
|
actual_dimensions = list(the_object_name_exists(name).dimensions)
|
|
expected_dimensions = [float(co) for co in dimensions.split(",")]
|
|
for i, number in enumerate(actual_dimensions):
|
|
assert is_x(number, expected_dimensions[i]), f"Expected {expected_dimensions[i]} but got {number}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" top right corner is at "{location}"'))
|
|
def the_object_name_is_at_location(name, location):
|
|
obj = the_object_name_exists(name)
|
|
obj_corner = obj.matrix_world @ Vector(obj.bound_box[6])
|
|
assert (
|
|
obj_corner - Vector([float(co) for co in location.split(",")])
|
|
).length < 0.1, f"Object has top right corner {obj_corner}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" bottom left corner is at "{location}"'))
|
|
def the_object_name_is_at_location(name, location):
|
|
obj = the_object_name_exists(name)
|
|
obj_corner = obj.matrix_world @ Vector(obj.bound_box[0])
|
|
assert (
|
|
obj_corner - Vector([float(co) for co in location.split(",")])
|
|
).length < 0.1, f"Object has bottom left corner {obj_corner}"
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" is contained in "{container_name}"'))
|
|
def the_object_name_is_contained_in_container_name(name, container_name):
|
|
ifc = an_ifc_file_exists()
|
|
element = ifc.by_id(the_object_name_exists(name).BIMObjectProperties.ifc_definition_id)
|
|
container = ifcopenshell.util.element.get_container(element)
|
|
if not container:
|
|
assert False, f'Object "{name}" is not in any container'
|
|
assert container.Name == container_name, f'Object "{name}" is in {container}'
|
|
|
|
|
|
@then(parsers.parse('the file "{name}" should contain "{value}"'))
|
|
def the_file_name_should_contain_value(name, value):
|
|
name = replace_variables(name)
|
|
with open(name, "r") as f:
|
|
assert value in f.read()
|
|
|
|
|
|
@then(parsers.parse('the object "{name}" has no modifiers'))
|
|
def the_object_name_has_no_modifiers(name):
|
|
assert len(the_object_name_exists(name).modifiers) == 0
|
|
|
|
|
|
@given("I load the demo construction library")
|
|
@when("I load the demo construction library")
|
|
def i_add_a_construction_library():
|
|
lib_path = "./blenderbim/bim/data/libraries/IFC4 Demo Library.ifc"
|
|
bpy.ops.bim.select_library_file(filepath=lib_path, append_all=True)
|
|
|
|
|
|
@given(parsers.parse('the cursor is at "{location}"'))
|
|
def the_cursor_is_at_location(location):
|
|
bpy.context.scene.cursor.location = [float(co) for co in location.split(",")]
|
|
|
|
|
|
@given("I display the construction type browser")
|
|
@when("I display the construction type browser")
|
|
def i_display_the_construction_type_browser():
|
|
bpy.ops.bim.display_constr_types("INVOKE_DEFAULT")
|
|
|
|
|
|
@given("I add the construction type")
|
|
@when("I add the construction type")
|
|
def i_add_the_active_construction_type():
|
|
props = bpy.context.scene.BIMModelProperties
|
|
bpy.ops.bim.add_constr_type_instance(relating_type_id=int(props.relating_type_id))
|
|
|
|
|
|
@then(parsers.parse("construction type is {relating_type_name}"))
|
|
def construction_type(relating_type_name):
|
|
props = bpy.context.scene.BIMModelProperties
|
|
relating_type = AuthoringData.relating_type_name_by_id(props.ifc_class, props.relating_type_id)
|
|
assert relating_type == relating_type_name, f"Construction Type is a {relating_type}, not a {relating_type_name}"
|
|
|
|
|
|
@when("I move the cursor to the bottom left corner")
|
|
def move_cursor_bottom_left():
|
|
bpy.context.window.cursor_warp(10, 10)
|
|
|
|
|
|
@given(parsers.parse("I prepare to undo"))
|
|
@when(parsers.parse("I prepare to undo"))
|
|
@then(parsers.parse("I prepare to undo"))
|
|
def hit_undo():
|
|
bpy.ops.ed.undo_push(message="UNDO STEP")
|
|
|
|
|
|
@given(parsers.parse("I undo"))
|
|
@when(parsers.parse("I undo"))
|
|
@then(parsers.parse("I undo"))
|
|
def hit_undo():
|
|
bpy.ops.ed.undo_push(message="UNDO STEP")
|
|
bpy.ops.ed.undo()
|
|
|
|
|
|
# These definitions are not to be used in tests but simply in debugging failing tests
|
|
|
|
|
|
@given(parsers.parse("I run test code"))
|
|
@when(parsers.parse("I run test code"))
|
|
@then(parsers.parse("I run test code"))
|
|
def run_test_code():
|
|
pass
|
|
|
|
|
|
@given(parsers.parse("I save sample test files"))
|
|
@when(parsers.parse("I save sample test files"))
|
|
@then(parsers.parse("I save sample test files"))
|
|
def saving_sample_test_files(and_open_in_blender=None):
|
|
filepath = f"{variables['cwd']}/test/files/temp/sample_test_file"
|
|
blend_filepath = f"{filepath}.blend"
|
|
bpy.ops.export_ifc.bim(filepath=f"{filepath}.ifc", should_save_as=True)
|
|
bpy.ops.wm.save_as_mainfile(filepath=f"{filepath}.blend")
|
|
|
|
|
|
@given(parsers.parse("I load test blend file"))
|
|
@when(parsers.parse("I load test blend file"))
|
|
@then(parsers.parse("I load test blend file"))
|
|
def opening_sample_test_files_in_blender():
|
|
filepath = f"{variables['cwd']}/test/files/temp/sample_test_file.blend"
|
|
bpy.ops.wm.open_mainfile(filepath=filepath, display_file_selector=False)
|
|
|
|
|
|
# TODO: merge to single fixture with `saving_sample_test_files`; add "and wait"
|
|
@given(parsers.parse("I save sample test files and open in blender"))
|
|
@when(parsers.parse("I save sample test files and open in blender"))
|
|
@then(parsers.parse("I save sample test files and open in blender"))
|
|
def saving_sample_test_files_and_open_in_blender():
|
|
saving_sample_test_files()
|
|
filepath = f"{variables['cwd']}/test/files/temp/sample_test_file.blend"
|
|
import subprocess
|
|
|
|
subprocess.Popen([bpy.app.binary_path, f"{filepath}"])
|
|
|
|
|
|
@given(parsers.parse("I run pdb"))
|
|
@when(parsers.parse("I run pdb"))
|
|
@then(parsers.parse("I run pdb"))
|
|
def run_pdb():
|
|
import pdb
|
|
|
|
pdb.set_trace()
|