From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- share/extensions/tests/test_addnodes.py | 47 +++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 share/extensions/tests/test_addnodes.py (limited to 'share/extensions/tests/test_addnodes.py') diff --git a/share/extensions/tests/test_addnodes.py b/share/extensions/tests/test_addnodes.py new file mode 100644 index 0000000..2797caa --- /dev/null +++ b/share/extensions/tests/test_addnodes.py @@ -0,0 +1,47 @@ +# coding=utf-8 +from addnodes import AddNodes +from inkex.tester import ComparisonMixin, TestCase +from inkex.tester.filters import CompareNumericFuzzy, CompareWithPathSpace + + +class SplitItBasicTest(ComparisonMixin, TestCase): + effect_class = AddNodes + comparisons = [ + ( + "--id=p1", + "--id=r3", + "--max=2.0", + ) + ] + compare_filters = [ + CompareWithPathSpace(), + CompareNumericFuzzy(), + ] + + def test_basic(self): + args = ["--id=dashme", self.data_file("svg", "dash.svg")] + effect = self.effect_class() + effect.run(args) + old_path = effect.original_document.getroot().getElement("//svg:path").path + new_path = effect.svg.getElement("//svg:path").path + assert len(new_path) > len(old_path) + + +class SplitNodesClosedTest(ComparisonMixin, TestCase): + effect_class = AddNodes + comparisons = [ + ( + "--id=rect723", + "--id=rect723-5", + "--id=path747", + "--id=path1080", + "--id=path1115", + "--method=bynum", + "--segments=3", + ) + ] + compare_filters = [ + CompareWithPathSpace(), + CompareNumericFuzzy(), + ] + compare_file = "svg/paths_open_closed.svg" -- cgit v1.2.3