Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-01-21 14:34:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-01 17:44:21 +0300
commit7e77c6ef6052d627bbc02b62bc10ae8b25f37f12 (patch)
tree13d309f3534f6decfea2524adf4b62aebe655057 /io_curve_svg/svg_util_test.py
parent812d1c1ec3f3fa0b20e52759ea989f036345228b (diff)
SVG: Properly handle values in exponential notation
Some SVG exporters outputs small values in an exponential notation. There is no big reason to reject those files. This change makes it so any notation of the value is accepted. Only do it in the path point parsing, since other areas are already dealing with this correct. Also covered the array parsing covered with a unit test which can be run as a stand-alone application. The parsing code is from Jacques Lucke, thanks! Differential Revision: https://developer.blender.org/D4234
Diffstat (limited to 'io_curve_svg/svg_util_test.py')
-rwxr-xr-xio_curve_svg/svg_util_test.py71
1 files changed, 71 insertions, 0 deletions
diff --git a/io_curve_svg/svg_util_test.py b/io_curve_svg/svg_util_test.py
new file mode 100755
index 00000000..b3ecda83
--- /dev/null
+++ b/io_curve_svg/svg_util_test.py
@@ -0,0 +1,71 @@
+#!/usr/bin/env python3
+
+# ##### 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>
+
+from svg_util import parse_array_of_floats
+import unittest
+
+
+class ParseArrayOfFloatsTest(unittest.TestCase):
+ def test_empty(self):
+ self.assertEqual(parse_array_of_floats(""), [])
+ self.assertEqual(parse_array_of_floats(" "), [])
+
+ def test_single_value(self):
+ self.assertEqual(parse_array_of_floats("123"), [123])
+ self.assertEqual(parse_array_of_floats(" \t 123 \t"), [123])
+
+ def test_single_value_exponent(self):
+ self.assertEqual(parse_array_of_floats("12e+3"), [12000])
+ self.assertEqual(parse_array_of_floats("12e-3"), [0.012])
+
+ def test_space_separated_values(self):
+ self.assertEqual(parse_array_of_floats("123 45 6 89"),
+ [123, 45, 6, 89])
+ self.assertEqual(parse_array_of_floats(" 123 45 6 89 "),
+ [123, 45, 6, 89])
+
+ def test_comma_separated_values(self):
+ self.assertEqual(parse_array_of_floats("123,45,6,89"),
+ [123, 45, 6, 89])
+ self.assertEqual(parse_array_of_floats(" 123,45,6,89 "),
+ [123, 45, 6, 89])
+
+ def test_mixed_separated_values(self):
+ self.assertEqual(parse_array_of_floats("123,45 6,89"),
+ [123, 45, 6, 89])
+ self.assertEqual(parse_array_of_floats(" 123 45,6,89 "),
+ [123, 45, 6, 89])
+
+ def test_omitted_value_with_comma(self):
+ self.assertEqual(parse_array_of_floats("1,,3"), [1, 0, 3])
+ self.assertEqual(parse_array_of_floats(",,3"), [0, 0, 3])
+
+ def test_sign_as_separator(self):
+ self.assertEqual(parse_array_of_floats("1-3"), [1, -3])
+ self.assertEqual(parse_array_of_floats("1+3"), [1, 3])
+
+ def test_all_commas(self):
+ self.assertEqual(parse_array_of_floats(",,,"), [0, 0, 0, 0])
+
+
+if __name__ == '__main__':
+ unittest.main(verbosity=2)