Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
106
Merge Requests
106
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
1b6f03b2
Commit
1b6f03b2
authored
Jan 10, 2024
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
debafa59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
6 deletions
+39
-6
software/ors-amarisoft/test/test.py
software/ors-amarisoft/test/test.py
+37
-5
software/ors-amarisoft/test/test.sh
software/ors-amarisoft/test/test.sh
+2
-1
No files found.
software/ors-amarisoft/test/test.py
View file @
1b6f03b2
...
@@ -365,8 +365,8 @@ class ENBTestCase(AmariTestCase):
...
@@ -365,8 +365,8 @@ class ENBTestCase(AmariTestCase):
])
])
#
TestENB_SDR verifies eNB wrt SDR driver in
all LTE/NR x FDD/TDD modes.
#
SDR4 is mixin to verify SDR driver wrt
all LTE/NR x FDD/TDD modes.
class
TestENB_SDR
(
ENBTestCase
)
:
class
SDR4
:
@
classmethod
@
classmethod
def
RUcfg
(
cls
,
i
):
def
RUcfg
(
cls
,
i
):
return
{
return
{
...
@@ -392,8 +392,8 @@ class TestENB_SDR(ENBTestCase):
...
@@ -392,8 +392,8 @@ class TestENB_SDR(ENBTestCase):
t
.
assertEqual
(
t
.
enb_cfg
[
'rx_gain'
],
[
21
]
*
2
+
[
22
]
*
2
+
[
23
]
*
2
+
[
24
]
*
2
)
t
.
assertEqual
(
t
.
enb_cfg
[
'rx_gain'
],
[
21
]
*
2
+
[
22
]
*
2
+
[
23
]
*
2
+
[
24
]
*
2
)
#
TestENB_Lopcomm verifies eNB wrt Lopcomm driver in
all LTE/NR x FDD/TDD modes.
#
Lopcomm4 is mixin to verify Lopcomm driver wrt
all LTE/NR x FDD/TDD modes.
class
TestENB_Lopcomm
(
ENBTestCase
)
:
class
Lopcomm4
:
@
classmethod
@
classmethod
def
RUcfg
(
cls
,
i
):
def
RUcfg
(
cls
,
i
):
return
{
return
{
...
@@ -452,7 +452,6 @@ class TestENB_Lopcomm(ENBTestCase):
...
@@ -452,7 +452,6 @@ class TestENB_Lopcomm(ENBTestCase):
_
(
3
,
uctx
(
'FDD'
,
'NR'
,
300300
,
290700
,
15000000
,
1501500000
,
1453500000
,
13
,
23
))
_
(
3
,
uctx
(
'FDD'
,
'NR'
,
300300
,
290700
,
15000000
,
1501500000
,
1453500000
,
13
,
23
))
_
(
4
,
uctx
(
'TDD'
,
'NR'
,
470400
,
470400
,
20000000
,
2352000000
,
2352000000
,
14
,
24
))
_
(
4
,
uctx
(
'TDD'
,
'NR'
,
470400
,
470400
,
20000000
,
2352000000
,
2352000000
,
14
,
24
))
def
_test_ru_cu_cfg
(
t
,
i
,
uctx
):
def
_test_ru_cu_cfg
(
t
,
i
,
uctx
):
cu_xml
=
t
.
ipath
(
'etc/%s'
%
xbuildout
.
encode
(
'%s-cu_config.xml'
%
t
.
ref
(
'RU%d'
%
i
)))
cu_xml
=
t
.
ipath
(
'etc/%s'
%
xbuildout
.
encode
(
'%s-cu_config.xml'
%
t
.
ref
(
'RU%d'
%
i
)))
with
open
(
cu_xml
,
'r'
)
as
f
:
with
open
(
cu_xml
,
'r'
)
as
f
:
...
@@ -491,6 +490,39 @@ class TestENB_Lopcomm(ENBTestCase):
...
@@ -491,6 +490,39 @@ class TestENB_Lopcomm(ENBTestCase):
})
})
# Sunwave4 is mixin to verify Sunwave driver wrt all LTE/NR x FDD/TDD modes.
class
Sunwave4
:
@
classmethod
def
RUcfg
(
cls
,
i
):
return
{
'ru_type'
:
'sunwave'
,
'ru_link_type'
:
'cpri'
,
'cpri_link'
:
{
'sdr_dev'
:
1
,
'sfp_port'
:
i
,
'mult'
:
5
,
'mapping'
:
'bf1'
,
'rx_delay'
:
40
+
i
,
'tx_delay'
:
50
+
i
,
'tx_dbm'
:
60
+
i
},
}
# radio units configuration in enb.cfg
def
test_enb_conf_ru
(
t
):
assertMatch
(
t
,
t
.
enb_cfg
[
'rf_driver'
],
dict
(
args
=
'dev0=/dev/sdr1@1,dev1=/dev/sdr1@2,dev2=/dev/sdr1@3,dev3=/dev/sdr1@4'
,
cpri_mapping
=
'bf1,bg1,bf1,bf1'
,
# XXX
cpri_mult
=
'5,5,5,5'
,
cpri_rx_delay
=
'41,42,43,44'
,
cpri_tx_delay
=
'51,52,53,54'
,
cpri_tx_dbm
=
'61,62,63,64'
,
))
class
TestENB_SDR
(
ENBTestCase
,
SDR4
):
pass
class
TestENB_Lopcomm
(
ENBTestCase
,
Lopcomm4
):
pass
class
TestENB_Sunwave
(
ENBTestCase
,
Sunwave4
):
pass
# XXX not possible to test Lopcomm nor Sunwave because on "slapos standalone" there is no slaptap.
# XXX not possible to test Lopcomm nor Sunwave because on "slapos standalone" there is no slaptap.
# XXX -> possible - adjust SR with testing=True workaround
# XXX -> possible - adjust SR with testing=True workaround
...
...
software/ors-amarisoft/test/test.sh
View file @
1b6f03b2
...
@@ -19,4 +19,5 @@ export SLAPOS_TEST_LOG_DIRECTORY=`pwd`/snapshot
...
@@ -19,4 +19,5 @@ export SLAPOS_TEST_LOG_DIRECTORY=`pwd`/snapshot
#time ../k/kpython_for_test -m unittest discover -vf
#time ../k/kpython_for_test -m unittest discover -vf
#time ../k/kpython_for_test -m unittest discover -vf -k TestENB_CPRI
#time ../k/kpython_for_test -m unittest discover -vf -k TestENB_CPRI
#time ../k/kpython_for_test -m unittest discover -vf -k TestENB_SDR
#time ../k/kpython_for_test -m unittest discover -vf -k TestENB_SDR
time
../k/kpython_for_test
-m
unittest discover
-vf
-k
TestENB_Lopcomm
#time ../k/kpython_for_test -m unittest discover -vf -k TestENB_Lopcomm
time
../k/kpython_for_test
-m
unittest discover
-vf
-k
TestENB_Sunwave
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