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
c04a74c1
Commit
c04a74c1
authored
7 years ago
by
Hunsinger, Heather Elizabeth
Browse files
Options
Downloads
Patches
Plain Diff
Add test factories
parent
9d87ee1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/develop.md
+2
-2
2 additions, 2 deletions
docs/develop.md
geomagio/WebService.py
+1
-1
1 addition, 1 deletion
geomagio/WebService.py
test/WebService_test.py
+60
-69
60 additions, 69 deletions
test/WebService_test.py
with
63 additions
and
72 deletions
docs/develop.md
+
2
−
2
View file @
c04a74c1
...
...
@@ -8,11 +8,11 @@ code for this project, and may also be used to run a local copy of the code.
Begin Developing
----------------
1.
Install
`obspy`
,
`pycurl`
,
`flake8`
,
and
`nose`
.
1.
Install
`obspy`
,
`pycurl`
,
`flake8`
,
`nose`
,
`webtest`
.
> Using Anaconda is recommended ( https://conda.io/miniconda.html ).
conda config --add channels conda-forge
conda create --name geomagenv obspy pycurl flake8 nose coverage
conda create --name geomagenv obspy pycurl flake8 nose coverage
webtest
source activate geomagenv
2.
Fork this project on Github ( https://guides.github.com/activities/forking/ ).
...
...
This diff is collapsed.
Click to expand it.
geomagio/WebService.py
+
1
−
1
View file @
c04a74c1
...
...
@@ -107,7 +107,7 @@ class WebService(object):
timeseries_string
=
timeseries_string
.
encode
(
'
utf8
'
)
except
Exception
:
exception
=
sys
.
exc_info
()[
1
]
message
=
exception
.
args
[
0
]
message
=
"
Server error.
"
error_body
=
self
.
error
(
500
,
message
,
environ
,
start_response
)
return
[
error_body
]
return
[
timeseries_string
]
...
...
This diff is collapsed.
Click to expand it.
test/WebService_test.py
+
60
−
69
View file @
c04a74c1
"""
Unit Tests for WebService
"""
from
cgi
import
parse_qs
from
datetime
import
datetime
from
nose.tools
import
assert_equals
from
nose.tools
import
assert_raises
from
nose.tools
import
assert_is_instance
import
sys
from
nose.tools
import
assert_equals
,
assert_is_instance
,
assert_raises
import
numpy
from
webtest
import
TestApp
from
geomagio.edge
import
EdgeFactory
from
geomagio.WebService
import
_get_param
from
geomagio.WebService
import
WebService
import
obspy.core
from
obspy.core.stream
import
Stream
from
obspy.core.utcdatetime
import
UTCDateTime
APP
=
TestApp
(
WebService
(
EdgeFactory
()))
class
TestFactory
(
object
):
"
Factory to test for 200 and 400 response statuses.
"
@staticmethod
def
get_timeseries
(
observatory
=
None
,
channels
=
None
,
starttime
=
None
,
endtime
=
None
,
type
=
None
,
interval
=
None
):
stream
=
obspy
.
core
.
Stream
()
for
channel
in
channels
:
stats
=
obspy
.
core
.
Stats
()
stats
.
channel
=
channel
stats
.
starttime
=
starttime
stats
.
network
=
'
Test
'
stats
.
station
=
observatory
stats
.
location
=
observatory
if
interval
==
'
second
'
:
stats
.
sampling_rate
=
1.
elif
interval
==
'
minute
'
:
stats
.
sampling_rate
=
1.
/
60.
elif
interval
==
'
hourly
'
:
stats
.
sampling_rate
=
1.
/
3600.
elif
interval
==
'
daily
'
:
stats
.
sampling_rate
=
1.
/
86400.
length
=
int
((
endtime
-
starttime
)
*
stats
.
sampling_rate
)
stats
.
npts
=
length
+
1
data
=
numpy
.
full
(
length
,
numpy
.
nan
,
dtype
=
numpy
.
float64
)
trace
=
obspy
.
core
.
Trace
(
data
,
stats
)
stream
.
append
(
trace
)
return
stream
class
ErrorFactory
(
object
):
"
Factory to test for 500 response status.
"
@staticmethod
def
get_timeseries
(
observatory
=
None
,
channels
=
None
,
starttime
=
None
,
endtime
=
None
,
type
=
None
,
interval
=
None
):
pass
def
test__get_param
():
...
...
@@ -78,6 +113,7 @@ def test_parse():
assert_equals
(
query
.
sampling_period
,
'
60
'
)
assert_equals
(
query
.
output_format
,
'
iaga2002
'
)
assert_equals
(
query
.
data_type
,
'
variation
'
)
assert_raises
(
Exception
,
service
.
parse
,
parse_qs
(
'
/?id=bad
'
))
def
test_requests
():
...
...
@@ -86,70 +122,25 @@ def test_requests():
Use TestApp to confirm correct response status, status int,
and content-type.
"""
app
=
TestApp
(
WebService
(
TestFactory
()))
# Check invalid request (bad values)
invalid_values
=
[
'
/
'
,
'
/?id=bad
'
,
'
/?id=BOU&starttime=2017-50-50
'
,
'
/?id=BOU&starttime=2016-06-06&endtime=2017-50-50
'
,
'
/?id=BOU&starttime=2016-06-06&endtime=2016-06-05
'
,
'
/?id=BOU&elements=H,E,D,Z,F
'
,
'
/?id=BOU&sampling_period=20
'
,
'
/?id=BOU&type=bad
'
,
'
/?id=BOU&format=bad
'
]
for
invalid_val
in
invalid_values
:
try
:
response
=
APP
.
get
(
invalid_val
,
expect_errors
=
True
)
assert_equals
(
response
.
status_int
,
400
)
assert_equals
(
response
.
status
,
'
400 Bad Request
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
except
Exception
:
exception
=
sys
.
exc_info
()[
1
]
message
=
exception
.
args
[
0
]
print
(
'
FAIL:
'
+
message
+
'
\n
request =
'
+
invalid_val
)
response
=
app
.
get
(
'
/?id=bad
'
,
expect_errors
=
True
)
assert_equals
(
response
.
status_int
,
400
)
assert_equals
(
response
.
status
,
'
400 Bad Request
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
# Check invalid request (duplicates)
duplicate_values
=
[
'
/?id=BOU&id=BOU
'
,
'
/?id=BOU&starttime=2016-06-06&starttime=2016-06-06
'
,
'
/?id=BOU&endtime=2017-50-50&endtime=2017-50-50
'
,
'
/?id=BOU&elements=H,E,Z&elements=H,E,Z
'
,
'
/?id=BOU&sampling_period=1&sampling_period=60
'
,
'
/?id=BOU&type=variation&type=variation
'
,
'
/?id=BOU&format=iaga2002&format=iaga2002
'
]
for
duplicate
in
duplicate_values
:
try
:
response
=
APP
.
get
(
duplicate
,
expect_errors
=
True
)
assert_equals
(
response
.
status_int
,
400
)
assert_equals
(
response
.
status
,
'
400 Bad Request
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
except
Exception
:
exception
=
sys
.
exc_info
()[
1
]
message
=
exception
.
args
[
0
]
print
(
'
FAIL:
'
+
message
+
'
\n
request =
'
+
duplicate
)
response
=
app
.
get
(
'
/?id=BOU&id=BOU
'
,
expect_errors
=
True
)
assert_equals
(
response
.
status_int
,
400
)
assert_equals
(
response
.
status
,
'
400 Bad Request
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
# Check valid request (upper and lower case)
valid_requests
=
[
'
/?id=BOU
'
,
'
/?id=bou
'
,
'
/?id=bou&starttime=2016-06-06
'
,
'
/?id=bou&starttime=2016-06-06&endtime=2016-06-07
'
,
'
/?id=bou&elements=H,E,Z,F
'
,
'
/?id=bou&elements=h,e,z,f
'
,
'
/?id=BOU&sampling_period=1
'
,
'
/?id=BOU&sampling_period=60
'
,
'
/?id=BOU&type=variation
'
,
'
/?id=BOU&type=VARIATION
'
,
'
/?id=BOU&format=iaga2002
'
,
'
/?id=BOU&format=IAGA2002
'
]
for
request
in
valid_requests
:
try
:
response
=
APP
.
get
(
request
)
assert_equals
(
response
.
status_int
,
200
)
assert_equals
(
response
.
status
,
'
200 OK
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
except
Exception
:
exception
=
sys
.
exc_info
()[
1
]
message
=
exception
.
args
[
0
]
print
(
'
FAIL:
'
+
message
+
'
\n
request =
'
+
request
)
response
=
app
.
get
(
'
/?id=BOU
'
)
assert_equals
(
response
.
status_int
,
200
)
assert_equals
(
response
.
status
,
'
200 OK
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
# Test internal server error (use fake factory)
app
=
TestApp
(
WebService
(
ErrorFactory
()))
response
=
app
.
get
(
'
/?id=BOU
'
,
expect_errors
=
True
)
assert_equals
(
response
.
status_int
,
500
)
assert_equals
(
response
.
status
,
'
500 Internal Server Error
'
)
assert_equals
(
response
.
content_type
,
'
text/plain
'
)
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