Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joanne Hugé
slapos.toolbox
Commits
b07dcd3d
Commit
b07dcd3d
authored
Jan 31, 2023
by
Joanne Hugé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP
parent
aed97e1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
0 deletions
+79
-0
slapos/test/promise/plugin/test_check_baseband_latency.py
slapos/test/promise/plugin/test_check_baseband_latency.py
+79
-0
No files found.
slapos/test/promise/plugin/test_check_baseband_latency.py
0 → 100644
View file @
b07dcd3d
# -*- coding: utf-8 -*-
##############################################################################
# Copyright (c) 2018 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
import
mock
import
os
import
time
from
datetime
import
datetime
from
datetime
import
timedelta
from
slapos.grid.promise
import
PromiseError
from
slapos.promise.plugin.check_baseband_latency
import
RunPromise
from
.
import
TestPromisePluginMixin
class
TestCheckBasebandLatency
(
TestPromisePluginMixin
):
promise_name
=
"check-amarisoft-stats-log.py"
def
setUp
(
self
):
super
(
TestCheckBasebandLatency
,
self
).
setUp
()
self
.
amarisoft_stats_log
=
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
'amarisoft_stats.json.log'
)
with
open
(
self
.
amarisoft_stats_log
,
'w+'
)
as
f
:
f
.
write
(
"""{"time": "%s", "log_level": "INFO", "message": "Samples stats", "data": {'rf': {'rxtx_delay_min': %f}}}
{"time": "%s", "log_level": "INFO", "message": "Samples stats", "data": {'rf': {'rxtx_delay_min': %f}}}
{"time": "%s", "log_level": "INFO", "message": "Samples stats", "data": {'rf': {'rxtx_delay_min': %f}}}"""
%
(
(
datetime
.
now
()
-
timedelta
(
seconds
=
25
)).
strftime
(
"%Y-%m-%d %H:%M:%S,%f"
)[:
-
3
],
7.0
,
(
datetime
.
now
()
-
timedelta
(
seconds
=
15
)).
strftime
(
"%Y-%m-%d %H:%M:%S,%f"
)[:
-
3
],
2.0
,
(
datetime
.
now
()
-
timedelta
(
seconds
=
5
)).
strftime
(
"%Y-%m-%d %H:%M:%S,%f"
)[:
-
3
],
5.0
,
))
def
writePromise
(
self
,
**
kw
):
super
(
TestCheckBasebandLatency
,
self
).
writePromise
(
self
.
promise_name
,
"from %s import %s
\
n
extra_config_dict = %r
\
n
"
%
(
RunPromise
.
__module__
,
RunPromise
.
__name__
,
kw
))
def
test_promise_success
(
self
):
self
.
writePromise
(
**
{
'amarisoft-stats-log'
:
self
.
amarisoft_stats_log
,
'stats-period'
:
100
,
'min-rxtx-delay'
,
0
,
})
self
.
configureLauncher
()
self
.
launcher
.
run
()
def
test_promise_fail
(
self
):
self
.
writePromise
(
**
{
'amarisoft-stats-log'
:
self
.
amarisoft_stats_log
,
'stats-period'
:
100
,
'min-rxtx-delay'
,
3
,
})
self
.
configureLauncher
()
with
self
.
assertRaises
(
PromiseError
):
self
.
launcher
.
run
()
if
__name__
==
'__main__'
:
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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