summaryrefslogtreecommitdiffstats
path: root/share/extensions/tests/test_plotter.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/tests/test_plotter.py')
-rw-r--r--share/extensions/tests/test_plotter.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/share/extensions/tests/test_plotter.py b/share/extensions/tests/test_plotter.py
new file mode 100644
index 0000000..3e505c5
--- /dev/null
+++ b/share/extensions/tests/test_plotter.py
@@ -0,0 +1,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,
+ ]