Commit: a79e7e51c49a203493e48cec184c6ca736595b5b
Author: calra123
Date:   Tue Aug 18 18:08:20 2020 +0530
Branches: soc-2020-testing-frameworks
https://developer.blender.org/rBa79e7e51c49a203493e48cec184c6ca736595b5b

removed generator script

===================================================================

D       tests/python/modules/test_object_generator.py

===================================================================

diff --git a/tests/python/modules/test_object_generator.py 
b/tests/python/modules/test_object_generator.py
deleted file mode 100644
index d84b14ea83d..00000000000
--- a/tests/python/modules/test_object_generator.py
+++ /dev/null
@@ -1,209 +0,0 @@
-# ##### BEGIN GPL LICENSE BLOCK #####
-#
-#  This program 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 2
-#  of the License, or (at your option) any later version.
-#
-#  This program 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 this program; if not, write to the Free Software Foundation,
-#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# ##### END GPL LICENSE BLOCK #####
-
-# <pep8 compliant>
-
-"""blender -b --python tests/python/modules/test_object_generator.py -- 
/path/to/blend/file/new_or_existing.blend"""
-
-import bpy
-import os
-import sys
-import random
-from pathlib import Path
-
-offset_x = 5
-fail = 0
-
-
-def vertex_selection(obj, vert_set: set, randomize: bool):
-    """
-    Selecting vertices which will be later assigned to vertex groups
-    :param: obj: the selected object for vertex group
-    :param: vert_set: set of indices e.g.{0,2,3)
-    :param: randomize: bool: select vertices randomly
-    """
-    bpy.ops.object.mode_set(mode='EDIT')
-    bpy.ops.mesh.select_all(action='DESELECT')
-    bpy.ops.object.mode_set(mode='OBJECT')
-
-    if not randomize:
-        for index in vert_set:
-            obj.data.vertices[index].select = True
-
-    else:
-        max_vert = len(obj.data.vertices)
-        random_size = random.randint(1, max_vert)
-        print(random_size)
-        for index in range(random_size):
-            random_index = random.randint(0, random_size)
-            print(random_index)
-            obj.data.vertices[random_index].select = True
-
-
-def create_vertex_group(obj_name, vg_name, vg_vert_set, randomize):
-    """
-    Creates a vertex group. Raises Exception for invalid index
-    :param obj_name : blend object: - the object for vertex group
-    :param vg_name : str - vertex group name
-    :param vg_vert_set : set - set of vertices assgined to the vertex group
-    :param randomize : bool - select random vertices
-    """
-    #   Validating user input
-    #  -checking for whether the object exists
-    #  -index value is within the right range
-    if not randomize and len(vg_vert_set) == 0:
-        global fail
-        fail = 1
-        raise Exception('Set is empty!')
-    if obj_name not in bpy.data.objects.keys():
-        fail = 1
-        raise Exception('Object {} not Found!'.format(obj_name))
-    obj = bpy.data.objects[obj_name]
-    bpy.ops.object.select_all(action='DESELECT')
-    obj.select_set(True)
-    bpy.context.view_layer.objects.active = obj
-
-    max_vert = len(obj.data.vertices)
-    for i in vg_vert_set:
-        if not isinstance(i, int) or i < 0 or i > max_vert - 1:
-            fail = 1
-            raise Exception("Please enter a valid index(integer).")
-
-    obj.vertex_groups.new(name=vg_name)
-    vertex_selection(obj, vg_vert_set, randomize)
-
-    bpy.ops.object.mode_set(mode='EDIT')
-    bpy.ops.object.vertex_group_assign()
-    bpy.ops.object.mode_set(mode='OBJECT')
-    print("'{}' vertex group is created.".format(vg_name))
-
-
-def get_last_location():
-    """To find the location of last created object."""
-    farthest = 0
-    all_y_locs = []
-    for obj in bpy.data.objects:
-        all_y_locs.append(obj.location.y)
-
-    for y in all_y_locs:
-        if y > farthest:
-            farthest = y
-
-    return farthest
-
-
-def create_test_objects(collection_name, obj_dict):
-    """
-    Creates test and expected objects
-    :param collection_name: str - name of the collection for test and expected 
objects
-    :param obj_dict: dict (key:value) - dictionary contains test object names 
and types, e.g. {'myTestCube':'Cube'}
-    :param helper: bool - object is a helper object or a test object.
-    """
-    offset_y = get_last_location() + 5
-    obj_list = []
-
-    for obj_name, obj_type in obj_dict.items():
-
-        test_obj_name = "testObj" + obj_name
-
-        if test_obj_name not in bpy.data.objects.keys():
-            try:
-                getattr(bpy.ops.mesh, obj_type)
-                mesh_obj = getattr(bpy.ops.mesh, obj_type)
-            except AttributeError:
-                global fail
-                fail = 1
-                raise AttributeError("Incorrect parameter: {} for adding 
object.".format(obj_type))
-
-            mesh_obj(location=(0, offset_y, 0))
-
-            bpy.context.active_object.name = test_obj_name
-            bpy.ops.object.duplicate_move(TRANSFORM_OT_translate={"value": 
(offset_x, 0, 0)})
-            exp_obj_name = "expObj" + obj_name
-            bpy.context.active_object.name = exp_obj_name
-            test_obj = bpy.data.objects[test_obj_name]
-            obj_list.append(test_obj)
-            exp_obj = bpy.data.objects[exp_obj_name]
-            obj_list.append(exp_obj)
-
-            collection = bpy.data.collections.new(name=collection_name)
-            collection.name = collection_name
-            bpy.context.scene.collection.children.link(collection)
-            collection.objects.link(test_obj)
-            collection.objects.link(exp_obj)
-
-            offset_y += 5
-        else:
-            print("Object already present.")
-
-    if not fail:
-        for ob in obj_list:
-            print("{} were successfully created!".format(ob.name))
-    scene_name = bpy.context.scene.name
-    for obj in obj_list:
-        try:
-            bpy.data.scenes[scene_name].collection.objects.unlink(obj)
-        except:
-            pass
-            bpy.data.collections["Collection"].objects.unlink(obj)
-
-
-argv = sys.argv
-argv = argv[argv.index("--") + 1:]
-
-# Converting the path to be platform independent and then into string
-path_to_file = str(Path(argv[0]))
-new_file = 0
-print(path_to_file)
-
-if os.path.exists(path_to_file):
-    bpy.ops.wm.open_mainfile(filepath=path_to_file)
-
-else:
-    # Looking at the global fail variable
-    new_file = 1
-    bpy.ops.wm.save_as_mainfile(filepath=path_to_file)
-    # Cleaning up a new blend file
-    bpy.data.objects['Light'].hide_set(True)
-    bpy.data.objects['Camera'].hide_set(True)
-
-# Function calls
-try:
-    # create_test_objects("Skin", {'PlaneSkin': 'Plane'})
-    # create_test_objects("SurfaceDeform", {'MonkeySurfaceDeform': 'Monkey'})
-    create_test_objects("MeshDeform", {'MonkeyMeshDeform': 
'primitive_monkey_add'})
-
-    #
-    # create_test_objects("WavePlane", {'PlaneWave': 'Plane'})
-    # create_test_objects("PlaneOcean4", {'PlaneOcean4': 'Plane'})
-    # create_test_objects("PlaneOcean4", {'PlaneOcean4': 'Plane'})
-    # create_test_objects("OperatorTest", {'Cube': 'Cube'})
-
-
-
-
-    # create_test_objects("CylinderTests", {'Cy5555': "Cylinder"})
-
-    # create_vertex_group('expObjCube3', "vg_solidify", {0, 1, 2, 3}, False)
-finally:
-    if fail and new_file:
-        os.remove(path_to_file)
-        print("There was an error! The file is not created!")
-
-if not fail:
-    bpy.ops.wm.save_mainfile(filepath=path_to_file)

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to