summaryrefslogtreecommitdiff
path: root/gerbonara/gerber/tests/test_common.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2021-06-13 15:00:17 +0200
committerjaseg <git@jaseg.de>2021-06-13 15:00:17 +0200
commit4eb0e063bcd34c21b737023aa6ed5baed80658d1 (patch)
tree3a56ef7d05f4f64cde930f2432119986e4aab49d /gerbonara/gerber/tests/test_common.py
parent889ea37d9b66cbfb7a61795c7750b9f4311faa3f (diff)
downloadgerbonara-4eb0e063bcd34c21b737023aa6ed5baed80658d1.tar.gz
gerbonara-4eb0e063bcd34c21b737023aa6ed5baed80658d1.tar.bz2
gerbonara-4eb0e063bcd34c21b737023aa6ed5baed80658d1.zip
Repo re-org, make gerberex tests run
Diffstat (limited to 'gerbonara/gerber/tests/test_common.py')
-rw-r--r--gerbonara/gerber/tests/test_common.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/gerbonara/gerber/tests/test_common.py b/gerbonara/gerber/tests/test_common.py
new file mode 100644
index 0000000..a6b1264
--- /dev/null
+++ b/gerbonara/gerber/tests/test_common.py
@@ -0,0 +1,38 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# Author: Hamilton Kibbe <ham@hamiltonkib.be>
+from ..exceptions import ParseError
+from ..common import read, loads
+from ..excellon import ExcellonFile
+from ..rs274x import GerberFile
+import os
+import pytest
+
+
+NCDRILL_FILE = os.path.join(os.path.dirname(__file__), "resources/ncdrill.DRD")
+TOP_COPPER_FILE = os.path.join(os.path.dirname(__file__), "resources/top_copper.GTL")
+
+
+def test_file_type_detection():
+ """ Test file type detection
+ """
+ ncdrill = read(NCDRILL_FILE)
+ top_copper = read(TOP_COPPER_FILE)
+ assert isinstance(ncdrill, ExcellonFile)
+ assert isinstance(top_copper, GerberFile)
+
+
+def test_load_from_string():
+ with open(NCDRILL_FILE, "rU") as f:
+ ncdrill = loads(f.read())
+ with open(TOP_COPPER_FILE, "rU") as f:
+ top_copper = loads(f.read())
+ assert isinstance(ncdrill, ExcellonFile)
+ assert isinstance(top_copper, GerberFile)
+
+
+def test_file_type_validation():
+ """ Test file format validation
+ """
+ pytest.raises(ParseError, read, __file__)