Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
72ab048e
Commit
72ab048e
authored
Dec 19, 2021
by
hardy
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/ci_improve_pass_fail' into integration_2021_wk51_a
parents
7a8ef65b
acfc5f30
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
43 additions
and
9 deletions
+43
-9
ci-scripts/cls_oaicitest.py
ci-scripts/cls_oaicitest.py
+17
-3
ci-scripts/main.py
ci-scripts/main.py
+5
-0
ci-scripts/ran.py
ci-scripts/ran.py
+3
-1
ci-scripts/xml_files/container_nsa_b200_quectel.xml
ci-scripts/xml_files/container_nsa_b200_quectel.xml
+4
-0
ci-scripts/xml_files/fr1_lte_2x2_quectel.xml
ci-scripts/xml_files/fr1_lte_2x2_quectel.xml
+4
-2
ci-scripts/xml_files/fr1_nsa_quectel.xml
ci-scripts/xml_files/fr1_nsa_quectel.xml
+4
-0
ci-scripts/xml_files/fr1_sa_quectel.xml
ci-scripts/xml_files/fr1_sa_quectel.xml
+4
-2
ci-scripts/xml_files/fr1_sa_quectel_stages.xml
ci-scripts/xml_files/fr1_sa_quectel_stages.xml
+2
-1
No files found.
ci-scripts/cls_oaicitest.py
View file @
72ab048e
...
@@ -126,6 +126,7 @@ class OaiCiTest():
...
@@ -126,6 +126,7 @@ class OaiCiTest():
self
.
desc
=
''
self
.
desc
=
''
self
.
ping_args
=
''
self
.
ping_args
=
''
self
.
ping_packetloss_threshold
=
''
self
.
ping_packetloss_threshold
=
''
self
.
ping_rttavg_threshold
=
''
self
.
iperf_args
=
''
self
.
iperf_args
=
''
self
.
iperf_packetloss_threshold
=
''
self
.
iperf_packetloss_threshold
=
''
self
.
iperf_profile
=
''
self
.
iperf_profile
=
''
...
@@ -1632,6 +1633,7 @@ class OaiCiTest():
...
@@ -1632,6 +1633,7 @@ class OaiCiTest():
min_msg
=
'RTT(Min) : '
+
rtt_min
+
' ms'
min_msg
=
'RTT(Min) : '
+
rtt_min
+
' ms'
avg_msg
=
'RTT(Avg) : '
+
rtt_avg
+
' ms'
avg_msg
=
'RTT(Avg) : '
+
rtt_avg
+
' ms'
max_msg
=
'RTT(Max) : '
+
rtt_max
+
' ms'
max_msg
=
'RTT(Max) : '
+
rtt_max
+
' ms'
lock
.
acquire
()
lock
.
acquire
()
logging
.
debug
(
'
\u001B
[1;37;44m ping result ('
+
UE_IPAddress
+
')
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;44m ping result ('
+
UE_IPAddress
+
')
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;34m '
+
pal_msg
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;34m '
+
pal_msg
+
'
\u001B
[0m'
)
...
@@ -1659,16 +1661,28 @@ class OaiCiTest():
...
@@ -1659,16 +1661,28 @@ class OaiCiTest():
#building html message
#building html message
qMsg
=
pal_msg
+
'
\n
'
+
min_msg
+
'
\n
'
+
avg_msg
+
'
\n
'
+
max_msg
+
'
\n
'
+
ping_stat_msg
qMsg
=
pal_msg
+
'
\n
'
+
min_msg
+
'
\n
'
+
avg_msg
+
'
\n
'
+
max_msg
+
'
\n
'
+
ping_stat_msg
#checking packet loss compliance
packetLossOK
=
True
packetLossOK
=
True
if
packetloss
is
not
None
:
if
packetloss
is
not
None
:
if
float
(
packetloss
)
>
float
(
self
.
ping_packetloss_threshold
):
if
float
(
packetloss
)
>
float
(
self
.
ping_packetloss_threshold
):
qMsg
+=
'
\n
Packet Loss too high'
qMsg
+=
'
\n
Packet Loss too high'
logging
.
debug
(
'
\u001B
[1;37;41m Packet Loss too high
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Packet Loss too high
; Target: '
+
self
.
ping_packetloss_threshold
+
'%
\u001B
[0m'
)
packetLossOK
=
False
packetLossOK
=
False
elif
float
(
packetloss
)
>
0
:
elif
float
(
packetloss
)
>
0
:
qMsg
+=
'
\n
Packet Loss is not 0%'
qMsg
+=
'
\n
Packet Loss is not 0%'
logging
.
debug
(
'
\u001B
[1;30;43m Packet Loss is not 0%
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;30;43m Packet Loss is not 0%
\u001B
[0m'
)
if
(
packetLossOK
):
#checking RTT avg compliance
rttavgOK
=
True
if
self
.
ping_rttavg_threshold
!=
''
:
if
float
(
rtt_avg
)
>
float
(
self
.
ping_rttavg_threshold
):
ping_rttavg_error_msg
=
'RTT(Avg) too high: '
+
rtt_avg
+
' ms; Target: '
+
self
.
ping_rttavg_threshold
+
' ms'
qMsg
+=
'
\n
'
+
ping_rttavg_error_msg
logging
.
debug
(
'
\u001B
[1;37;41m'
+
ping_rttavg_error_msg
+
'
\u001B
[0m'
)
rttavgOK
=
False
if
packetLossOK
and
rttavgOK
:
statusQueue
.
put
(
0
)
statusQueue
.
put
(
0
)
else
:
else
:
statusQueue
.
put
(
-
1
)
statusQueue
.
put
(
-
1
)
...
...
ci-scripts/main.py
View file @
72ab048e
...
@@ -295,6 +295,11 @@ def GetParametersFromXML(action):
...
@@ -295,6 +295,11 @@ def GetParametersFromXML(action):
CiTestObj
.
ue_id
=
""
CiTestObj
.
ue_id
=
""
else
:
else
:
CiTestObj
.
ue_id
=
ue_id
CiTestObj
.
ue_id
=
ue_id
ping_rttavg_threshold
=
test
.
findtext
(
'ping_rttavg_threshold'
)
if
(
ping_rttavg_threshold
is
None
):
CiTestObj
.
ping_rttavg_threshold
=
""
else
:
CiTestObj
.
ping_rttavg_threshold
=
ping_rttavg_threshold
elif
action
==
'Iperf'
:
elif
action
==
'Iperf'
:
CiTestObj
.
iperf_args
=
test
.
findtext
(
'iperf_args'
)
CiTestObj
.
iperf_args
=
test
.
findtext
(
'iperf_args'
)
...
...
ci-scripts/ran.py
View file @
72ab048e
...
@@ -752,6 +752,7 @@ class RANManagement():
...
@@ -752,6 +752,7 @@ class RANManagement():
msgLine
=
0
msgLine
=
0
foundSegFault
=
False
foundSegFault
=
False
foundRealTimeIssue
=
False
foundRealTimeIssue
=
False
foundRealTimeIssue_cnt
=
0
rrcSetupComplete
=
0
rrcSetupComplete
=
0
rrcReleaseRequest
=
0
rrcReleaseRequest
=
0
rrcReconfigRequest
=
0
rrcReconfigRequest
=
0
...
@@ -890,6 +891,7 @@ class RANManagement():
...
@@ -890,6 +891,7 @@ class RANManagement():
result
=
re
.
search
(
'LLL'
,
str
(
line
))
result
=
re
.
search
(
'LLL'
,
str
(
line
))
if
result
is
not
None
and
not
exitSignalReceived
:
if
result
is
not
None
and
not
exitSignalReceived
:
foundRealTimeIssue
=
True
foundRealTimeIssue
=
True
foundRealTimeIssue_cnt
+=
1
if
foundAssertion
and
(
msgLine
<
3
):
if
foundAssertion
and
(
msgLine
<
3
):
msgLine
+=
1
msgLine
+=
1
msgAssertion
+=
str
(
line
)
msgAssertion
+=
str
(
line
)
...
@@ -1258,7 +1260,7 @@ class RANManagement():
...
@@ -1258,7 +1260,7 @@ class RANManagement():
global_status
=
CONST
.
ENB_PROCESS_ASSERTION
global_status
=
CONST
.
ENB_PROCESS_ASSERTION
if
foundRealTimeIssue
:
if
foundRealTimeIssue
:
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB faced real time issues!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
nodeB_prefix
+
'NB faced real time issues!
\u001B
[0m'
)
htmleNBFailureMsg
+=
nodeB_prefix
+
'NB faced real time issues!
\n
'
htmleNBFailureMsg
+=
nodeB_prefix
+
'NB faced real time issues!
COUNT = '
+
str
(
foundRealTimeIssue_cnt
)
+
' lines
\n
'
if
rlcDiscardBuffer
>
0
:
if
rlcDiscardBuffer
>
0
:
rlcMsg
=
nodeB_prefix
+
'NB RLC discarded '
+
str
(
rlcDiscardBuffer
)
+
' buffer(s)'
rlcMsg
=
nodeB_prefix
+
'NB RLC discarded '
+
str
(
rlcDiscardBuffer
)
+
' buffer(s)'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
rlcMsg
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
rlcMsg
+
'
\u001B
[0m'
)
...
...
ci-scripts/xml_files/container_nsa_b200_quectel.xml
View file @
72ab048e
...
@@ -39,6 +39,8 @@
...
@@ -39,6 +39,8 @@
050001
050001
070000
070000
070001
070001
050000
050001
010002
010002
000001
000001
030202
030202
...
@@ -103,6 +105,7 @@
...
@@ -103,6 +105,7 @@
<id>
idefix
</id>
<id>
idefix
</id>
<ping_args>
-c 20
</ping_args>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"050001"
>
<testCase
id=
"050001"
>
...
@@ -111,6 +114,7 @@
...
@@ -111,6 +114,7 @@
<id>
idefix
</id>
<id>
idefix
</id>
<ping_args>
-c 100 -i 0.2
</ping_args>
<ping_args>
-c 100 -i 0.2
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"070000"
>
<testCase
id=
"070000"
>
...
...
ci-scripts/xml_files/fr1_lte_2x2_quectel.xml
View file @
72ab048e
...
@@ -87,14 +87,16 @@
...
@@ -87,14 +87,16 @@
<desc>
Ping: 20 pings
</desc>
<desc>
Ping: 20 pings
</desc>
<id>
nrmodule2_quectel
</id>
<id>
nrmodule2_quectel
</id>
<ping_args>
-c 20
</ping_args>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
5
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
40
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"050001"
>
<testCase
id=
"050001"
>
<class>
Ping
</class>
<class>
Ping
</class>
<desc>
Ping: 100 pings, size 1024
</desc>
<desc>
Ping: 100 pings, size 1024
</desc>
<id>
nrmodule2_quectel
</id>
<id>
nrmodule2_quectel
</id>
<ping_args>
-c 100 -s 1024 -i 0,2
</ping_args>
<ping_args>
-c 100 -s 1024 -i 0,2
</ping_args>
<ping_packetloss_threshold>
5
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
30
</ping_rttavg_threshold>
</testCase>
</testCase>
...
...
ci-scripts/xml_files/fr1_nsa_quectel.xml
View file @
72ab048e
...
@@ -38,6 +38,8 @@
...
@@ -38,6 +38,8 @@
000001
000001
070001
070001
000001
000001
050000
050001
010002
010002
080001
080001
080000
080000
...
@@ -98,6 +100,7 @@
...
@@ -98,6 +100,7 @@
<id>
idefix
</id>
<id>
idefix
</id>
<ping_args>
-c 20
</ping_args>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"050001"
>
<testCase
id=
"050001"
>
...
@@ -106,6 +109,7 @@
...
@@ -106,6 +109,7 @@
<id>
idefix
</id>
<id>
idefix
</id>
<ping_args>
-c 100 -i 0.2
</ping_args>
<ping_args>
-c 100 -i 0.2
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"070000"
>
<testCase
id=
"070000"
>
...
...
ci-scripts/xml_files/fr1_sa_quectel.xml
View file @
72ab048e
...
@@ -85,7 +85,8 @@
...
@@ -85,7 +85,8 @@
<desc>
Ping: 20pings in 20sec
</desc>
<desc>
Ping: 20pings in 20sec
</desc>
<id>
nrmodule2_quectel
</id>
<id>
nrmodule2_quectel
</id>
<ping_args>
-c 20
</ping_args>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
5
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"050001"
>
<testCase
id=
"050001"
>
...
@@ -93,7 +94,8 @@
...
@@ -93,7 +94,8 @@
<desc>
Ping: 100pings in 20sec
</desc>
<desc>
Ping: 100pings in 20sec
</desc>
<id>
nrmodule2_quectel
</id>
<id>
nrmodule2_quectel
</id>
<ping_args>
-c 100 -i 0,2
</ping_args>
<ping_args>
-c 100 -i 0,2
</ping_args>
<ping_packetloss_threshold>
5
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"070000"
>
<testCase
id=
"070000"
>
...
...
ci-scripts/xml_files/fr1_sa_quectel_stages.xml
View file @
72ab048e
...
@@ -92,7 +92,8 @@
...
@@ -92,7 +92,8 @@
<desc>
Ping: 20pings in 20sec
</desc>
<desc>
Ping: 20pings in 20sec
</desc>
<id>
nrmodule2_quectel
</id>
<id>
nrmodule2_quectel
</id>
<ping_args>
-c 20
</ping_args>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
5
</ping_packetloss_threshold>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
...
...
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