Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90450577
routines_base.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 19:23
Size
2 KB
Mime Type
text/x-python
Expires
Sun, Nov 3, 19:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22077845
Attached To
R6746 RationalROMPy
routines_base.py
View Options
# Copyright (C) 2018 by the RROMPy authors
#
# This file is part of RROMPy.
#
# RROMPy is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RROMPy 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RROMPy. If not, see <http://www.gnu.org/licenses/>.
#
import
pytest
import
numpy
as
np
from
rrompy.utilities.exception_manager
import
RROMPyException
,
RROMPyWarning
from
rrompy.utilities.base.data_structures
import
(
findDictStrKey
,
purgeDict
,
purgeList
)
from
rrompy.utilities.base
import
verbosityDepth
from
rrompy.utilities.numerical
import
lowDiscrepancy
def
test_exception
():
with
pytest
.
raises
(
Exception
):
raise
RROMPyException
(
"This is an exception!"
)
def
test_warning
(
capsys
):
RROMPyWarning
(
"This is a warning."
)
out
,
err
=
capsys
.
readouterr
()
assert
"This is a warning."
in
out
assert
len
(
err
)
==
0
def
test_dict_list
():
dictBase
=
{
str
(
x
):
str
(
x
**
2
)
for
x
in
range
(
10
)}
assert
findDictStrKey
(
"-1"
,
dictBase
.
keys
())
is
None
assert
findDictStrKey
(
"5"
,
dictBase
.
keys
())
==
"5"
dictPurged
=
purgeDict
(
dictBase
,
[
str
(
x
)
for
x
in
range
(
4
)],
silent
=
True
)
assert
len
(
dictPurged
.
keys
())
==
4
listBase
=
list
(
dictBase
.
values
())
listPurged
=
purgeList
(
listBase
,
[
str
(
x
**
2
)
for
x
in
range
(
4
,
6
)],
silent
=
True
)
assert
len
(
listPurged
)
==
2
def
test_vandercorput
():
idxs
=
lowDiscrepancy
(
8
)
assert
np
.
all
(
idxs
==
np
.
array
([
0
,
4
,
2
,
6
,
1
,
5
,
3
,
7
]))
def
test_verbositydepth
(
capsys
):
verbosityDepth
(
"INIT"
,
"Start message"
,
timestamp
=
False
)
out
,
err
=
capsys
.
readouterr
()
assert
out
==
"┌Start message
\n
"
assert
len
(
err
)
==
0
verbosityDepth
(
"MAIN"
,
"Main message"
,
end
=
"
\n\n
"
,
timestamp
=
False
)
out
,
err
=
capsys
.
readouterr
()
assert
out
==
"├Main message
\n\n
"
assert
len
(
err
)
==
0
verbosityDepth
(
"INIT"
,
"Start message2"
)
verbosityDepth
(
"DEL"
,
"Delete message2"
)
verbosityDepth
(
"DEL"
,
"Delete message"
)
with
pytest
.
raises
(
Exception
):
verbosityDepth
(
"DEL"
,
"Wrong deletion"
)
Event Timeline
Log In to Comment