summaryrefslogtreecommitdiff
path: root/gerber/tests/test_utils.py
diff options
context:
space:
mode:
authorHamilton Kibbe <hamilton.kibbe@gmail.com>2014-09-28 18:07:15 -0400
committerHamilton Kibbe <hamilton.kibbe@gmail.com>2014-09-28 18:07:15 -0400
commit695e3d9220be8773f6630bb5c512d122b8576742 (patch)
tree4de564bd48789c0414f882b96db8ed82a9eb67b4 /gerber/tests/test_utils.py
parent858fc5f6d82c58f4af966c27299e51dd6ba1c097 (diff)
downloadgerbonara-695e3d9220be8773f6630bb5c512d122b8576742.tar.gz
gerbonara-695e3d9220be8773f6630bb5c512d122b8576742.tar.bz2
gerbonara-695e3d9220be8773f6630bb5c512d122b8576742.zip
Added excellon support and refactored project
Diffstat (limited to 'gerber/tests/test_utils.py')
-rw-r--r--gerber/tests/test_utils.py68
1 files changed, 68 insertions, 0 deletions
diff --git a/gerber/tests/test_utils.py b/gerber/tests/test_utils.py
new file mode 100644
index 0000000..50e2403
--- /dev/null
+++ b/gerber/tests/test_utils.py
@@ -0,0 +1,68 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# Author: Hamilton Kibbe <ham@hamiltonkib.be>
+
+from ..utils import decimal_string, parse_gerber_value, write_gerber_value
+
+
+def test_zero_suppression():
+ """ Test gerber value parser and writer handle zero suppression correctly.
+ """
+ # Default format
+ format = (2, 5)
+
+ # Test leading zero suppression
+ zero_suppression = 'leading'
+ test_cases = [('1', 0.00001), ('10', 0.0001), ('100', 0.001),
+ ('1000', 0.01), ('10000', 0.1), ('100000', 1.0),('1000000', 10.0),
+ ('-1', -0.00001), ('-10', -0.0001), ('-100', -0.001),
+ ('-1000', -0.01), ('-10000', -0.1), ('-100000', -1.0),('-1000000', -10.0),]
+ for string, value in test_cases:
+ assert(value == parse_gerber_value(string,format,zero_suppression))
+ assert(string == write_gerber_value(value,format,zero_suppression))
+
+ # Test trailing zero suppression
+ zero_suppression = 'trailing'
+ test_cases = [('1', 10.0), ('01', 1.0), ('001', 0.1), ('0001', 0.01),
+ ('00001', 0.001), ('000001', 0.0001), ('0000001', 0.00001),
+ ('-1', -10.0), ('-01', -1.0), ('-001', -0.1), ('-0001', -0.01),
+ ('-00001', -0.001), ('-000001', -0.0001), ('-0000001', -0.00001)]
+ for string, value in test_cases:
+ assert(value == parse_gerber_value(string,format,zero_suppression))
+ assert(string == write_gerber_value(value,format,zero_suppression))
+
+
+
+def test_format():
+ """ Test gerber value parser and writer handle format correctly
+ """
+ zero_suppression = 'leading'
+ test_cases = [((2,7),'1',0.0000001), ((2,6),'1',0.000001),
+ ((2,5),'1',0.00001), ((2,4),'1',0.0001), ((2,3),'1',0.001),
+ ((2,2),'1',0.01), ((2,1),'1',0.1), ((2,7),'-1',-0.0000001),
+ ((2,6),'-1',-0.000001), ((2,5),'-1',-0.00001), ((2,4),'-1',-0.0001),
+ ((2,3),'-1',-0.001), ((2,2),'-1',-0.01), ((2,1),'-1',-0.1),]
+ for format, string, value in test_cases:
+ assert(value == parse_gerber_value(string,format,zero_suppression))
+ assert(string == write_gerber_value(value,format,zero_suppression))
+
+ zero_suppression = 'trailing'
+ test_cases = [((6, 5), '1' , 100000.0), ((5, 5), '1', 10000.0),
+ ((4, 5), '1', 1000.0), ((3, 5), '1', 100.0),((2, 5), '1', 10.0),
+ ((1, 5), '1', 1.0), ((6, 5), '-1' , -100000.0),
+ ((5, 5), '-1', -10000.0), ((4, 5), '-1', -1000.0),
+ ((3, 5), '-1', -100.0),((2, 5), '-1', -10.0), ((1, 5), '-1', -1.0),]
+ for format, string, value in test_cases:
+ assert(value == parse_gerber_value(string,format,zero_suppression))
+ assert(string == write_gerber_value(value,format,zero_suppression))
+
+
+def test_decimal_truncation():
+ """ Test decimal string truncates value to the correct precision
+ """
+ value = 1.123456789
+ for x in range(10):
+ result = decimal_string(value, precision=x)
+ calculated = '1.' + ''.join(str(y) for y in range(1,x+1))
+ assert(result == calculated) \ No newline at end of file