Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimanshi Kalra <calra>2020-12-17 18:14:55 +0300
committerHimanshi Kalra <himanshikalra98@gmail.com>2020-12-17 18:28:20 +0300
commite7b698327cd91b371ff4fd43d1c117637224fded (patch)
treeee17716640f1b1133ae2ab4ca65cd92a63d09f15 /tests/python/boolean_operator.py
parentfed995ced5b0b963bb42de5aa3e93a3c5dc91aac (diff)
Updated and extended Regression Testing frameworks (Gsoc 2020)
This revision contains the following changes- - Updated the existing testing framework for Modifiers for Regression Testing. - Tests for Physics modifiers and remaining Generate and Deform modifiers are added. - The existing `ModifierSpec` is updated with backward compatibility to support Physics Modifiers. - Now there is support for frame number and giving nested parameters for attributes. - Some Deform modifiers required Object Operators, e.g. "Bind" in Mesh Deform, so a new class was added to support that functionality. - A separate class for holding Particles System, they are tested by converting all the particles to mesh and joining it to the mesh they were added. - Updated the format to add tests for Bevel, Boolean and Operators as well. Reviewed By: zazizizou, mont29, campbellbarton Differential Revision: https://developer.blender.org/D8507
Diffstat (limited to 'tests/python/boolean_operator.py')
-rw-r--r--tests/python/boolean_operator.py48
1 files changed, 34 insertions, 14 deletions
diff --git a/tests/python/boolean_operator.py b/tests/python/boolean_operator.py
index b35c69b7ca5..0db6a074699 100644
--- a/tests/python/boolean_operator.py
+++ b/tests/python/boolean_operator.py
@@ -29,33 +29,53 @@ import os
import sys
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
-from modules.mesh_test import OperatorTest
+from modules.mesh_test import MeshTest, OperatorSpecEditMode, RunTest
def main():
tests = [
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_1', 'intersect_boolean', {'operation': 'UNION', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_2', 'intersect_boolean', {'operation': 'INTERSECT', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_3', 'intersect_boolean', {'operation': 'DIFFERENCE', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_4', 'intersect', {'separate_mode': 'CUT', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_5', 'intersect', {'separate_mode': 'ALL', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecube', 'Cubecube_result_6', 'intersect', {'separate_mode': 'NONE', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, 'Cubecube', 'Cubecube_result_7', 'intersect',
- {'mode': 'SELECT', 'separate_mode': 'NONE', 'solver' : 'FAST'}],
- ['FACE', {6, 7, 8, 9, 10}, 'Cubecone', 'Cubecone_result_1', 'intersect_boolean', {'operation': 'UNION', 'solver' : 'FAST'}],
- ['FACE', {0, 1, 2, 3, 4, 5}, 'Cubecones', 'Cubecones_result_1', 'intersect_boolean', {'operation': 'UNION', 'solver' : 'FAST'}],
+
+ MeshTest('Cubecube_intersect_union', 'Cubecube', 'Cubecube_result_1',
+ [OperatorSpecEditMode('intersect_boolean',
+ {'operation': 'UNION', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_intersect', 'Cubecube', 'Cubecube_result_2',
+ [OperatorSpecEditMode('intersect_boolean', {'operation': 'INTERSECT', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_difference', 'Cubecube', 'Cubecube_result_3',
+ [OperatorSpecEditMode('intersect_boolean', {'operation': 'DIFFERENCE', 'solver': 'FAST'}, 'FACE',
+ {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_cut', 'Cubecube', 'Cubecube_result_4', [OperatorSpecEditMode('intersect',
+ {'separate_mode': 'CUT', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_all', 'Cubecube', 'Cubecube_result_5',
+ [OperatorSpecEditMode('intersect',
+ {'separate_mode': 'ALL', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_none', 'Cubecube', 'Cubecube_result_6',
+ [OperatorSpecEditMode('intersect',
+ {'separate_mode': 'NONE', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+ MeshTest('Cubecube_intersect_select_none', 'Cubecube',
+ 'Cubecube_result_7',
+ [OperatorSpecEditMode('intersect',
+ {'mode': 'SELECT', 'separate_mode': 'NONE', 'solver': 'FAST'}, 'FACE',
+ {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, )]),
+ MeshTest('Cubecone_intersect_union', 'Cubecone', 'Cubecone_result_1',
+ [OperatorSpecEditMode('intersect_boolean',
+ {'operation': 'UNION', 'solver': 'FAST'}, 'FACE', {6, 7, 8, 9, 10}, )]),
+ MeshTest('Cubecones_intersect_union', 'Cubecones', 'Cubecones_result_1',
+ [OperatorSpecEditMode('intersect_boolean', {'operation': 'UNION', 'solver': 'FAST'}, 'FACE', {0, 1, 2, 3, 4, 5}, )]),
+
]
- operator_test = OperatorTest(tests)
+ operator_test = RunTest(tests)
command = list(sys.argv)
for i, cmd in enumerate(command):
if cmd == "--run-all-tests":
+ operator_test.do_compare = True
operator_test.run_all_tests()
break
elif cmd == "--run-test":
- index = int(command[i + 1])
- operator_test.run_test(index)
+ name = command[i + 1]
+ operator_test.do_compare = False
+ operator_test.run_test(name)
break