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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# coding=utf-8
from dxf_input import DxfInput
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareNumericFuzzy
class TestDxfInputBasic(ComparisonMixin, TestCase):
compare_file = [
"io/test_r12.dxf",
"io/test_r14.dxf",
# Unit test for https://gitlab.com/inkscape/extensions/-/issues/355
"io/dxf_with_arc.dxf",
# test polylines
"io/dxf_polylines.dxf",
# File missing a BLOCKS session
"io/no_block_section.dxf",
# test placement of graphical objects from BLOCKS section
# ellipses currently are too large
"io/dxf_multiple_inserts.dxf",
# test correct colors generated
# currently BYLAYER and BYBLOCK colors in inserted block are wrong
"io/color.dxf",
]
compare_filters = [CompareNumericFuzzy()]
comparisons = [()]
effect_class = DxfInput
def _apply_compare_filters(self, data, is_saving=None):
"""Remove the full pathnames"""
if is_saving is True:
return data
data = super()._apply_compare_filters(data)
return data.replace((self.datadir() + "/").encode("utf-8"), b"")
class TestDxfInputBasicError(ComparisonMixin, TestCase):
TestCase.stderr_protect = False
# sample uses POLYLINE,TEXT (R12), LWPOLYLINE,MTEXT (R13, R14)
# however has warnings when handling points with a display mode
compare_file = [
"io/test2_r12.dxf",
"io/test2_r13.dxf",
"io/test2_r14.dxf",
"io/test_extrude.dxf",
]
compare_filters = [CompareNumericFuzzy()]
comparisons = [()]
effect_class = DxfInput
def _apply_compare_filters(self, data, is_saving=None):
"""Remove the full pathnames"""
if is_saving is True:
return data
data = super()._apply_compare_filters(data)
return data.replace((self.datadir() + "/").encode("utf-8"), b"")
class TestDxfInputTextHeight(ComparisonMixin, TestCase):
compare_file = ["io/CADTextHeight.dxf"]
compare_filters = [CompareNumericFuzzy()]
comparisons = [(), ("--textscale=1.411",)]
effect_class = DxfInput
def _apply_compare_filters(self, data, is_saving=None):
"""Remove the full pathnames"""
if is_saving is True:
return data
data = super()._apply_compare_filters(data)
return data.replace((self.datadir() + "/").encode("utf-8"), b"")
|