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
7b5acae2
Commit
7b5acae2
authored
5 years ago
by
Jeremy M Fee
Browse files
Options
Downloads
Patches
Plain Diff
Fix Python3 RawInputClient error, add test
parent
b3198d2f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
geomagio/edge/RawInputClient.py
+6
-2
6 additions, 2 deletions
geomagio/edge/RawInputClient.py
test/edge_test/RawInputFactory_test.py
+47
-0
47 additions, 0 deletions
test/edge_test/RawInputFactory_test.py
with
53 additions
and
2 deletions
geomagio/edge/RawInputClient.py
+
6
−
2
View file @
7b5acae2
from
builtins
import
range
from
__future__
import
unicode_literals
from
builtins
import
range
,
str
import
socket
# noqa
import
socket
# noqa
import
struct
import
struct
...
@@ -132,7 +133,10 @@ class RawInputClient():
...
@@ -132,7 +133,10 @@ class RawInputClient():
the correct length. We only expect observatory to ever be of an
the correct length. We only expect observatory to ever be of an
incorrect length.
incorrect length.
"""
"""
return
str
(
network
+
observatory
.
ljust
(
5
)
+
channel
+
location
)
return
str
.
encode
(
network
+
observatory
.
ljust
(
5
)
+
channel
+
location
)
def
forceout
(
self
):
def
forceout
(
self
):
"""
force edge to recognize data
"""
force edge to recognize data
...
...
This diff is collapsed.
Click to expand it.
test/edge_test/RawInputFactory_test.py
0 → 100644
+
47
−
0
View file @
7b5acae2
"""
Tests for RawInputFactory.py
"""
import
numpy
from
obspy.core
import
Stats
,
Trace
,
UTCDateTime
from
geomagio.edge
import
EdgeFactory
,
RawInputClient
from
nose.tools
import
assert_equals
class
TestRawInputClient
(
RawInputClient
):
def
__init__
(
self
,
**
kwargs
):
RawInputClient
.
__init__
(
self
,
**
kwargs
)
self
.
last_send
=
[]
def
_send
(
self
,
buf
):
"""
stub out send method to capture data that would be sent.
"""
self
.
last_send
.
append
(
buf
)
def
test_raw_input_client
():
"""
edge_test.RawInputClient_test.test_raw_input_client()
"""
network
=
'
NT
'
station
=
'
BOU
'
channel
=
'
MVH
'
location
=
'
R0
'
data
=
[
0
,
1
,
2
,
3
,
4
,
5
]
starttime
=
UTCDateTime
(
'
2019-12-01
'
)
trace
=
Trace
(
numpy
.
array
(
data
,
dtype
=
numpy
.
float64
),
Stats
({
'
channel
'
:
channel
,
'
delta
'
:
60.0
,
'
location
'
:
location
,
'
network
'
:
network
,
'
npts
'
:
len
(
data
),
'
starttime
'
:
starttime
,
'
station
'
:
station
}))
client
=
TestRawInputClient
(
tag
=
'
tag
'
,
host
=
'
host
'
,
port
=
'
port
'
,
station
=
station
,
channel
=
channel
,
location
=
location
,
network
=
network
)
trace_send
=
EdgeFactory
().
_convert_trace_to_int
(
trace
.
copy
())
client
.
send_trace
(
'
minute
'
,
trace_send
)
# verify data was sent
assert_equals
(
len
(
client
.
last_send
),
1
)
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