summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_inset_shadow.py
blob: 63b5eaa01ba7f3391e555a729dd581f98d06ae96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
# coding=utf-8
import inkex
from inset_shadow import InsetShadow
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy, CompareWithPathSpace


class InsetShadowBasicTest(ComparisonMixin, TestCase):
    effect_class = InsetShadow
    compare_filters = [CompareNumericFuzzy(), CompareWithPathSpace()]
    comparisons = [
        ("--id=p1", "--id=r3"),
    ]

    def test_basic(self):
        args = ["--id=edgeme", self.data_file("svg", "edge3d.svg")]
        self.effect.run(args)
        old_paths = self.effect.original_document.getroot().xpath(
            '//svg:path[@id="edgeme"]'
        )
        new_paths = self.effect.svg.xpath('//svg:path[@id="edgeme"]')
        self.assertEqual(len(old_paths), 1)
        self.assertEqual(len(new_paths), 1)
        old_paths = self.effect.original_document.getroot().xpath("//svg:path")
        new_paths = self.effect.svg.xpath("//svg:path")
        self.assertEqual(len(old_paths), 1)
        self.assertEqual(len(new_paths), 4)