Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
2c0f770d
Commit
2c0f770d
authored
Jan 10, 2024
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
c78db01b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
13 deletions
+19
-13
software/ors-amarisoft/test/test.py
software/ors-amarisoft/test/test.py
+19
-13
No files found.
software/ors-amarisoft/test/test.py
View file @
2c0f770d
...
@@ -18,6 +18,12 @@
...
@@ -18,6 +18,12 @@
# XXX core-network - skip - verified by ors
# XXX core-network - skip - verified by ors
# (*) here we verify only generated configuration because it is not possible to
# run Amarisoft software on the testnodes due to licensing restrictions.
#
# end-to-end testing complements unit-testing by verifying how LTE works
# for real on dedicated hardware test setup.
import
os
import
os
import
json
import
json
...
@@ -174,6 +180,8 @@ class AmariTestCase(_AmariTestCase):
...
@@ -174,6 +180,8 @@ class AmariTestCase(_AmariTestCase):
return
'%s/%s'
%
(
cls
.
computer_partition_root_path
,
path
)
return
'%s/%s'
%
(
cls
.
computer_partition_root_path
,
path
)
# ---- eNB + base class for similar services that do radio ----
# RFTestCase4 is base class for tests of all services that do radio.
# RFTestCase4 is base class for tests of all services that do radio.
#
#
# It instantiates a service with several Radio Units and Cells attached.
# It instantiates a service with several Radio Units and Cells attached.
...
@@ -201,6 +209,7 @@ class AmariTestCase(_AmariTestCase):
...
@@ -201,6 +209,7 @@ class AmariTestCase(_AmariTestCase):
# - RUcfg(i) to return primary parameters specific for i'th RU configuration
# - RUcfg(i) to return primary parameters specific for i'th RU configuration
# like ru_type - to verify particular RU driver, sdr_dev, sfp_port and so on.
# like ru_type - to verify particular RU driver, sdr_dev, sfp_port and so on.
# - CELLcfg(i) to tune parameters of i'th cell, for example cell_kind.
# - CELLcfg(i) to tune parameters of i'th cell, for example cell_kind.
# - .rf_cfg with loaded service config
class
RFTestCase4
(
AmariTestCase
):
class
RFTestCase4
(
AmariTestCase
):
@
classmethod
@
classmethod
def
requestAllShared
(
cls
,
imain
):
def
requestAllShared
(
cls
,
imain
):
...
@@ -226,17 +235,19 @@ class RFTestCase4(AmariTestCase):
...
@@ -226,17 +235,19 @@ class RFTestCase4(AmariTestCase):
RU
(
3
);
CELL
(
3
,
FDD
|
NR
(
300300
,
74
)
|
BW
(
15
))
RU
(
3
);
CELL
(
3
,
FDD
|
NR
(
300300
,
74
)
|
BW
(
15
))
RU
(
4
);
CELL
(
4
,
TDD
|
NR
(
470400
,
40
)
|
BW
(
20
))
RU
(
4
);
CELL
(
4
,
TDD
|
NR
(
470400
,
40
)
|
BW
(
20
))
def
test_conf_txrx_gain
(
t
):
# NOTE even though setting tx_gain/rx_gain does not make any difference
# for CPRI case, we still do set it there for consistency. For the
# reference: for CPRI case the real tx/rx gain is set in RU
# configuration and is verified by RU tests.
t
.
assertEqual
(
t
.
rf_cfg
[
'tx_gain'
],
[
11
]
*
4
+
[
12
]
*
4
+
[
13
]
*
4
+
[
14
]
*
4
)
t
.
assertEqual
(
t
.
rf_cfg
[
'rx_gain'
],
[
21
]
*
2
+
[
22
]
*
2
+
[
23
]
*
2
+
[
24
]
*
2
)
# ENBTestCase4 provides base class for unit-testing eNB service.
# ENBTestCase4 provides base class for unit-testing eNB service.
#
#
# It instantiates enb with 4 Radio Units x 4 Cells and verifies generated
# It instantiates enb with 4 Radio Units x 4 Cells and verifies generated
# enb.cfg to match what is expected(*).
# enb.cfg to match what is expected.
#
# (*) here we verify only generated configuration because it is not possible to
# run Amarisoft software on the testnodes due to licensing restrictions.
#
# end-to-end testing complements unit-testing by verifying how LTE works
# for real on dedicated hardware test setup.
class
ENBTestCase4
(
RFTestCase4
):
class
ENBTestCase4
(
RFTestCase4
):
@
classmethod
@
classmethod
def
getInstanceSoftwareType
(
cls
):
def
getInstanceSoftwareType
(
cls
):
...
@@ -399,7 +410,7 @@ class SDR4:
...
@@ -399,7 +410,7 @@ class SDR4:
}
}
# radio units configuration
# radio units configuration
def
test_enb_conf_ru
(
t
):
def
test_enb_conf_ru
(
t
):
# XXX enb/ue ?
assertMatch
(
t
,
t
.
rf_cfg
[
'rf_driver'
],
dict
(
assertMatch
(
t
,
t
.
rf_cfg
[
'rf_driver'
],
dict
(
args
=
'dev0=/dev/sdr2,dev1=/dev/sdr3,dev2=/dev/sdr4,dev3=/dev/sdr5,'
+
args
=
'dev0=/dev/sdr2,dev1=/dev/sdr3,dev2=/dev/sdr4,dev3=/dev/sdr5,'
+
'dev4=/dev/sdr6,dev5=/dev/sdr7,dev6=/dev/sdr8,dev7=/dev/sdr9'
,
'dev4=/dev/sdr6,dev5=/dev/sdr7,dev6=/dev/sdr8,dev7=/dev/sdr9'
,
...
@@ -410,10 +421,6 @@ class SDR4:
...
@@ -410,10 +421,6 @@ class SDR4:
cpri_tx_dbm
=
NO
,
cpri_tx_dbm
=
NO
,
))
))
# XXX -> generic ? XXX no (for cpri case it is all 0 here)
t
.
assertEqual
(
t
.
rf_cfg
[
'tx_gain'
],
[
11
]
*
4
+
[
12
]
*
4
+
[
13
]
*
4
+
[
14
]
*
4
)
t
.
assertEqual
(
t
.
rf_cfg
[
'rx_gain'
],
[
21
]
*
2
+
[
22
]
*
2
+
[
23
]
*
2
+
[
24
]
*
2
)
# Lopcomm4 is mixin to verify Lopcomm driver wrt all LTE/NR x FDD/TDD modes.
# Lopcomm4 is mixin to verify Lopcomm driver wrt all LTE/NR x FDD/TDD modes.
class
Lopcomm4
:
class
Lopcomm4
:
...
@@ -693,7 +700,6 @@ class TestUEsim_Sunwave4 (UEsimTestCase4, Sunwave4): pass
...
@@ -693,7 +700,6 @@ class TestUEsim_Sunwave4 (UEsimTestCase4, Sunwave4): pass
class
TestUEsim_RUMultiType4
(
UEsimTestCase4
,
RUMultiType4
):
pass
class
TestUEsim_RUMultiType4
(
UEsimTestCase4
,
RUMultiType4
):
pass
# ---- misc ----
# ---- misc ----
# yamlpp_load loads yaml config file after preprocessing it.
# yamlpp_load loads yaml config file after preprocessing it.
...
...
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