[Bf-blender-cvs] [8383a2d] master: Fix: Made bpy.path.ensure_ext compatible with compound extensions.

Sybren A. Stüvel noreply at git.blender.org
Thu Sep 3 13:10:13 CEST 2015


Commit: 8383a2d4cc32c8516f11364aae079aeae93116c9
Author: Sybren A. Stüvel
Date:   Thu Sep 3 13:09:16 2015 +0200
Branches: master
https://developer.blender.org/rB8383a2d4cc32c8516f11364aae079aeae93116c9

Fix: Made bpy.path.ensure_ext compatible with compound extensions.

Extensions such as ".tar.gz" are now also supported. Before this patch,
ensure_ext('demo.tar.gz', '.tar.gz') would return 'demo.tar.tar.gz'.

This results in issues with the `ExportHelper` mix-in class; clicking
an existing file in the file dialogue warns about overwriting it
(highlighting the input box in red), but then saves to a different
file.

Also added a unit test for the new behaviour.

Reviewers: mont29, campbellbarton

Reviewed By: campbellbarton

Differential Revision: https://developer.blender.org/D1498

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

M	release/scripts/modules/bpy/path.py
A	tests/python/bl_bpy_path.py

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

diff --git a/release/scripts/modules/bpy/path.py b/release/scripts/modules/bpy/path.py
index b7d7d9e..c31188a 100644
--- a/release/scripts/modules/bpy/path.py
+++ b/release/scripts/modules/bpy/path.py
@@ -283,22 +283,18 @@ def ensure_ext(filepath, ext, case_sensitive=False):
     """
     Return the path with the extension added if it is not already set.
 
-    :arg ext: The extension to check for.
+    :arg ext: The extension to check for, can be a compound extension. Should
+              start with a dot, such as '.blend' or '.tar.gz'.
     :type ext: string
     :arg case_sensitive: Check for matching case when comparing extensions.
     :type case_sensitive: bool
     """
-    fn_base, fn_ext = _os.path.splitext(filepath)
-    if fn_base and fn_ext:
-        if ((case_sensitive and ext == fn_ext) or
-            (ext.lower() == fn_ext.lower())):
 
-            return filepath
-        else:
-            return fn_base + ext
+    if ((case_sensitive and filepath.endswith(ext)) or
+            (not case_sensitive and filepath.lower().endswith(ext.lower()))):
+        return filepath
 
-    else:
-        return filepath + ext
+    return filepath + ext
 
 
 def module_names(path, recursive=False):
diff --git a/tests/python/bl_bpy_path.py b/tests/python/bl_bpy_path.py
new file mode 100644
index 0000000..5c4ae91
--- /dev/null
+++ b/tests/python/bl_bpy_path.py
@@ -0,0 +1,41 @@
+# Apache License, Version 2.0
+
+# ./blender.bin --background -noaudio --python tests/python/bl_bpy_path.py -- --verbose
+import unittest
+
+
+class TestBpyPath(unittest.TestCase):
+    def test_ensure_ext(self):
+        from bpy.path import ensure_ext
+
+        # Should work with both strings and bytes.
+        self.assertEqual(ensure_ext('demo', '.blend'), 'demo.blend')
+        self.assertEqual(ensure_ext(b'demo', b'.blend'), b'demo.blend')
+
+        # Test different cases.
+        self.assertEqual(ensure_ext('demo.blend', '.blend'), 'demo.blend')
+        self.assertEqual(ensure_ext('demo.BLEND', '.blend'), 'demo.BLEND')
+        self.assertEqual(ensure_ext('demo.blend', '.BLEND'), 'demo.blend')
+
+        # Test empty extensions, compound extensions etc.
+        self.assertEqual(ensure_ext('demo', 'blend'), 'demoblend')
+        self.assertEqual(ensure_ext('demo', ''), 'demo')
+        self.assertEqual(ensure_ext('demo', '.json.gz'), 'demo.json.gz')
+        self.assertEqual(ensure_ext('demo.json.gz', '.json.gz'), 'demo.json.gz')
+        self.assertEqual(ensure_ext('demo.json', '.json.gz'), 'demo.json.json.gz')
+        self.assertEqual(ensure_ext('', ''), '')
+        self.assertEqual(ensure_ext('', '.blend'), '.blend')
+
+        # Test case-sensitive behaviour.
+        self.assertEqual(ensure_ext('demo', '.blend', True), 'demo.blend')
+        self.assertEqual(ensure_ext('demo.BLEND', '.blend', True), 'demo.BLEND.blend')
+        self.assertEqual(ensure_ext('demo', 'Blend', True), 'demoBlend')
+        self.assertEqual(ensure_ext('demoBlend', 'blend', True), 'demoBlendblend')
+        self.assertEqual(ensure_ext('demo', '', True), 'demo')
+
+
+if __name__ == '__main__':
+    import sys
+
+    sys.argv = [__file__] + (sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else [])
+    unittest.main()




More information about the Bf-blender-cvs mailing list