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:
authorCampbell Barton <ideasman42@gmail.com>2011-03-19 02:58:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-19 02:58:13 +0300
commit3b8d4aa25f23f1c4c1d9a42e6c876333c4f2c6d2 (patch)
treef9b24c457bde77645dd34d10d2e0bd9dce9ae6aa /source/tests/bl_load_py_modules.py
parent5f8e8f2251d473c61f46e6d35cc52b0f7ae20720 (diff)
2 tests for ctest.
- script_load_addons: loads and onloads all addons, error if any cant be enabled or disabled. - script_load_modules: loads all blenders modules, error if any modules raise an exception or if any modules in the scripts dir are not tested (except for presets and templates). These are useful because lazy module loading means a module can have an error which isnt raised until the tools used. This gives a way to detect basic errors that used to happen on startup or when enabling the addon.
Diffstat (limited to 'source/tests/bl_load_py_modules.py')
-rw-r--r--source/tests/bl_load_py_modules.py145
1 files changed, 145 insertions, 0 deletions
diff --git a/source/tests/bl_load_py_modules.py b/source/tests/bl_load_py_modules.py
new file mode 100644
index 00000000000..5a65578d8d3
--- /dev/null
+++ b/source/tests/bl_load_py_modules.py
@@ -0,0 +1,145 @@
+# ##### 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>
+
+# simple script to enable all addons, and disable
+
+import bpy
+import addon_utils
+
+import sys
+import os
+import imp
+
+
+def source_list(path, filename_check=None):
+ from os.path import join
+ for dirpath, dirnames, filenames in os.walk(path):
+ # skip '.svn'
+ if dirpath.startswith("."):
+ continue
+
+ for filename in filenames:
+ filepath = join(dirpath, filename)
+ if filename_check is None or filename_check(filepath):
+ yield filepath
+
+
+def load_addons():
+ modules = addon_utils.modules({})
+ modules.sort(key=lambda mod: mod.__name__)
+ addons = bpy.context.user_preferences.addons
+
+ # first disable all
+ for mod_name in list(addons.keys()):
+ addon_utils.disable(mod_name)
+
+ assert(bool(addons) == False)
+
+ for mod in modules:
+ mod_name = mod.__name__
+ addon_utils.enable(mod_name)
+ assert(mod_name in addons)
+
+
+def load_modules():
+ modules = []
+ module_paths = []
+
+ # paths blender stores scripts in.
+ paths = bpy.utils.script_paths()
+
+ #
+ # find all sys.path we added
+ for script_path in paths:
+ for mod_dir in sys.path:
+ if mod_dir.startswith(script_path):
+ module_paths.append(mod_dir)
+
+ #
+ # collect modules from our paths.
+ for mod_dir in module_paths:
+ # print("mod_dir", mod_dir)
+ for mod, mod_full in bpy.path.module_names(mod_dir):
+ modules.append(__import__(mod))
+
+ #
+ # now submodules
+ for m in modules:
+ filepath = m.__file__
+ if os.path.basename(filepath).startswith("__init__."):
+ mod_dir = os.path.dirname(filepath)
+ for submod, submod_full in bpy.path.module_names(mod_dir):
+ # fromlist is ignored, ugh.
+ mod_name_full = m.__name__ + "." + submod
+ __import__(mod_name_full)
+ mod_imp = sys.modules[mod_name_full]
+
+ # check we load what we ask for.
+ assert(os.path.samefile(mod_imp.__file__, submod_full))
+
+ modules.append(mod_imp)
+
+ #
+ # check which filepaths we didnt load
+ source_files = []
+ for mod_dir in module_paths:
+ source_files.extend(source_list(mod_dir, filename_check=lambda f: f.endswith(".py")))
+
+ source_files = list(set(source_files))
+ source_files.sort()
+
+ #
+ # remove loaded files
+ loaded_files = list({m.__file__ for m in modules})
+ loaded_files.sort()
+
+ for f in loaded_files:
+ source_files.remove(f)
+
+ #
+ # test we tested all files except for presets and templates
+ ignore_paths = [
+ os.sep + "presets" + os.sep,
+ os.sep + "templates" + os.sep,
+ ]
+
+ for f in source_files:
+ ok = False
+ for ignore in ignore_paths:
+ if ignore in f:
+ ok = True
+ if not ok:
+ raise Exception("Source file %r not loaded in test" % f)
+
+ print("loaded %d modules" % len(loaded_files))
+
+
+def main():
+ load_addons()
+ load_modules()
+
+if __name__ == "__main__":
+ # So a python error exits(1)
+ try:
+ main()
+ except:
+ import traceback
+ traceback.print_exc()
+ sys.exit(1)