summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_plotter.py
blob: 3e505c575667a02aff4df8b32bd16ab7abaa4dc1 (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
"""Test Plotter extension"""
import pytest
import sys
from plotter import Plot
from inkex.tester import ComparisonMixin, TestCase
from inkex.tester.filters import CompareReplacement


@pytest.mark.skipif(sys.platform == "win32", reason="termios not available on Windows")
class TestPlotter(ComparisonMixin, TestCase):
    """Test the plotter extension"""

    stderr_output = True
    effect_class = Plot
    compare_filter_save = True
    compare_filters = [CompareReplacement((";", "\n"))]
    old_defaults = (
        "--serialFlowControl=0",
        "--force=24",
        "--speed=20",
        "--orientation=90",
    )
    comparisons = [
        ("--serialPort=[test]",) + old_defaults,  # HPGL
        ("--serialPort=[test]", "--commandLanguage=DMPL") + old_defaults,
        ("--serialPort=[test]", "--commandLanguage=KNK") + old_defaults,
    ]