blender_test/tests/python/bl_pyapi_bpy_path.py
Campbell Barton c434782e3a File headers: SPDX License migration
Use a shorter/simpler license convention, stops the header taking so
much space.

Follow the SPDX license specification: https://spdx.org/licenses

- C/C++/objc/objc++
- Python
- Shell Scripts
- CMake, GNUmakefile

While most of the source tree has been included

- `./extern/` was left out.
- `./intern/cycles` & `./intern/atomic` are also excluded because they
  use different header conventions.

doc/license/SPDX-license-identifiers.txt has been added to list SPDX all
used identifiers.

See P2788 for the script that automated these edits.

Reviewed By: brecht, mont29, sergey

Ref D14069
2022-02-11 09:14:36 +11:00

42 lines
1.9 KiB
Python

# SPDX-License-Identifier: Apache-2.0
# ./blender.bin --background -noaudio --python tests/python/bl_pyapi_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 behavior.
self.assertEqual(ensure_ext('demo', '.blend', case_sensitive=True), 'demo.blend')
self.assertEqual(ensure_ext('demo.BLEND', '.blend', case_sensitive=True), 'demo.BLEND.blend')
self.assertEqual(ensure_ext('demo', 'Blend', case_sensitive=True), 'demoBlend')
self.assertEqual(ensure_ext('demoBlend', 'blend', case_sensitive=True), 'demoBlendblend')
self.assertEqual(ensure_ext('demo', '', case_sensitive=True), 'demo')
if __name__ == '__main__':
import sys
sys.argv = [__file__] + (sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else [])
unittest.main()