Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
zzha zzha
OpenXG-RAN
Commits
3fd8b17e
Commit
3fd8b17e
authored
Mar 30, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/ci-fixes-mar-2022' into integration_2022_wk13
parents
426ded6e
a02adbdc
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
193 additions
and
59 deletions
+193
-59
ci-scripts/Jenkinsfile-push-registry
ci-scripts/Jenkinsfile-push-registry
+3
-1
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+2
-0
ci-scripts/cls_module_ue.py
ci-scripts/cls_module_ue.py
+2
-1
ci-scripts/cls_oaicitest.py
ci-scripts/cls_oaicitest.py
+31
-31
ci-scripts/cls_static_code_analysis.py
ci-scripts/cls_static_code_analysis.py
+67
-20
ci-scripts/provideUniqueImageTag.py
ci-scripts/provideUniqueImageTag.py
+54
-0
ci-scripts/ran.py
ci-scripts/ran.py
+2
-2
ci-scripts/xml_files/container_nsa_b200_quectel.xml
ci-scripts/xml_files/container_nsa_b200_quectel.xml
+32
-4
No files found.
ci-scripts/Jenkinsfile-push-registry
View file @
3fd8b17e
...
@@ -55,7 +55,9 @@ pipeline {
...
@@ -55,7 +55,9 @@ pipeline {
stage
(
"Push to DockerHub"
)
{
stage
(
"Push to DockerHub"
)
{
steps
{
steps
{
script
{
script
{
WEEK_TAG
=
sh
returnStdout:
true
,
script:
'date +"%Y.w%U"'
WEEK_REF
=
sh
returnStdout:
true
,
script:
'date +"%Y.w%V"'
WEEK_REF
=
WEEK_REF
.
trim
()
WEEK_TAG
=
sh
returnStdout:
true
,
script:
'python3 ./ci-scripts/provideUniqueImageTag.py --start_tag '
+
WEEK_REF
WEEK_TAG
=
WEEK_TAG
.
trim
()
WEEK_TAG
=
WEEK_TAG
.
trim
()
withCredentials
([
withCredentials
([
...
...
ci-scripts/cls_containerize.py
View file @
3fd8b17e
...
@@ -606,6 +606,8 @@ class Containerize():
...
@@ -606,6 +606,8 @@ class Containerize():
if
containerToKill
:
if
containerToKill
:
mySSH
.
command
(
'docker kill --signal INT '
+
containerName
,
'\$'
,
30
)
mySSH
.
command
(
'docker kill --signal INT '
+
containerName
,
'\$'
,
30
)
time
.
sleep
(
5
)
time
.
sleep
(
5
)
mySSH
.
command
(
'docker kill --signal KILL '
+
containerName
,
'\$'
,
30
)
time
.
sleep
(
5
)
mySSH
.
command
(
'docker logs '
+
containerName
+
' > '
+
lSourcePath
+
'/cmake_targets/'
+
self
.
eNB_logFile
[
self
.
eNB_instance
],
'\$'
,
30
)
mySSH
.
command
(
'docker logs '
+
containerName
+
' > '
+
lSourcePath
+
'/cmake_targets/'
+
self
.
eNB_logFile
[
self
.
eNB_instance
],
'\$'
,
30
)
mySSH
.
command
(
'docker rm -f '
+
containerName
,
'\$'
,
30
)
mySSH
.
command
(
'docker rm -f '
+
containerName
,
'\$'
,
30
)
# Forcing the down now to remove the networks and any artifacts
# Forcing the down now to remove the networks and any artifacts
...
...
ci-scripts/cls_module_ue.py
View file @
3fd8b17e
...
@@ -76,7 +76,8 @@ class Module_UE:
...
@@ -76,7 +76,8 @@ class Module_UE:
logging
.
debug
(
'Starting '
+
self
.
Process
[
'Name'
])
logging
.
debug
(
'Starting '
+
self
.
Process
[
'Name'
])
mySSH
=
sshconnection
.
SSHConnection
()
mySSH
=
sshconnection
.
SSHConnection
()
mySSH
.
open
(
self
.
HostIPAddress
,
self
.
HostUsername
,
self
.
HostPassword
)
mySSH
.
open
(
self
.
HostIPAddress
,
self
.
HostUsername
,
self
.
HostPassword
)
mySSH
.
command
(
'echo $USER; echo '
+
self
.
HostPassword
+
' | nohup sudo -S '
+
self
.
Process
[
'Cmd'
]
+
' '
+
self
.
Process
[
'Apn'
][
CNType
]
+
' > /dev/null 2>&1 &'
,
'\$'
,
5
)
mySSH
.
command
(
'sudo rm -f /tmp/quectel-cm.log'
,
'\$'
,
5
)
mySSH
.
command
(
'echo $USER; echo '
+
self
.
HostPassword
+
' | nohup sudo -S stdbuf -o0 '
+
self
.
Process
[
'Cmd'
]
+
' '
+
self
.
Process
[
'Apn'
][
CNType
]
+
' > /tmp/quectel-cm.log 2>&1 &'
,
'\$'
,
5
)
mySSH
.
close
()
mySSH
.
close
()
#checking the process
#checking the process
time
.
sleep
(
5
)
time
.
sleep
(
5
)
...
...
ci-scripts/cls_oaicitest.py
View file @
3fd8b17e
...
@@ -122,6 +122,7 @@ def GetPingTimeAnalysis(RAN,ping_log_file,ping_rttavg_threshold):
...
@@ -122,6 +122,7 @@ def GetPingTimeAnalysis(RAN,ping_log_file,ping_rttavg_threshold):
try
:
try
:
mySSH
=
sshconnection
.
SSHConnection
()
mySSH
=
sshconnection
.
SSHConnection
()
mySSH
.
copyout
(
RAN
.
eNBIPAddress
,
RAN
.
eNBUserName
,
RAN
.
eNBPassword
,
ping_log_file
+
'.png'
,
RAN
.
eNBSourceCodePath
+
'/cmake_targets/'
)
mySSH
.
copyout
(
RAN
.
eNBIPAddress
,
RAN
.
eNBUserName
,
RAN
.
eNBPassword
,
ping_log_file
+
'.png'
,
RAN
.
eNBSourceCodePath
+
'/cmake_targets/'
)
mySSH
.
copyout
(
RAN
.
eNBIPAddress
,
RAN
.
eNBUserName
,
RAN
.
eNBPassword
,
ping_log_file
,
RAN
.
eNBSourceCodePath
+
'/cmake_targets/'
)
except
:
except
:
logging
.
debug
(
'
\u001B
[1;37;41m Ping PNG SCP to eNB FAILED
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Ping PNG SCP to eNB FAILED
\u001B
[0m'
)
...
@@ -1598,7 +1599,7 @@ class OaiCiTest():
...
@@ -1598,7 +1599,7 @@ class OaiCiTest():
else
:
else
:
if
launchfromModule
==
False
:
if
launchfromModule
==
False
:
#ping log file is on the python executor
#ping log file is on the python executor
cmd
=
'ping '
+
self
.
ping_args
+
' '
+
UE_IPAddress
+
'
2>&1 > ping_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
cmd
=
'ping '
+
self
.
ping_args
+
' '
+
UE_IPAddress
+
'
> ping_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log 2>&1'
message
=
cmd
+
'
\n
'
message
=
cmd
+
'
\n
'
logging
.
debug
(
cmd
)
logging
.
debug
(
cmd
)
ret
=
subprocess
.
run
(
cmd
,
shell
=
True
)
ret
=
subprocess
.
run
(
cmd
,
shell
=
True
)
...
@@ -1623,7 +1624,7 @@ class OaiCiTest():
...
@@ -1623,7 +1624,7 @@ class OaiCiTest():
else
:
else
:
Target
=
EPC
.
IPAddress
Target
=
EPC
.
IPAddress
#ping from module NIC rather than IP address to make sure round trip is over the air
#ping from module NIC rather than IP address to make sure round trip is over the air
cmd
=
'ping -I '
+
Module_UE
.
UENetwork
+
' '
+
self
.
ping_args
+
' '
+
Target
+
'
2>&1 > ping_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'ping -I '
+
Module_UE
.
UENetwork
+
' '
+
self
.
ping_args
+
' '
+
Target
+
'
> ping_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log 2>&1'
SSH
.
command
(
cmd
,
'\$'
,
int
(
ping_time
[
0
])
*
1.5
)
SSH
.
command
(
cmd
,
'\$'
,
int
(
ping_time
[
0
])
*
1.5
)
#copy the ping log file to have it locally for analysis (ping stats)
#copy the ping log file to have it locally for analysis (ping stats)
SSH
.
copyin
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
,
'ping_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
,
'.'
)
SSH
.
copyin
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
,
'ping_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
,
'.'
)
...
@@ -2084,7 +2085,8 @@ class OaiCiTest():
...
@@ -2084,7 +2085,8 @@ class OaiCiTest():
statusQueue
.
put
(
UE_IPAddress
)
statusQueue
.
put
(
UE_IPAddress
)
statusQueue
.
put
(
report_msg
)
statusQueue
.
put
(
report_msg
)
logging
.
debug
(
'
\u001B
[1;37;45m TCP Bidir Iperf Result ('
+
UE_IPAddress
+
')
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;45m TCP Bidir Iperf Result ('
+
UE_IPAddress
+
')
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;35m '
+
report_msg
+
'
\u001B
[0m'
)
for
rLine
in
report_msg
.
split
(
'
\n
'
):
logging
.
debug
(
'
\u001B
[1;35m '
+
rLine
+
'
\u001B
[0m'
)
lock
.
release
()
lock
.
release
()
else
:
else
:
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
'Bidir TCP : Could not analyze from Log file'
)
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
'Bidir TCP : Could not analyze from Log file'
)
...
@@ -2379,10 +2381,12 @@ class OaiCiTest():
...
@@ -2379,10 +2381,12 @@ class OaiCiTest():
SSH
.
copyout
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
,
'iperf_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
EPC
.
SourceCodePath
+
'/scripts'
)
SSH
.
copyout
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
,
'iperf_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
EPC
.
SourceCodePath
+
'/scripts'
)
def
Iperf_Module
(
self
,
lock
,
UE_IPAddress
,
device_id
,
idx
,
ue_num
,
statusQueue
,
EPC
,
Module_UE
):
def
Iperf_Module
(
self
,
lock
,
UE_IPAddress
,
device_id
,
idx
,
ue_num
,
statusQueue
,
EPC
,
Module_UE
,
RAN
):
SSH
=
sshconnection
.
SSHConnection
()
server_filename
=
'iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
client_filename
=
'iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
if
(
re
.
match
(
'OAI-Rel14-Docker'
,
EPC
.
Type
,
re
.
IGNORECASE
))
or
(
re
.
match
(
'OAICN5G'
,
EPC
.
Type
,
re
.
IGNORECASE
)):
if
(
re
.
match
(
'OAI-Rel14-Docker'
,
EPC
.
Type
,
re
.
IGNORECASE
))
or
(
re
.
match
(
'OAICN5G'
,
EPC
.
Type
,
re
.
IGNORECASE
)):
#retrieve trf-gen container IP address
#retrieve trf-gen container IP address
SSH
=
sshconnection
.
SSHConnection
()
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
command
(
'docker inspect --format="TRF_IP_ADDR = {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}" prod-trf-gen'
,
'\$'
,
5
)
SSH
.
command
(
'docker inspect --format="TRF_IP_ADDR = {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}" prod-trf-gen'
,
'\$'
,
5
)
result
=
re
.
search
(
'TRF_IP_ADDR = (?P<trf_ip_addr>[0-9\.]+)'
,
SSH
.
getBefore
())
result
=
re
.
search
(
'TRF_IP_ADDR = (?P<trf_ip_addr>[0-9\.]+)'
,
SSH
.
getBefore
())
...
@@ -2404,20 +2408,18 @@ class OaiCiTest():
...
@@ -2404,20 +2408,18 @@ class OaiCiTest():
if
self
.
iperf_direction
==
"DL"
:
if
self
.
iperf_direction
==
"DL"
:
logging
.
debug
(
"Iperf for Module in DL mode detected"
)
logging
.
debug
(
"Iperf for Module in DL mode detected"
)
##server side UE
##server side UE
server_filename
=
'iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'rm '
+
server_filename
cmd
=
'rm '
+
server_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
cmd
=
'echo $USER; nohup iperf -s -B '
+
UE_IPAddress
+
' -u
2>&1 > '
+
server_filename
+
'
&'
cmd
=
'echo $USER; nohup iperf -s -B '
+
UE_IPAddress
+
' -u
-i 1 > '
+
server_filename
+
' 2>&1
&'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
##client side EPC
##client side EPC
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
client_filename
=
'iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
#remove old client file in EPC.SourceCodePath
#remove old client file in EPC.SourceCodePath
cmd
=
'rm '
+
EPC
.
SourceCodePath
+
'/'
+
client_filename
cmd
=
'rm '
+
EPC
.
SourceCodePath
+
'/'
+
client_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
iperf_cmd
=
'bin/iperf -c '
+
UE_IPAddress
+
' '
+
self
.
iperf_args
+
'
2>&1 > '
+
client_filename
iperf_cmd
=
'bin/iperf -c '
+
UE_IPAddress
+
' '
+
self
.
iperf_args
+
'
> '
+
client_filename
+
' 2>&1'
cmd
=
'docker exec -w /iperf-2.0.13 -it prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
cmd
=
'docker exec -w /iperf-2.0.13 -it prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
SSH
.
command
(
cmd
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
cmd
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
'docker cp prod-trf-gen:/iperf-2.0.13/'
+
client_filename
+
' '
+
EPC
.
SourceCodePath
,
'\$'
,
5
)
SSH
.
command
(
'docker cp prod-trf-gen:/iperf-2.0.13/'
+
client_filename
+
' '
+
EPC
.
SourceCodePath
,
'\$'
,
5
)
...
@@ -2433,19 +2435,17 @@ class OaiCiTest():
...
@@ -2433,19 +2435,17 @@ class OaiCiTest():
logging
.
debug
(
"Iperf for Module in UL mode detected"
)
logging
.
debug
(
"Iperf for Module in UL mode detected"
)
#server side EPC
#server side EPC
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
server_filename
=
'iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
iperf_cmd
=
'echo $USER; nohup bin/iperf -s -u
2>&1 > '
+
server_filename
iperf_cmd
=
'echo $USER; nohup bin/iperf -s -u
-i 1 > '
+
server_filename
+
' 2>&1'
cmd
=
'docker exec -d -w /iperf-2.0.13 prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
cmd
=
'docker exec -d -w /iperf-2.0.13 prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
#client side UE
#client side UE
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
client_filename
=
'iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'rm '
+
client_filename
cmd
=
'rm '
+
client_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
'iperf -B '
+
UE_IPAddress
+
' -c '
+
trf_gen_IP
+
' '
+
self
.
iperf_args
+
'
2>&1 > '
+
client_filename
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
'iperf -B '
+
UE_IPAddress
+
' -c '
+
trf_gen_IP
+
' '
+
self
.
iperf_args
+
'
> '
+
client_filename
+
' 2>&1'
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
close
()
SSH
.
close
()
#once client is done, retrieve the server file from container to EPC Host
#once client is done, retrieve the server file from container to EPC Host
...
@@ -2461,12 +2461,10 @@ class OaiCiTest():
...
@@ -2461,12 +2461,10 @@ class OaiCiTest():
elif
self
.
iperf_direction
==
"BIDIR"
:
elif
self
.
iperf_direction
==
"BIDIR"
:
logging
.
debug
(
"Iperf for Module in BIDIR mode detected"
)
logging
.
debug
(
"Iperf for Module in BIDIR mode detected"
)
server_filename
=
'iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
client_filename
=
'iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
#server side EPC
#server side EPC
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
iperf_cmd
=
'echo $USER; nohup /usr/local/bin/iperf3 -s
2>&1 > '
+
server_filename
iperf_cmd
=
'echo $USER; nohup /usr/local/bin/iperf3 -s
-i 1 > '
+
server_filename
+
' 2>&1'
cmd
=
'docker exec -d -w /iperf-2.0.13 prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
cmd
=
'docker exec -d -w /iperf-2.0.13 prod-trf-gen /bin/bash -c
\"
'
+
iperf_cmd
+
'
\"
'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
...
@@ -2475,7 +2473,7 @@ class OaiCiTest():
...
@@ -2475,7 +2473,7 @@ class OaiCiTest():
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'rm '
+
client_filename
cmd
=
'rm '
+
client_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
'iperf3 -B '
+
UE_IPAddress
+
' -c '
+
trf_gen_IP
+
' '
+
self
.
iperf_args
+
'
2>&1 > '
+
client_filename
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
'iperf3 -B '
+
UE_IPAddress
+
' -c '
+
trf_gen_IP
+
' '
+
self
.
iperf_args
+
'
> '
+
client_filename
+
' 2>&1'
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
close
()
SSH
.
close
()
#once client is done, retrieve the server file from container to EPC Host
#once client is done, retrieve the server file from container to EPC Host
...
@@ -2499,8 +2497,6 @@ class OaiCiTest():
...
@@ -2499,8 +2497,6 @@ class OaiCiTest():
else
:
#default is ltebox
else
:
#default is ltebox
SSH
=
sshconnection
.
SSHConnection
()
#kill iperf processes before (in case there are still some remaining)
#kill iperf processes before (in case there are still some remaining)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'killall --signal=SIGKILL iperf'
cmd
=
'killall --signal=SIGKILL iperf'
...
@@ -2524,14 +2520,14 @@ class OaiCiTest():
...
@@ -2524,14 +2520,14 @@ class OaiCiTest():
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'rm iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'rm iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
cmd
=
'echo $USER; nohup /opt/iperf-2.0.10/iperf -s -B '
+
UE_IPAddress
+
' -u
2>&1 > iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log
&'
cmd
=
'echo $USER; nohup /opt/iperf-2.0.10/iperf -s -B '
+
UE_IPAddress
+
' -u
-i 1 > iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log 2>&1
&'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
#client side EPC
#client side EPC
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
cmd
=
'rm iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'rm iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
cmd
=
'iperf -c '
+
UE_IPAddress
+
' '
+
self
.
iperf_args
+
'
2>&1 > iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log
'
cmd
=
'iperf -c '
+
UE_IPAddress
+
' '
+
self
.
iperf_args
+
'
> iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log 2>&1
'
SSH
.
command
(
cmd
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
cmd
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
close
()
SSH
.
close
()
#copy the 2 resulting files locally
#copy the 2 resulting files locally
...
@@ -2547,7 +2543,7 @@ class OaiCiTest():
...
@@ -2547,7 +2543,7 @@ class OaiCiTest():
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
cmd
=
'rm iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'rm iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
cmd
=
'echo $USER; nohup iperf -s -u
2>&1 > iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log
&'
cmd
=
'echo $USER; nohup iperf -s -u
-i 1 > iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log 2>&1
&'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
...
@@ -2555,7 +2551,7 @@ class OaiCiTest():
...
@@ -2555,7 +2551,7 @@ class OaiCiTest():
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'rm iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
cmd
=
'rm iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
'/opt/iperf-2.0.10/iperf -c 192.172.0.1 '
+
self
.
iperf_args
+
'
2>&1 > iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log
'
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
'/opt/iperf-2.0.10/iperf -c 192.172.0.1 '
+
self
.
iperf_args
+
'
> iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log 2>&1
'
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
close
()
SSH
.
close
()
#copy the 2 resulting files locally
#copy the 2 resulting files locally
...
@@ -2566,15 +2562,13 @@ class OaiCiTest():
...
@@ -2566,15 +2562,13 @@ class OaiCiTest():
self
.
Iperf_analyzeV2Server
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
self
.
iperf_args
,
filename
,
1
)
self
.
Iperf_analyzeV2Server
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
self
.
iperf_args
,
filename
,
1
)
elif
self
.
iperf_direction
==
"BIDIR"
:
elif
self
.
iperf_direction
==
"BIDIR"
:
logging
.
debug
(
"Iperf for Module in BIDIR mode detected"
)
logging
.
debug
(
"Iperf for Module in BIDIR mode detected"
)
server_filename
=
'iperf_server_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
client_filename
=
'iperf_client_'
+
self
.
testCase_id
+
'_'
+
self
.
ue_id
+
'.log'
#server side EPC
#server side EPC
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
SSH
.
open
(
EPC
.
IPAddress
,
EPC
.
UserName
,
EPC
.
Password
)
cmd
=
'rm '
+
server_filename
cmd
=
'rm '
+
server_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
cmd
=
'echo $USER; nohup iperf3 -s
2>&1 > '
+
server_filename
+
'
&'
cmd
=
'echo $USER; nohup iperf3 -s
-i 1 > '
+
server_filename
+
' 2>&1
&'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
...
@@ -2582,7 +2576,7 @@ class OaiCiTest():
...
@@ -2582,7 +2576,7 @@ class OaiCiTest():
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'rm '
+
client_filename
cmd
=
'rm '
+
client_filename
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
'iperf3 -c 192.172.0.1 '
+
self
.
iperf_args
+
'
2>&1 > '
+
client_filename
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
command
(
'iperf3 -c 192.172.0.1 '
+
self
.
iperf_args
+
'
> '
+
client_filename
+
' 2>&1'
,
'\$'
,
int
(
iperf_time
)
*
5.0
)
SSH
.
close
()
SSH
.
close
()
#copy the 2 resulting files locally
#copy the 2 resulting files locally
...
@@ -2593,6 +2587,7 @@ class OaiCiTest():
...
@@ -2593,6 +2587,7 @@ class OaiCiTest():
else
:
else
:
logging
.
debug
(
"Incorrect or missing IPERF direction in XML"
)
logging
.
debug
(
"Incorrect or missing IPERF direction in XML"
)
#kill iperf processes after to be clean
#kill iperf processes after to be clean
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
SSH
.
open
(
Module_UE
.
HostIPAddress
,
Module_UE
.
HostUsername
,
Module_UE
.
HostPassword
)
cmd
=
'killall --signal=SIGKILL iperf'
cmd
=
'killall --signal=SIGKILL iperf'
...
@@ -2606,7 +2601,12 @@ class OaiCiTest():
...
@@ -2606,7 +2601,12 @@ class OaiCiTest():
cmd
=
'killall --signal=SIGKILL iperf3'
cmd
=
'killall --signal=SIGKILL iperf3'
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
command
(
cmd
,
'\$'
,
5
)
SSH
.
close
()
SSH
.
close
()
return
# Copying to xNB server for Jenkins artifacting
if
(
os
.
path
.
isfile
(
server_filename
)):
SSH
.
copyout
(
RAN
.
eNBIPAddress
,
RAN
.
eNBUserName
,
RAN
.
eNBPassword
,
server_filename
,
RAN
.
eNBSourceCodePath
+
'/cmake_targets/'
)
if
(
os
.
path
.
isfile
(
client_filename
)):
SSH
.
copyout
(
RAN
.
eNBIPAddress
,
RAN
.
eNBUserName
,
RAN
.
eNBPassword
,
client_filename
,
RAN
.
eNBSourceCodePath
+
'/cmake_targets/'
)
def
Iperf_common
(
self
,
lock
,
UE_IPAddress
,
device_id
,
idx
,
ue_num
,
statusQueue
,
EPC
):
def
Iperf_common
(
self
,
lock
,
UE_IPAddress
,
device_id
,
idx
,
ue_num
,
statusQueue
,
EPC
):
try
:
try
:
...
@@ -2804,12 +2804,12 @@ class OaiCiTest():
...
@@ -2804,12 +2804,12 @@ class OaiCiTest():
else
:
else
:
SSH
.
copyin
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
,
EPC
.
SourceCodePath
+
'/scripts/iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
'.'
)
SSH
.
copyin
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
,
EPC
.
SourceCodePath
+
'/scripts/iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
'.'
)
# fromdos has to be called on the python executor not on ADB server
# fromdos has to be called on the python executor not on ADB server
cmd
=
'fromdos -o iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log
2>&1 > /dev/null
'
cmd
=
'fromdos -o iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log
> /dev/null 2>&1
'
try
:
try
:
subprocess
.
run
(
cmd
,
shell
=
True
)
subprocess
.
run
(
cmd
,
shell
=
True
)
except
:
except
:
pass
pass
cmd
=
'dos2unix -o iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log
2>&1 > /dev/null
'
cmd
=
'dos2unix -o iperf_server_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log
> /dev/null 2>&1
'
try
:
try
:
subprocess
.
run
(
cmd
,
shell
=
True
)
subprocess
.
run
(
cmd
,
shell
=
True
)
except
:
except
:
...
@@ -2995,7 +2995,7 @@ class OaiCiTest():
...
@@ -2995,7 +2995,7 @@ class OaiCiTest():
#special quick and dirty treatment for modules, iperf to be restructured
#special quick and dirty treatment for modules, iperf to be restructured
if
self
.
ue_id
!=
""
:
#is module
if
self
.
ue_id
!=
""
:
#is module
device_id
=
Module_UE
.
ID
+
"-"
+
Module_UE
.
Kind
device_id
=
Module_UE
.
ID
+
"-"
+
Module_UE
.
Kind
p
=
Process
(
target
=
self
.
Iperf_Module
,
args
=
(
lock
,
UE_IPAddress
,
device_id
,
i
,
ue_num
,
status_queue
,
EPC
,
Module_UE
,))
p
=
Process
(
target
=
self
.
Iperf_Module
,
args
=
(
lock
,
UE_IPAddress
,
device_id
,
i
,
ue_num
,
status_queue
,
EPC
,
Module_UE
,
RAN
,
))
else
:
#legacy code
else
:
#legacy code
p
=
Process
(
target
=
self
.
Iperf_common
,
args
=
(
lock
,
UE_IPAddress
,
device_id
,
i
,
ue_num
,
status_queue
,
EPC
,
))
p
=
Process
(
target
=
self
.
Iperf_common
,
args
=
(
lock
,
UE_IPAddress
,
device_id
,
i
,
ue_num
,
status_queue
,
EPC
,
))
p
.
daemon
=
True
p
.
daemon
=
True
...
...
ci-scripts/cls_static_code_analysis.py
View file @
3fd8b17e
...
@@ -35,6 +35,7 @@ import sys # arg
...
@@ -35,6 +35,7 @@ import sys # arg
import
re
# reg
import
re
# reg
import
logging
import
logging
import
os
import
os
from
pathlib
import
Path
import
time
import
time
#-----------------------------------------------------------
#-----------------------------------------------------------
...
@@ -51,7 +52,7 @@ class CppCheckResults():
...
@@ -51,7 +52,7 @@ class CppCheckResults():
def
__init__
(
self
):
def
__init__
(
self
):
self
.
variants
=
[
'
xenial'
,
'bionic
'
]
self
.
variants
=
[
'
bionic'
,
'focal
'
]
self
.
versions
=
[
''
,
''
]
self
.
versions
=
[
''
,
''
]
self
.
nbErrors
=
[
0
,
0
]
self
.
nbErrors
=
[
0
,
0
]
self
.
nbWarnings
=
[
0
,
0
]
self
.
nbWarnings
=
[
0
,
0
]
...
@@ -116,12 +117,22 @@ class StaticCodeAnalysis():
...
@@ -116,12 +117,22 @@ class StaticCodeAnalysis():
# if the commit ID is provided use it to point to it
# if the commit ID is provided use it to point to it
if
self
.
ranCommitID
!=
''
:
if
self
.
ranCommitID
!=
''
:
mySSH
.
command
(
'git checkout -f '
+
self
.
ranCommitID
,
'\$'
,
30
)
mySSH
.
command
(
'git checkout -f '
+
self
.
ranCommitID
,
'\$'
,
30
)
# if the branch is not develop, then it is a merge request and we need to do
# the potential merge. Note that merge conflicts should already been checked earlier
if
(
self
.
ranAllowMerge
):
if
self
.
ranTargetBranch
==
''
:
if
(
self
.
ranBranch
!=
'develop'
)
and
(
self
.
ranBranch
!=
'origin/develop'
):
mySSH
.
command
(
'git merge --ff origin/develop -m "Temporary merge for CI"'
,
'\$'
,
5
)
else
:
logging
.
debug
(
'Merging with the target branch: '
+
self
.
ranTargetBranch
)
mySSH
.
command
(
'git merge --ff origin/'
+
self
.
ranTargetBranch
+
' -m "Temporary merge for CI"'
,
'\$'
,
5
)
mySSH
.
command
(
'docker image rm oai-cppcheck:bionic oai-cppcheck:xenial || true'
,
'\$'
,
60
)
mySSH
.
command
(
'docker image rm oai-cppcheck:bionic oai-cppcheck:focal || true'
,
'\$'
,
60
)
mySSH
.
command
(
'docker build --tag oai-cppcheck:xenial --file ci-scripts/docker/Dockerfile.cppcheck.xenial . > cmake_targets/log/cppcheck-xenial.txt 2>&1'
,
'\$'
,
600
)
mySSH
.
command
(
'sed -e "s@xenial@bionic@" ci-scripts/docker/Dockerfile.cppcheck.xenial > ci-scripts/docker/Dockerfile.cppcheck.bionic'
,
'\$'
,
6
)
mySSH
.
command
(
'sed -e "s@xenial@bionic@" ci-scripts/docker/Dockerfile.cppcheck.xenial > ci-scripts/docker/Dockerfile.cppcheck.bionic'
,
'\$'
,
6
)
mySSH
.
command
(
'docker build --tag oai-cppcheck:bionic --file ci-scripts/docker/Dockerfile.cppcheck.bionic . > cmake_targets/log/cppcheck-bionic.txt 2>&1'
,
'\$'
,
600
)
mySSH
.
command
(
'docker build --tag oai-cppcheck:bionic --file ci-scripts/docker/Dockerfile.cppcheck.bionic . > cmake_targets/log/cppcheck-bionic.txt 2>&1'
,
'\$'
,
600
)
mySSH
.
command
(
'docker image rm oai-cppcheck:bionic oai-cppcheck:xenial || true'
,
'\$'
,
30
)
mySSH
.
command
(
'sed -e "s@xenial@focal@" ci-scripts/docker/Dockerfile.cppcheck.xenial > ci-scripts/docker/Dockerfile.cppcheck.focal'
,
'\$'
,
6
)
mySSH
.
command
(
'docker build --tag oai-cppcheck:focal --file ci-scripts/docker/Dockerfile.cppcheck.focal . > cmake_targets/log/cppcheck-focal.txt 2>&1'
,
'\$'
,
600
)
mySSH
.
command
(
'docker image rm oai-cppcheck:bionic oai-cppcheck:focal || true'
,
'\$'
,
30
)
# Analyzing the logs
# Analyzing the logs
mySSH
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
5
)
mySSH
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
5
)
...
@@ -131,8 +142,22 @@ class StaticCodeAnalysis():
...
@@ -131,8 +142,22 @@ class StaticCodeAnalysis():
mySSH
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
+
'/cmake_targets/build_log_'
+
self
.
testCase_id
+
'/*'
,
'.'
)
mySSH
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
+
'/cmake_targets/build_log_'
+
self
.
testCase_id
+
'/*'
,
'.'
)
CCR
=
CppCheckResults
()
CCR
=
CppCheckResults
()
CCR_ref
=
CppCheckResults
()
vId
=
0
vId
=
0
for
variant
in
CCR
.
variants
:
for
variant
in
CCR
.
variants
:
refAvailable
=
False
if
self
.
ranAllowMerge
:
refFolder
=
str
(
Path
.
home
())
+
'/cppcheck-references'
if
(
os
.
path
.
isfile
(
refFolder
+
'/cppcheck-'
+
variant
+
'.txt'
)):
refAvailable
=
True
with
open
(
refFolder
+
'/cppcheck-'
+
variant
+
'.txt'
,
'r'
)
as
refFile
:
for
line
in
refFile
:
ret
=
re
.
search
(
' (?P<nb_errors>[0-9\.]+) errors'
,
str
(
line
))
if
ret
is
not
None
:
CCR_ref
.
nbErrors
[
vId
]
=
int
(
ret
.
group
(
'nb_errors'
))
ret
=
re
.
search
(
' (?P<nb_warnings>[0-9\.]+) warnings'
,
str
(
line
))
if
ret
is
not
None
:
CCR_ref
.
nbWarnings
[
vId
]
=
int
(
ret
.
group
(
'nb_warnings'
))
if
(
os
.
path
.
isfile
(
'./cppcheck-'
+
variant
+
'.txt'
)):
if
(
os
.
path
.
isfile
(
'./cppcheck-'
+
variant
+
'.txt'
)):
xmlStart
=
False
xmlStart
=
False
with
open
(
'./cppcheck-'
+
variant
+
'.txt'
,
'r'
)
as
logfile
:
with
open
(
'./cppcheck-'
+
variant
+
'.txt'
,
'r'
)
as
logfile
:
...
@@ -167,21 +192,43 @@ class StaticCodeAnalysis():
...
@@ -167,21 +192,43 @@ class StaticCodeAnalysis():
CCR
.
nbPtrAddNotNull
[
vId
]
+=
1
CCR
.
nbPtrAddNotNull
[
vId
]
+=
1
if
re
.
search
(
'id="oppositeInnerCondition"'
,
str
(
line
))
is
not
None
:
if
re
.
search
(
'id="oppositeInnerCondition"'
,
str
(
line
))
is
not
None
:
CCR
.
nbOppoInnerCondition
[
vId
]
+=
1
CCR
.
nbOppoInnerCondition
[
vId
]
+=
1
logging
.
debug
(
'======== Variant '
+
variant
+
' - '
+
CCR
.
versions
[
vId
]
+
' ========'
)
vMsg
=
''
logging
.
debug
(
' '
+
str
(
CCR
.
nbErrors
[
vId
])
+
' errors'
)
vMsg
+=
'======== Variant '
+
variant
+
' - '
+
CCR
.
versions
[
vId
]
+
' ========
\n
'
logging
.
debug
(
' '
+
str
(
CCR
.
nbWarnings
[
vId
])
+
' warnings'
)
vMsg
+=
' '
+
str
(
CCR
.
nbErrors
[
vId
])
+
' errors
\n
'
logging
.
debug
(
' -- Details --'
)
vMsg
+=
' '
+
str
(
CCR
.
nbWarnings
[
vId
])
+
' warnings
\n
'
logging
.
debug
(
' Memory leak: '
+
str
(
CCR
.
nbMemLeaks
[
vId
]))
vMsg
+=
' -- Details --
\n
'
logging
.
debug
(
' Possible null pointer deference: '
+
str
(
CCR
.
nbNullPtrs
[
vId
]))
vMsg
+=
' Memory leak: '
+
str
(
CCR
.
nbMemLeaks
[
vId
])
+
'
\n
'
logging
.
debug
(
' Uninitialized variable: '
+
str
(
CCR
.
nbUninitVars
[
vId
]))
vMsg
+=
' Possible null pointer deference: '
+
str
(
CCR
.
nbNullPtrs
[
vId
])
+
'
\n
'
logging
.
debug
(
' Undefined behaviour shifting: '
+
str
(
CCR
.
nbTooManyBitsShift
[
vId
]))
vMsg
+=
' Uninitialized variable: '
+
str
(
CCR
.
nbUninitVars
[
vId
])
+
'
\n
'
logging
.
debug
(
' Signed integer overflow: '
+
str
(
CCR
.
nbIntegerOverflow
[
vId
]))
vMsg
+=
' Undefined behaviour shifting: '
+
str
(
CCR
.
nbTooManyBitsShift
[
vId
])
+
'
\n
'
logging
.
debug
(
''
)
vMsg
+=
' Signed integer overflow: '
+
str
(
CCR
.
nbIntegerOverflow
[
vId
])
+
'
\n
'
logging
.
debug
(
' Printf formatting issue: '
+
str
(
CCR
.
nbInvalidPrintf
[
vId
]))
vMsg
+=
'
\n
'
logging
.
debug
(
' Modulo result is predetermined: '
+
str
(
CCR
.
nbModuloAlways
[
vId
]))
vMsg
+=
' Printf formatting issue: '
+
str
(
CCR
.
nbInvalidPrintf
[
vId
])
+
'
\n
'
logging
.
debug
(
' Opposite Condition -> dead code: '
+
str
(
CCR
.
nbOppoInnerCondition
[
vId
]))
vMsg
+=
' Modulo result is predetermined: '
+
str
(
CCR
.
nbModuloAlways
[
vId
])
+
'
\n
'
logging
.
debug
(
' Wrong Scanf Nb Args: '
+
str
(
CCR
.
nbWrongScanfArg
[
vId
]))
vMsg
+=
' Opposite Condition -> dead code: '
+
str
(
CCR
.
nbOppoInnerCondition
[
vId
])
+
'
\n
'
logging
.
debug
(
''
)
vMsg
+=
' Wrong Scanf Nb Args: '
+
str
(
CCR
.
nbWrongScanfArg
[
vId
])
+
'
\n
'
for
vLine
in
vMsg
.
split
(
'
\n
'
):
logging
.
debug
(
vLine
)
if
self
.
ranAllowMerge
and
refAvailable
:
if
CCR_ref
.
nbErrors
[
vId
]
==
CCR
.
nbErrors
[
vId
]:
logging
.
debug
(
' No change in number of errors'
)
elif
CCR_ref
.
nbErrors
[
vId
]
>
CCR
.
nbErrors
[
vId
]:
logging
.
debug
(
' Good! Decrease in number of errors'
)
else
:
logging
.
debug
(
' Bad! increase in number of errors'
)
if
CCR_ref
.
nbWarnings
[
vId
]
==
CCR
.
nbWarnings
[
vId
]:
logging
.
debug
(
' No change in number of warnings'
)
elif
CCR_ref
.
nbWarnings
[
vId
]
>
CCR
.
nbWarnings
[
vId
]:
logging
.
debug
(
' Good! Decrease in number of warnings'
)
else
:
logging
.
debug
(
' Bad! increase in number of warnings'
)
# Create new reference file
if
not
self
.
ranAllowMerge
:
refFolder
=
str
(
Path
.
home
())
+
'/cppcheck-references'
if
not
os
.
path
.
isdir
(
refFolder
):
os
.
mkdir
(
refFolder
)
with
open
(
refFolder
+
'/cppcheck-'
+
variant
+
'.txt'
,
'w'
)
as
refFile
:
refFile
.
write
(
vMsg
)
vId
+=
1
vId
+=
1
HTML
.
CreateHtmlTestRow
(
'N/A'
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
HTML
.
CreateHtmlTestRow
(
'N/A'
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
...
...
ci-scripts/provideUniqueImageTag.py
0 → 100644
View file @
3fd8b17e
import
argparse
import
os
import
re
import
subprocess
import
sys
AUTH_SERVICE
=
'registry.docker.io'
AUTH_SCOPE
=
'repository:rdefosseoai/oai-enb:pull'
def
main
()
->
None
:
args
=
_parse_args
()
cmd
=
'curl -fsSL "https://auth.docker.io/token?service='
+
AUTH_SERVICE
+
'&scope='
+
AUTH_SCOPE
+
'" | jq --raw-output ".token"'
token
=
subprocess
.
check_output
(
cmd
,
shell
=
True
,
universal_newlines
=
True
)
token
=
str
(
token
).
strip
()
cmd
=
'curl -fsSL -H "Authorization: Bearer '
+
token
+
'" "https://index.docker.io/v2/rdefosseoai/oai-enb/tags/list" | jq .'
listOfTags
=
subprocess
.
check_output
(
cmd
,
shell
=
True
,
universal_newlines
=
True
)
foundTag
=
False
for
tag
in
listOfTags
.
split
(
'
\n
'
):
if
re
.
search
(
'"'
+
args
.
start_tag
+
'"'
,
tag
)
is
not
None
:
foundTag
=
True
if
not
foundTag
:
print
(
args
.
start_tag
)
sys
.
exit
(
0
)
proposedVariants
=
[
'a'
,
'b'
,
'c'
,
'd'
]
for
variant
in
proposedVariants
:
foundTag
=
False
currentVariant
=
variant
for
tag
in
listOfTags
.
split
(
'
\n
'
):
if
re
.
search
(
'"'
+
args
.
start_tag
+
variant
+
'"'
,
tag
)
is
not
None
:
foundTag
=
True
break
if
not
foundTag
:
break
if
not
foundTag
:
print
(
args
.
start_tag
+
currentVariant
)
def
_parse_args
()
->
argparse
.
Namespace
:
parser
=
argparse
.
ArgumentParser
(
description
=
'Provides an unique new image tag for DockerHub'
)
parser
.
add_argument
(
'--start_tag'
,
'-st'
,
action
=
'store'
,
required
=
True
,
help
=
'Proposed Starting Tag'
,
)
return
parser
.
parse_args
()
if
__name__
==
'__main__'
:
main
()
ci-scripts/ran.py
View file @
3fd8b17e
...
@@ -756,11 +756,11 @@ class RANManagement():
...
@@ -756,11 +756,11 @@ class RANManagement():
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S mv /tmp/enb_*.pcap .'
,
'\$'
,
20
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S mv /tmp/enb_*.pcap .'
,
'\$'
,
20
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S mv /tmp/gnb_*.pcap .'
,
'\$'
,
20
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S mv /tmp/gnb_*.pcap .'
,
'\$'
,
20
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm -f enb.log.zip'
,
'\$'
,
5
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm -f enb.log.zip'
,
'\$'
,
5
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S zip enb.log.zip enb*.log enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log
.pn
g log/*/*.log log/*/*.pcap'
,
'\$'
,
60
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S zip enb.log.zip enb*.log enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log
* iperf*.lo
g log/*/*.log log/*/*.pcap'
,
'\$'
,
60
)
result
=
re
.
search
(
'core.\d+'
,
mySSH
.
getBefore
())
result
=
re
.
search
(
'core.\d+'
,
mySSH
.
getBefore
())
if
result
is
not
None
:
if
result
is
not
None
:
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S zip enb.log.zip core* ran_build/build/{lte,nr}-softmodem'
,
'\$'
,
60
)
# add core and executable to zip
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S zip enb.log.zip core* ran_build/build/{lte,nr}-softmodem'
,
'\$'
,
60
)
# add core and executable to zip
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm enb*.log core* enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log
.pn
g log/*/*.log log/*/*.pcap'
,
'\$'
,
15
)
mySSH
.
command
(
'echo '
+
self
.
eNBPassword
+
' | sudo -S rm enb*.log core* enb_*record.raw enb_*.pcap gnb_*.pcap enb_*txt physim_*.log *stats.log *monitor.pickle *monitor*.png ping*.log
* iperf*.lo
g log/*/*.log log/*/*.pcap'
,
'\$'
,
15
)
mySSH
.
close
()
mySSH
.
close
()
def
AnalyzeLogFile_eNB
(
self
,
eNBlogFile
,
HTML
,
checkers
=
{}):
def
AnalyzeLogFile_eNB
(
self
,
eNBlogFile
,
HTML
,
checkers
=
{}):
...
...
ci-scripts/xml_files/container_nsa_b200_quectel.xml
View file @
3fd8b17e
...
@@ -39,8 +39,9 @@
...
@@ -39,8 +39,9 @@
050001
050001
070001
070001
070000
070000
050000
070002
050001
050002
050003
010002
010002
000001
000001
030202
030202
...
@@ -117,10 +118,28 @@
...
@@ -117,10 +118,28 @@
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
</testCase>
<testCase
id=
"050002"
>
<class>
Ping
</class>
<desc>
Ping: 20pings in 20sec
</desc>
<id>
idefix
</id>
<ping_args>
-c 20
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
<testCase
id=
"050003"
>
<class>
Ping
</class>
<desc>
Ping: 100pings in 20sec
</desc>
<id>
idefix
</id>
<ping_args>
-c 100 -i 0.2
</ping_args>
<ping_packetloss_threshold>
1
</ping_packetloss_threshold>
<ping_rttavg_threshold>
15
</ping_rttavg_threshold>
</testCase>
<testCase
id=
"070000"
>
<testCase
id=
"070000"
>
<class>
Iperf
</class>
<class>
Iperf
</class>
<desc>
iperf (DL/40Mbps/UDP)(60 sec)(single-ue profile)
</desc>
<desc>
iperf (DL/40Mbps/UDP)(60 sec)(single-ue profile)
</desc>
<iperf_args>
-u -b 40M -t 60
</iperf_args>
<iperf_args>
-u -b 40M -t 60
-i 1 -fm
</iperf_args>
<direction>
DL
</direction>
<direction>
DL
</direction>
<id>
idefix
</id>
<id>
idefix
</id>
<iperf_packetloss_threshold>
20
</iperf_packetloss_threshold>
<iperf_packetloss_threshold>
20
</iperf_packetloss_threshold>
...
@@ -131,7 +150,7 @@
...
@@ -131,7 +150,7 @@
<testCase
id=
"070001"
>
<testCase
id=
"070001"
>
<class>
Iperf
</class>
<class>
Iperf
</class>
<desc>
iperf (UL/3Mbps/UDP)(60 sec)(single-ue profile)
</desc>
<desc>
iperf (UL/3Mbps/UDP)(60 sec)(single-ue profile)
</desc>
<iperf_args>
-u -b 3M -t 60
</iperf_args>
<iperf_args>
-u -b 3M -t 60
-i 1 -fm
</iperf_args>
<direction>
UL
</direction>
<direction>
UL
</direction>
<id>
idefix
</id>
<id>
idefix
</id>
<iperf_packetloss_threshold>
1
</iperf_packetloss_threshold>
<iperf_packetloss_threshold>
1
</iperf_packetloss_threshold>
...
@@ -139,6 +158,15 @@
...
@@ -139,6 +158,15 @@
<iperf_profile>
single-ue
</iperf_profile>
<iperf_profile>
single-ue
</iperf_profile>
</testCase>
</testCase>
<testCase
id=
"070002"
>
<class>
Iperf
</class>
<desc>
iperf (BIDIR TCP)(10 sec)(single-ue profile)
</desc>
<iperf_args>
-t 10 --bidir
</iperf_args>
<direction>
BIDIR
</direction>
<id>
idefix
</id>
<iperf_profile>
single-ue
</iperf_profile>
</testCase>
<testCase
id=
"030201"
>
<testCase
id=
"030201"
>
<class>
Undeploy_Object
</class>
<class>
Undeploy_Object
</class>
<desc>
Undeploy eNB
</desc>
<desc>
Undeploy eNB
</desc>
...
...
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