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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-09-13 04:17:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-13 04:17:38 +0400
commit2596a0bd24f75856220b53d1b3cc138aa6d5d402 (patch)
tree3c0f7d5316ccbcc9f9b8a1468402f2c79195fe02 /source
parentf66d11cf7770fdfe5e473630d4964ecacaaa0348 (diff)
test script to check rna/wiki lookup completeness
Diffstat (limited to 'source')
-rw-r--r--source/tests/bl_rna_wiki_reference.py70
1 files changed, 70 insertions, 0 deletions
diff --git a/source/tests/bl_rna_wiki_reference.py b/source/tests/bl_rna_wiki_reference.py
new file mode 100644
index 00000000000..2018c4327a3
--- /dev/null
+++ b/source/tests/bl_rna_wiki_reference.py
@@ -0,0 +1,70 @@
+# ##### 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>
+
+# Use for validating our wiki interlinking.
+# ./blender.bin --background -noaudio --python source/tests/bl_rna_wiki_reference.py
+#
+# 1) test_lookup_coverage() -- ensure that we have lookups for _every_ RNA path
+# 2) test_urls() -- ensure all the URL's are correct
+# 3) test_language_coverage() -- ensure language lookup table is complete
+#
+
+import bpy
+
+# a stripped down version of api_dump() in rna_info_dump.py
+
+
+def test_lookup_coverage():
+
+ def rna_ids():
+
+ import rna_info
+ struct = rna_info.BuildRNAInfo()[0]
+ for struct_id, v in sorted(struct.items()):
+ props = [(prop.identifier, prop) for prop in v.properties]
+ for prop_id, prop in props:
+ yield "bpy.types.%s.%s" % (struct_id[1], prop_id)
+
+ for submod_id in dir(bpy.ops):
+ for op_id in dir(getattr(bpy.ops, submod_id)):
+ yield "bpy.ops.%s.%s" % (submod_id, op_id)
+
+ # check coverage
+ from bl_operators import wm
+
+ for rna_id in rna_ids():
+ url = wm.WM_OT_doc_view_manual._lookup_rna_url(rna_id, verbose=False)
+ print(rna_id, "->", url)
+
+
+def test_urls():
+ pass # TODO
+
+
+def test_language_coverage():
+ pass # TODO
+
+
+def main():
+ test_lookup_coverage()
+ test_language_coverage()
+
+if __name__ == "__main__":
+ main()