Regression Testing: Running tests based on blend files
Runs tests based on blend files with minimum python interaction. Developed as part of GSoC 2021 - Regression Testing of Geometry Nodes. Earlier, tests were built from scratch by adding a modifier/operation from the Python API. Now, tests can also be created inside blender and are compared using Python script. Features: Automatically adding expected object if it doesn't exist. This patch adds tests for the following Geometry Nodes category: * Curves * Geometry * Mesh * Points The implemented UML diagram for refactoring of mesh test framework. {F10225906} Technical Changes: SpecMeshTest: It adds the modifier/operation based on the Spec provided. BlendFileTest: It applies already existing modifier/operation from the blend file. Test folders hierarchy with tests. This folder should be extracted to `lib\tests\modeling` {F10240651} Note: The `geometry_nodes` folder might lie under another `geometry_nodes` folder while extracting, please double check. Use the inner-most one. The hierarchy should be: -`lib\tests\modeling\geometry_nodes\mesh` -`lib\tests\modeling\geometry_nodes\points` and so on. * From `ctest` the tests should be run as `ctest -R geo_node -C [Configuration]` on Windows. * Each single test can be run with its entire name e..g `ctest -R geo_node_geometry_join_geometry`.(just an example). Run `ctest -N -R geo_node` to see all tests. * From blender, the tests can be run `blender -b path\to\blend\file --python path\to\geo_node_test.py` Reviewed By: zazizizou, JacquesLucke Differential Revision: https://developer.blender.org/D11611
This commit is contained in:

committed by
Himanshi Kalra

parent
d6d44faff0
commit
4a02b9ffeb
@@ -28,14 +28,14 @@ import sys
|
||||
import bpy
|
||||
|
||||
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
||||
from modules.mesh_test import MeshTest, ModifierSpec, OperatorSpecObjectMode, DeformModifierSpec, RunTest
|
||||
from modules.mesh_test import SpecMeshTest, ModifierSpec, OperatorSpecObjectMode, DeformModifierSpec, RunTest
|
||||
|
||||
tests = [
|
||||
|
||||
# Surface Deform Test, finally can bind to the Target object.
|
||||
# Actual deformation occurs by animating imitating user input.
|
||||
|
||||
MeshTest("SurfaceDeform", "testObjMonkeySurfaceDeform", "expObjMonkeySurfaceDeform",
|
||||
SpecMeshTest("SurfaceDeform", "testObjMonkeySurfaceDeform", "expObjMonkeySurfaceDeform",
|
||||
[DeformModifierSpec(10, [
|
||||
ModifierSpec('surface_deform', 'SURFACE_DEFORM', {'target': bpy.data.objects["Cube"]})],
|
||||
OperatorSpecObjectMode('surfacedeform_bind', {'modifier': 'surface_deform'}))]),
|
||||
@@ -43,7 +43,7 @@ tests = [
|
||||
# Mesh Deform Test, finally can bind to the Target object.
|
||||
# Actual deformation occurs by animating imitating user input.
|
||||
|
||||
MeshTest("MeshDeform", "testObjMonkeyMeshDeform", "expObjMonkeyMeshDeform",
|
||||
SpecMeshTest("MeshDeform", "testObjMonkeyMeshDeform", "expObjMonkeyMeshDeform",
|
||||
[DeformModifierSpec(10, [ModifierSpec('mesh_deform', 'MESH_DEFORM',
|
||||
{'object': bpy.data.objects["MeshCube"], 'precision': 2})],
|
||||
OperatorSpecObjectMode('meshdeform_bind', {'modifier': 'mesh_deform'}))]),
|
||||
@@ -51,21 +51,21 @@ tests = [
|
||||
# Surface Deform Test, finally can bind to the Target object.
|
||||
# Actual deformation occurs by animating imitating user input.
|
||||
|
||||
MeshTest("Hook", "testObjHookPlane", "expObjHookPlane",
|
||||
SpecMeshTest("Hook", "testObjHookPlane", "expObjHookPlane",
|
||||
[DeformModifierSpec(10, [ModifierSpec('hook', 'HOOK',
|
||||
{'object': bpy.data.objects["Empty"], 'falloff_radius': 1,
|
||||
'vertex_group': 'Group'})])]),
|
||||
|
||||
# Laplacian Deform Test, first a hook is attached.
|
||||
|
||||
MeshTest("Laplace", "testObjCubeLaplacian", "expObjCubeLaplacian",
|
||||
SpecMeshTest("Laplace", "testObjCubeLaplacian", "expObjCubeLaplacian",
|
||||
[DeformModifierSpec(10,
|
||||
[ModifierSpec('hook2', 'HOOK', {'object': bpy.data.objects["Empty.001"],
|
||||
'vertex_group': 'hook_vg'}),
|
||||
ModifierSpec('laplace', 'LAPLACIANDEFORM', {'vertex_group': 'laplace_vg'})],
|
||||
OperatorSpecObjectMode('laplaciandeform_bind', {'modifier': 'laplace'}))]),
|
||||
|
||||
MeshTest("WarpPlane", "testObjPlaneWarp", "expObjPlaneWarp",
|
||||
SpecMeshTest("WarpPlane", "testObjPlaneWarp", "expObjPlaneWarp",
|
||||
[DeformModifierSpec(10, [ModifierSpec('warp', 'WARP',
|
||||
{'object_from': bpy.data.objects["From"],
|
||||
'object_to': bpy.data.objects["To"],
|
||||
@@ -74,29 +74,29 @@ tests = [
|
||||
#############################################
|
||||
# Curves Deform Modifiers
|
||||
#############################################
|
||||
MeshTest("CurveArmature", "testObjBezierCurveArmature", "expObjBezierCurveArmature",
|
||||
SpecMeshTest("CurveArmature", "testObjBezierCurveArmature", "expObjBezierCurveArmature",
|
||||
[DeformModifierSpec(10, [ModifierSpec('curve_armature', 'ARMATURE',
|
||||
{'object': bpy.data.objects['testArmatureHelper'],
|
||||
'use_vertex_groups': False, 'use_bone_envelopes': True})])]),
|
||||
|
||||
MeshTest("CurveLattice", "testObjBezierCurveLattice", "expObjBezierCurveLattice",
|
||||
SpecMeshTest("CurveLattice", "testObjBezierCurveLattice", "expObjBezierCurveLattice",
|
||||
[DeformModifierSpec(10, [ModifierSpec('curve_lattice', 'LATTICE',
|
||||
{'object': bpy.data.objects['testLatticeCurve']})])]),
|
||||
|
||||
# HOOK for Curves can't be tested with current framework, as it requires going to Edit Mode to select vertices,
|
||||
# here is no equivalent of a vertex group in Curves.
|
||||
# Dummy test for Hook, can also be called corner case
|
||||
MeshTest("CurveHook", "testObjBezierCurveHook", "expObjBezierCurveHook",
|
||||
SpecMeshTest("CurveHook", "testObjBezierCurveHook", "expObjBezierCurveHook",
|
||||
[DeformModifierSpec(10,
|
||||
[ModifierSpec('curve_Hook', 'HOOK', {'object': bpy.data.objects['EmptyCurve']})])]),
|
||||
|
||||
MeshTest("MeshDeformCurve", "testObjCurveMeshDeform", "expObjCurveMeshDeform",
|
||||
SpecMeshTest("MeshDeformCurve", "testObjCurveMeshDeform", "expObjCurveMeshDeform",
|
||||
[DeformModifierSpec(10, [
|
||||
ModifierSpec('mesh_deform_curve', 'MESH_DEFORM', {'object': bpy.data.objects["Cylinder"],
|
||||
'precision': 2})],
|
||||
OperatorSpecObjectMode('meshdeform_bind', {'modifier': 'mesh_deform_curve'}))]),
|
||||
|
||||
MeshTest("WarpCurve", "testObjBezierCurveWarp", "expObjBezierCurveWarp",
|
||||
SpecMeshTest("WarpCurve", "testObjBezierCurveWarp", "expObjBezierCurveWarp",
|
||||
[DeformModifierSpec(10, [ModifierSpec('warp_curve', 'WARP',
|
||||
{'object_from': bpy.data.objects["From_curve"],
|
||||
'object_to': bpy.data.objects["To_curve"]})])]),
|
||||
|
Reference in New Issue
Block a user