Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geomag-algorithms
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Geomagnetism Program
geomag-algorithms
Commits
c01fa5b3
Commit
c01fa5b3
authored
4 years ago
by
Jeremy M Fee
Browse files
Options
Downloads
Patches
Plain Diff
Convert test fixture to regular methods
parent
79df4678
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/residual_test/residual_test.py
+44
-53
44 additions, 53 deletions
test/residual_test/residual_test.py
with
44 additions
and
53 deletions
test/residual_test/residual_test.py
+
44
−
53
View file @
c01fa5b3
...
@@ -3,77 +3,68 @@ from numpy.testing import assert_almost_equal
...
@@ -3,77 +3,68 @@ from numpy.testing import assert_almost_equal
import
pytest
import
pytest
class
test_functions
:
def
assert_absolutes
(
original
,
result
):
@staticmethod
"""
def
get_absolutes
(
tmp_path
):
Compares calculation results to original absolutes from spreadsheet
"""
"""
Tests functionality of SpreadsheetAbsolutesFactory and recalculation of absolutes
assert_almost_equal
(
"""
[
original
[
"
H
"
].
absolute
,
original
[
"
H
"
].
baseline
],
# establish SpreadsheetAbsolutesFactory for reading test data from Excel
[
result
[
"
H
"
].
absolute
,
result
[
"
H
"
].
baseline
],
saf
=
SpreadsheetAbsolutesFactory
()
decimal
=
4
,
# Read spreadsheet containing test data
verbose
=
True
,
reading
=
saf
.
parse_spreadsheet
(
path
=
tmp_path
)
)
# establish original absolute object
assert_almost_equal
(
original
=
{
a
.
element
:
a
for
a
in
reading
.
absolutes
}
[
original
[
"
D
"
].
absolute
,
original
[
"
D
"
].
baseline
],
# recalculate absolute object using Calculation.py
[
result
[
"
D
"
].
absolute
,
result
[
"
D
"
].
baseline
],
reading
.
update_absolutes
()
decimal
=
3
,
# establish recalculated absolute object
verbose
=
True
,
result
=
{
a
.
element
:
a
for
a
in
reading
.
absolutes
}
)
return
original
,
result
assert_almost_equal
(
[
original
[
"
Z
"
].
absolute
,
original
[
"
Z
"
].
baseline
],
@staticmethod
[
result
[
"
Z
"
].
absolute
,
result
[
"
Z
"
].
baseline
],
def
assert_absolutes
(
original
,
result
):
decimal
=
4
,
"""
verbose
=
True
,
Compares calculation results to original absolutes from spreadsheet
)
"""
assert_almost_equal
(
[
original
[
"
H
"
].
absolute
,
original
[
"
H
"
].
baseline
],
[
result
[
"
H
"
].
absolute
,
result
[
"
H
"
].
baseline
],
decimal
=
4
,
verbose
=
True
,
)
assert_almost_equal
(
[
original
[
"
D
"
].
absolute
,
original
[
"
D
"
].
baseline
],
[
result
[
"
D
"
].
absolute
,
result
[
"
D
"
].
baseline
],
decimal
=
3
,
verbose
=
True
,
)
assert_almost_equal
(
[
original
[
"
Z
"
].
absolute
,
original
[
"
Z
"
].
baseline
],
[
result
[
"
Z
"
].
absolute
,
result
[
"
Z
"
].
baseline
],
decimal
=
4
,
verbose
=
True
,
)
@pytest.fixture
def
compare_spreadsheet_absolutes
(
path
):
def
test_session
():
"""
return
test_functions
Tests functionality of SpreadsheetAbsolutesFactory and recalculation of absolutes
"""
# establish SpreadsheetAbsolutesFactory for reading test data from Excel
saf
=
SpreadsheetAbsolutesFactory
()
# Read spreadsheet containing test data
reading
=
saf
.
parse_spreadsheet
(
path
=
path
)
# establish original absolute object
original
=
{
a
.
element
:
a
for
a
in
reading
.
absolutes
}
reading
.
update_absolutes
()
result
=
{
a
.
element
:
a
for
a
in
reading
.
absolutes
}
return
original
,
result
def
test_DED_20140952332
(
test_session
):
def
test_DED_20140952332
():
"""
"""
Compare calulations to original absolutes obejct from Spreadsheet.
Compare calulations to original absolutes obejct from Spreadsheet.
Tests gathering of Dedhorse
'
s metadata for use by calculations.
Tests gathering of Dedhorse
'
s metadata for use by calculations.
Tests calculations for measurements in units of DMS.
Tests calculations for measurements in units of DMS.
"""
"""
# gather absolute from DED test data and recalculate
# gather absolute from DED test data and recalculate
original
,
result
=
test_session
.
g
et_absolutes
(
original
,
result
=
compare_spreadshe
et_absolutes
(
tmp_
path
=
"
etc/residual/DED-20140952332.xlsm
"
path
=
"
etc/residual/DED-20140952332.xlsm
"
)
)
# test results with original spreadsheet values
# test results with original spreadsheet values
test_session
.
assert_absolutes
(
original
,
result
)
assert_absolutes
(
original
,
result
)
def
test_BRW_20133650000
(
test_session
):
def
test_BRW_20133650000
():
"""
"""
Compare calulations to original absolutes obejct from Spreadsheet.
Compare calulations to original absolutes obejct from Spreadsheet.
Tests gathering of BRW
'
s metadata for use by calculations.
Tests gathering of BRW
'
s metadata for use by calculations.
Tests calculations for measurements in units of DM.
Tests calculations for measurements in units of DM.
"""
"""
# gather absolute from
BRW
test data and recalculate
# gather absolute from
DED
test data and recalculate
original
,
result
=
test_session
.
g
et_absolutes
(
original
,
result
=
compare_spreadshe
et_absolutes
(
tmp_
path
=
"
etc/residual/BRW-20133650000.xlsm
"
path
=
"
etc/residual/BRW-20133650000.xlsm
"
)
)
# test results with original spreadsheet values
# test results with original spreadsheet values
test_session
.
assert_absolutes
(
original
,
result
)
assert_absolutes
(
original
,
result
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment