Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Duncan Macleod
lalsuite
Commits
3f5bd859
Unverified
Commit
3f5bd859
authored
Nov 14, 2022
by
Duncan Macleod
Browse files
lal: use parametrize for swig type conversion tests
parent
73ae8691
Pipeline
#476095
failed with stages
in 90 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lal/swig/SWIGTestLALPython.py
View file @
3f5bd859
...
...
@@ -1342,30 +1342,65 @@ def test_Python_dict_to_LALDict_typemap():
lal
.
swig_lal_test_pydict_to_laldict
(
pydict
)
def
test_Python_conversion_of_NumPy_fixed_width_integer_float_types
():
"""check Python conversion of NumPy fixed-width integer/float types
@
pytest
.
mark
.
parametrize
((
"inputs"
,
"result"
),
[
((
10
,
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
int16
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
int32
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
int64
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
])
def
test_conversion_of_numpy_fixed_width_types_int
(
inputs
,
result
):
"""Check conversion of NumPy fixed-width int types.
"""
assert
lal
.
swig_lal_test_numpy_int_types
(
10
,
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_int_types
(
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_int_types
(
numpy
.
int16
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_int_types
(
numpy
.
int32
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_int_types
(
numpy
.
int64
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_uint_types
(
10
,
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_uint_types
(
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_uint_types
(
numpy
.
uint16
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_uint_types
(
numpy
.
uint32
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_uint_types
(
numpy
.
uint64
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_flt_types
(
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_flt_types
(
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_flt_types
(
numpy
.
float_
(
10
),
numpy
.
float16
(
20
),
numpy
.
float32
(
30
),
numpy
.
float64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_cpx_types
(
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
))
==
20
assert
lal
.
swig_lal_test_numpy_cpx_types
(
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_cpx_types
(
numpy
.
float_
(
10
),
numpy
.
float16
(
20
),
numpy
.
float32
(
30
),
numpy
.
float64
(
40
))
==
100
assert
lal
.
swig_lal_test_numpy_cpx_types
(
numpy
.
complex_
(
10
),
numpy
.
complex64
(
20
),
numpy
.
complex64
(
30
),
numpy
.
complex128
(
40
))
==
100
assert
int
(
lal
.
LIGOTimeGPS
(
numpy
.
int8
(
123
)))
==
123
assert
int
(
lal
.
LIGOTimeGPS
(
numpy
.
int16
(
123
)))
==
123
assert
int
(
lal
.
LIGOTimeGPS
(
numpy
.
int32
(
123
)))
==
123
assert
int
(
lal
.
LIGOTimeGPS
(
numpy
.
int64
(
123
)))
==
123
assert
lal
.
swig_lal_test_numpy_int_types
(
*
inputs
)
==
result
@
pytest
.
mark
.
parametrize
((
"inputs"
,
"result"
),
[
((
10
,
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
uint16
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
uint32
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
uint64
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
])
def
test_conversion_of_numpy_fixed_width_types_uint
(
inputs
,
result
):
"""Check conversion of NumPy fixed-width uint types.
"""
assert
lal
.
swig_lal_test_numpy_uint_types
(
*
inputs
)
==
result
@
pytest
.
mark
.
parametrize
((
"inputs"
,
"result"
),
[
((
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
float_
(
10
),
numpy
.
float16
(
20
),
numpy
.
float32
(
30
),
numpy
.
float64
(
40
)),
100
),
])
def
test_conversion_of_numpy_fixed_width_types_flt
(
inputs
,
result
):
"""Check conversion of NumPy fixed-width float types.
"""
assert
lal
.
swig_lal_test_numpy_flt_types
(
*
inputs
)
==
result
@
pytest
.
mark
.
parametrize
((
"inputs"
,
"result"
),
[
((
numpy
.
int8
(
10
),
numpy
.
int16
(
20
),
numpy
.
int32
(
30
),
numpy
.
int64
(
-
40
)),
20
),
((
numpy
.
uint8
(
10
),
numpy
.
uint16
(
20
),
numpy
.
uint32
(
30
),
numpy
.
uint64
(
40
)),
100
),
((
numpy
.
float_
(
10
),
numpy
.
float16
(
20
),
numpy
.
float32
(
30
),
numpy
.
float64
(
40
)),
100
),
((
numpy
.
complex_
(
10
),
numpy
.
complex64
(
20
),
numpy
.
complex64
(
30
),
numpy
.
complex128
(
40
)),
100
),
])
def
test_conversion_of_numpy_fixed_width_types_cpx
(
inputs
,
result
):
"""Check conversion of NumPy complex types.
"""
assert
lal
.
swig_lal_test_numpy_cpx_types
(
*
inputs
)
==
result
@
pytest
.
mark
.
parametrize
((
"input_"
,
"result"
),
[
(
numpy
.
int8
(
123
),
123
),
(
numpy
.
int16
(
123
),
123
),
(
numpy
.
int32
(
123
),
123
),
(
numpy
.
int64
(
123
),
123
),
])
def
test_conversion_of_numpy_fixed_width_types_ligotimegps
(
input_
,
result
):
"""Check conversion of NumPy fixed-width types with LIGOTimeGPS.
"""
assert
int
(
lal
.
LIGOTimeGPS
(
input_
))
==
result
if
__name__
==
'__main__'
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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