Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pyMKcam
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
pyMKcam
Commits
90beea36
Commit
90beea36
authored
Apr 17, 2013
by
Lars Kruse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
basic unittests for PointUtils module
parent
12c7da6b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
166 additions
and
0 deletions
+166
-0
__init__.py
pycam/Test/__init__.py
+41
-0
test_pointutils.py
pycam/Test/test_pointutils.py
+125
-0
No files found.
pycam/Test/__init__.py
0 → 100644
View file @
90beea36
# -*- coding: utf-8 -*-
"""
Copyright 2013 Lars Kruse <devel@sumpfralle.de>
This file is part of PyCAM.
PyCAM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PyCAM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
"""
import
unittest
class
PycamTestCase
(
unittest
.
TestCase
):
def
_compare_vectors
(
self
,
v1
,
v2
,
max_deviance
=
0.000001
):
for
index
in
range
(
3
):
if
max_deviance
<
abs
(
v1
[
index
]
-
v2
[
index
]):
return
False
return
True
def
assertVectorEqual
(
self
,
v1
,
v2
):
self
.
assertTrue
(
self
.
_compare_vectors
(
v1
,
v2
))
def
assertVectorNotEqual
(
self
,
v1
,
v2
):
self
.
assertFalse
(
self
.
_compare_vectors
(
v1
,
v2
))
main
=
unittest
.
main
pycam/Test/test_pointutils.py
0 → 100644
View file @
90beea36
# -*- coding: utf-8 -*-
"""
Copyright 2013 Lars Kruse <devel@sumpfralle.de>
This file is part of PyCAM.
PyCAM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PyCAM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PyCAM. If not, see <http://www.gnu.org/licenses/>.
"""
import
pycam.Geometry.PointUtils
as
pu
import
pycam.Test
import
math
ROOT_2
=
math
.
sqrt
(
2
)
ROOT_3
=
math
.
sqrt
(
3
)
"""
TODO: the following tests are missing for the PointUtils module:
ptransform_by_matrix
pmul
pdiv
padd
psub
pdot
pcross
pis_inside
ptransform_by_matrix
"""
class
UnaryOperations
(
pycam
.
Test
.
PycamTestCase
):
def
test_pnorm
(
self
):
def
norm_test
(
vector
,
result
):
self
.
assertAlmostEqual
(
pu
.
pnorm
(
vector
),
result
)
self
.
assertAlmostEqual
(
pu
.
pnormsq
(
vector
),
result
**
2
)
norm_test
((
1.0
,
0.0
,
0.0
),
1
)
norm_test
((
1
,
0
,
0
),
1
)
norm_test
((
0
,
1
,
0
),
1
)
norm_test
((
0
,
0
,
1
),
1
)
norm_test
((
1
,
0
,
0
),
1
)
norm_test
((
0
,
-
1
,
0
),
1
)
norm_test
((
0
,
0
,
-
1
),
1
)
norm_test
((
0
,
0
,
0
),
0
)
norm_test
((
0
,
7
,
0
),
7
)
norm_test
((
1
,
2
,
-
3
),
math
.
sqrt
(
14
))
norm_test
((
1
,
1
,
-
1
),
ROOT_3
)
norm_test
((
1
,
-
1
,
0
),
ROOT_2
)
def
test_normalized
(
self
):
norm_test
=
lambda
vector
,
result
:
\
self
.
assertVectorEqual
(
pu
.
pnormalized
(
vector
),
result
)
norm_test
((
1.0
,
0.0
,
0.0
),
(
1
,
0
,
0
))
norm_test
((
1
,
0
,
0
),
(
1
,
0
,
0
))
norm_test
((
0
,
1
,
0
),
(
0
,
1
,
0
))
norm_test
((
0
,
0
,
1
),
(
0
,
0
,
1
))
norm_test
((
-
1
,
0
,
0
),
(
-
1
,
0
,
0
))
norm_test
((
0
,
-
1
,
0
),
(
0
,
-
1
,
0
))
norm_test
((
0
,
0
,
-
1
),
(
0
,
0
,
-
1
))
norm_test
((
0
,
-
7
,
0
),
(
0
,
-
1
,
0
))
norm_test
((
1
,
-
1
,
0
),
(
1
/
ROOT_2
,
-
1
/
ROOT_2
,
0
))
norm_test
((
1
,
1
,
-
1
),
(
1
/
ROOT_3
,
1
/
ROOT_3
,
-
1
/
ROOT_3
))
norm_test
((
3
,
-
4
,
2
),
(
0.55708601453
,
-
0.7427813527
,
0.37139067635
))
# normalized zero-length vector returns None
self
.
assertIsNone
(
pu
.
pnormalized
((
0
,
0
,
0
)))
class
BinaryOperations
(
pycam
.
Test
.
PycamTestCase
):
def
test_dist
(
self
):
def
dist_test
(
a
,
b
,
result
,
axes
=
None
):
self
.
assertAlmostEqual
(
pu
.
pdist
(
a
,
b
,
axes
=
axes
),
result
)
self
.
assertAlmostEqual
(
pu
.
pdist_sq
(
a
,
b
,
axes
=
axes
),
result
**
2
)
dist_test
((
1
,
0
,
0
),
(
0
,
0
,
0
),
1
)
dist_test
((
0
,
2
,
0
),
(
0
,
0
,
0
),
2
)
dist_test
((
0
,
0
,
-
3
),
(
0
,
0
,
1
),
4
)
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
9
,
axes
=
(
0
,
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
0
,
axes
=
(
1
,
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
3
,
axes
=
(
2
,
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
math
.
sqrt
(
9
**
2
+
3
**
2
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
9
,
axes
=
(
0
,
1
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
math
.
sqrt
(
9
**
2
+
3
**
2
),
axes
=
(
0
,
2
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
3
,
axes
=
(
1
,
2
))
dist_test
((
7
,
1
,
-
3
),
(
-
2
,
1
,
0
),
math
.
sqrt
(
9
**
2
+
3
**
2
),
axes
=
(
0
,
1
,
2
))
dist_test
((
0
,
0
,
0
),
(
0
,
0
,
0
),
0
)
dist_test
((
-
7.2
,
1.3
,
32
),
(
-
7.2
,
1.3
,
32
),
0
)
dist_test
((
-
7.2
,
1.3
,
32
),
(
-
7.2
,
1.1
,
32
),
0.2
)
def
test_near
(
self
):
is_near
=
lambda
a
,
b
,
axes
=
None
:
self
.
assertTrue
(
pu
.
pnear
(
a
,
b
,
axes
=
axes
))
is_far
=
lambda
a
,
b
,
axes
=
None
:
self
.
assertFalse
(
pu
.
pnear
(
a
,
b
,
axes
=
axes
))
is_near
((
0
,
0
,
1
),
(
0
,
0
,
1.0
))
is_near
((
4.0
,
-
2.0
,
1
),
(
4
,
-
2
,
1.0
))
is_far
((
12
,
3
,
-
3
),
(
12
,
3
,
3
))
is_far
((
4
,
-
2
,
1
),
(
4
,
-
2
,
-
1.0001
))
is_near
((
4
,
-
2
,
1
),
(
4
,
-
2
,
-
1.0001
),
axes
=
(
0
,
1
))
is_far
((
4
,
-
2
,
1
),
(
4
,
-
2
,
-
1.0001
),
axes
=
(
1
,
2
))
is_far
((
4
,
-
2
,
1
),
(
4
,
-
2
,
-
1.0001
),
axes
=
(
2
,
))
def
test_cmp
(
self
):
is_greater
=
lambda
a
,
b
,
axes
=
None
:
self
.
assertEqual
(
pu
.
pcmp
(
a
,
b
,
axes
=
axes
),
1
)
is_equal
=
lambda
a
,
b
,
axes
=
None
:
self
.
assertEqual
(
pu
.
pcmp
(
a
,
b
,
axes
=
axes
),
0
)
is_less
=
lambda
a
,
b
,
axes
=
None
:
self
.
assertEqual
(
pu
.
pcmp
(
a
,
b
,
axes
=
axes
),
-
1
)
is_equal
((
0
,
0
,
1
),
(
0
,
0
,
1.0
))
is_greater
((
4.001
,
-
2.0
,
1
),
(
4
,
-
2
,
1.0
))
is_greater
((
4
,
-
2
,
1
),
(
4
,
-
3
,
1
))
is_greater
((
4
,
-
2
,
1
),
(
4
,
-
2
,
-
1
))
is_less
((
4
,
-
2
,
-
1.1
),
(
4
,
-
2
,
-
1
))
if
__name__
==
"__main__"
:
pycam
.
Test
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment