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
Michael Black
OpenXG-RAN
Commits
ba9786df
Commit
ba9786df
authored
Jan 13, 2020
by
Gabriele Perrone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
review of modified main.py and sshconnection.py
parent
8f476a99
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
175 additions
and
100 deletions
+175
-100
ci-scripts/main.py
ci-scripts/main.py
+102
-100
ci-scripts/pMain.sh
ci-scripts/pMain.sh
+9
-0
ci-scripts/sshconnection.py
ci-scripts/sshconnection.py
+10
-0
ci-scripts/xml_files/enb_usrp210_band7_epc_start.xml
ci-scripts/xml_files/enb_usrp210_band7_epc_start.xml
+54
-0
No files found.
ci-scripts/main.py
View file @
ba9786df
...
@@ -87,7 +87,6 @@ logging.basicConfig(
...
@@ -87,7 +87,6 @@ logging.basicConfig(
level
=
logging
.
DEBUG
,
level
=
logging
.
DEBUG
,
format
=
"[%(asctime)s] %(name)s:%(levelname)s: %(message)s"
format
=
"[%(asctime)s] %(name)s:%(levelname)s: %(message)s"
)
)
import
sshconnection.py
#-----------------------------------------------------------
#-----------------------------------------------------------
# Class Declaration
# Class Declaration
...
@@ -214,7 +213,7 @@ class OaiCiTest():
...
@@ -214,7 +213,7 @@ class OaiCiTest():
elif
self
.
sshresponse
==
2
:
elif
self
.
sshresponse
==
2
:
# Checking if we are really on the remote client defined by its IP address
# Checking if we are really on the remote client defined by its IP address
SSH
.
command
(
'stdbuf -o0 ifconfig | egrep --color=never "inet addr:|inet "'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ifconfig | egrep --color=never "inet addr:|inet "'
,
'\$'
,
5
)
result
=
re
.
search
(
str
(
ipaddress
),
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
str
(
ipaddress
),
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
SSH
.
close
()
SSH
.
close
()
else
:
else
:
...
@@ -222,7 +221,7 @@ class OaiCiTest():
...
@@ -222,7 +221,7 @@ class OaiCiTest():
connect_status
=
True
connect_status
=
True
else
:
else
:
# debug output
# debug output
logging
.
debug
(
str
(
self
.
ssh
.
before
))
logging
.
debug
(
SSH
.
getBefore
(
))
logging
.
debug
(
'self.sshresponse = '
+
str
(
self
.
sshresponse
))
logging
.
debug
(
'self.sshresponse = '
+
str
(
self
.
sshresponse
))
# adding a tempo when failure
# adding a tempo when failure
if
not
connect_status
:
if
not
connect_status
:
...
@@ -249,7 +248,7 @@ class OaiCiTest():
...
@@ -249,7 +248,7 @@ class OaiCiTest():
logging
.
debug
(
'Expected Line : '
+
expectedline
)
logging
.
debug
(
'Expected Line : '
+
expectedline
)
result
=
re
.
search
(
'ping |iperf |picocom'
,
str
(
commandline
))
result
=
re
.
search
(
'ping |iperf |picocom'
,
str
(
commandline
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
str
(
self
.
ssh
.
before
))
logging
.
debug
(
SSH
.
getBefore
(
))
sys
.
exit
(
self
.
sshresponse
)
sys
.
exit
(
self
.
sshresponse
)
else
:
else
:
return
-
1
return
-
1
...
@@ -380,27 +379,27 @@ class OaiCiTest():
...
@@ -380,27 +379,27 @@ class OaiCiTest():
# Checking the BUILD INFO file
# Checking the BUILD INFO file
if
not
self
.
backgroundBuild
:
if
not
self
.
backgroundBuild
:
SSH
.
command
(
'ls *.txt'
,
'\$'
,
5
)
SSH
.
command
(
'ls *.txt'
,
'\$'
,
5
)
result
=
re
.
search
(
'LAST_BUILD_INFO'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'LAST_BUILD_INFO'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
mismatch
=
False
mismatch
=
False
SSH
.
command
(
'grep SRC_COMMIT LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep SRC_COMMIT LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
result
=
re
.
search
(
self
.
ranCommitID
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
self
.
ranCommitID
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
SSH
.
command
(
'grep MERGED_W_TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep MERGED_W_TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
if
(
self
.
ranAllowMerge
):
if
(
self
.
ranAllowMerge
):
result
=
re
.
search
(
'YES'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'YES'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
SSH
.
command
(
'grep TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
if
self
.
ranTargetBranch
==
''
:
if
self
.
ranTargetBranch
==
''
:
result
=
re
.
search
(
'develop'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'develop'
,
SSH
.
getBefore
(
))
else
:
else
:
result
=
re
.
search
(
self
.
ranTargetBranch
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
self
.
ranTargetBranch
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
else
:
else
:
result
=
re
.
search
(
'NO'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'NO'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
if
not
mismatch
:
if
not
mismatch
:
...
@@ -461,7 +460,7 @@ class OaiCiTest():
...
@@ -461,7 +460,7 @@ class OaiCiTest():
buildOAIprocess
=
True
buildOAIprocess
=
True
while
(
count
>
0
)
and
buildOAIprocess
:
while
(
count
>
0
)
and
buildOAIprocess
:
SSH
.
command
(
'ps aux | grep --color=never build_ | grep -v grep'
,
'\$'
,
3
)
SSH
.
command
(
'ps aux | grep --color=never build_ | grep -v grep'
,
'\$'
,
3
)
result
=
re
.
search
(
'build_oai'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'build_oai'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
buildOAIprocess
=
False
buildOAIprocess
=
False
else
:
else
:
...
@@ -474,7 +473,7 @@ class OaiCiTest():
...
@@ -474,7 +473,7 @@ class OaiCiTest():
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
buildStatus
=
True
buildStatus
=
True
result
=
re
.
search
(
'lte-softmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-softmodem'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
buildStatus
=
False
buildStatus
=
False
else
:
else
:
...
@@ -531,27 +530,27 @@ class OaiCiTest():
...
@@ -531,27 +530,27 @@ class OaiCiTest():
SSH
.
command
(
'git config user.email "jenkins@openairinterface.org"'
,
'\$'
,
5
)
SSH
.
command
(
'git config user.email "jenkins@openairinterface.org"'
,
'\$'
,
5
)
SSH
.
command
(
'git config user.name "OAI Jenkins"'
,
'\$'
,
5
)
SSH
.
command
(
'git config user.name "OAI Jenkins"'
,
'\$'
,
5
)
SSH
.
command
(
'ls *.txt'
,
'\$'
,
5
)
SSH
.
command
(
'ls *.txt'
,
'\$'
,
5
)
result
=
re
.
search
(
'LAST_BUILD_INFO'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'LAST_BUILD_INFO'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
mismatch
=
False
mismatch
=
False
SSH
.
command
(
'grep SRC_COMMIT LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep SRC_COMMIT LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
result
=
re
.
search
(
self
.
ranCommitID
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
self
.
ranCommitID
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
SSH
.
command
(
'grep MERGED_W_TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep MERGED_W_TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
if
(
self
.
ranAllowMerge
):
if
(
self
.
ranAllowMerge
):
result
=
re
.
search
(
'YES'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'YES'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
SSH
.
command
(
'grep TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
SSH
.
command
(
'grep TGT_BRANCH LAST_BUILD_INFO.txt'
,
'\$'
,
2
)
if
self
.
ranTargetBranch
==
''
:
if
self
.
ranTargetBranch
==
''
:
result
=
re
.
search
(
'develop'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'develop'
,
SSH
.
getBefore
(
))
else
:
else
:
result
=
re
.
search
(
self
.
ranTargetBranch
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
self
.
ranTargetBranch
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
else
:
else
:
result
=
re
.
search
(
'NO'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'NO'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mismatch
=
True
mismatch
=
True
if
not
mismatch
:
if
not
mismatch
:
...
@@ -581,7 +580,7 @@ class OaiCiTest():
...
@@ -581,7 +580,7 @@ class OaiCiTest():
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
SSH
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
buildStatus
=
True
buildStatus
=
True
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
buildStatus
=
False
buildStatus
=
False
SSH
.
command
(
'mkdir -p build_log_'
+
self
.
testCase_id
,
'\$'
,
5
)
SSH
.
command
(
'mkdir -p build_log_'
+
self
.
testCase_id
,
'\$'
,
5
)
...
@@ -660,7 +659,7 @@ class OaiCiTest():
...
@@ -660,7 +659,7 @@ class OaiCiTest():
SSH
.
command
(
'source oaienv'
,
'\$'
,
5
)
SSH
.
command
(
'source oaienv'
,
'\$'
,
5
)
SSH
.
command
(
'cd scripts'
,
'\$'
,
5
)
SSH
.
command
(
'cd scripts'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 hostname'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 hostname'
,
'\$'
,
5
)
result
=
re
.
search
(
'hostname
\\\\
r
\\\\
n(?P<host_name>[a-zA-Z0-9\-\_]+)
\\\\
r
\\\\
n'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'hostname
\\\\
r
\\\\
n(?P<host_name>[a-zA-Z0-9\-\_]+)
\\\\
r
\\\\
n'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m Hostname Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Hostname Not Found!
\u001B
[0m'
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
...
@@ -708,7 +707,7 @@ class OaiCiTest():
...
@@ -708,7 +707,7 @@ class OaiCiTest():
return
return
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
command
(
'ls -ls /opt/flexran_rtc/*/rt_controller'
,
'\$'
,
5
)
SSH
.
command
(
'ls -ls /opt/flexran_rtc/*/rt_controller'
,
'\$'
,
5
)
result
=
re
.
search
(
'/opt/flexran_rtc/build/rt_controller'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'/opt/flexran_rtc/build/rt_controller'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
flexranCtrlInstalled
=
True
self
.
flexranCtrlInstalled
=
True
logging
.
debug
(
'Flexran Controller is installed'
)
logging
.
debug
(
'Flexran Controller is installed'
)
...
@@ -727,7 +726,7 @@ class OaiCiTest():
...
@@ -727,7 +726,7 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S chmod 755 ./my-flexran-ctl.sh'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S chmod 755 ./my-flexran-ctl.sh'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S daemon --unsafe --name=flexran_rtc_daemon --chdir=/opt/flexran_rtc -o /opt/flexran_rtc/log/flexranctl_'
+
self
.
testCase_id
+
'.log ././my-flexran-ctl.sh'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S daemon --unsafe --name=flexran_rtc_daemon --chdir=/opt/flexran_rtc -o /opt/flexran_rtc/log/flexranctl_'
+
self
.
testCase_id
+
'.log ././my-flexran-ctl.sh'
,
'\$'
,
5
)
SSH
.
command
(
'ps -aux | grep --color=never rt_controller'
,
'\$'
,
5
)
SSH
.
command
(
'ps -aux | grep --color=never rt_controller'
,
'\$'
,
5
)
result
=
re
.
search
(
'rt_controller -c '
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'rt_controller -c '
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'
\u001B
[1m Initialize FlexRan Controller Completed
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1m Initialize FlexRan Controller Completed
\u001B
[0m'
)
self
.
flexranCtrlStarted
=
True
self
.
flexranCtrlStarted
=
True
...
@@ -765,7 +764,7 @@ class OaiCiTest():
...
@@ -765,7 +764,7 @@ class OaiCiTest():
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
command
(
'ip addr show | awk -f /tmp/active_net_interfaces.awk | egrep -v "lo|tun"'
,
'\$'
,
5
)
SSH
.
command
(
'ip addr show | awk -f /tmp/active_net_interfaces.awk | egrep -v "lo|tun"'
,
'\$'
,
5
)
result
=
re
.
search
(
'interfaceToUse=(?P<eth_interface>[a-zA-Z0-9\-\_]+)done'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'interfaceToUse=(?P<eth_interface>[a-zA-Z0-9\-\_]+)done'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
eth_interface
=
result
.
group
(
'eth_interface'
)
eth_interface
=
result
.
group
(
'eth_interface'
)
logging
.
debug
(
'
\u001B
[1m Launching tshark on interface '
+
eth_interface
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1m Launching tshark on interface '
+
eth_interface
+
'
\u001B
[0m'
)
...
@@ -802,7 +801,7 @@ class OaiCiTest():
...
@@ -802,7 +801,7 @@ class OaiCiTest():
result
=
re
.
search
(
'^rru|^enb|^du.band'
,
str
(
config_file
))
result
=
re
.
search
(
'^rru|^enb|^du.band'
,
str
(
config_file
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S uhd_find_devices'
,
'\$'
,
10
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S uhd_find_devices'
,
'\$'
,
10
)
result
=
re
.
search
(
'type: b200'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'type: b200'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'Found a B2xx device --> resetting it'
)
logging
.
debug
(
'Found a B2xx device --> resetting it'
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S b2xx_fx3_utils --reset-device'
,
'\$'
,
10
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S b2xx_fx3_utils --reset-device'
,
'\$'
,
10
)
...
@@ -864,9 +863,9 @@ class OaiCiTest():
...
@@ -864,9 +863,9 @@ class OaiCiTest():
else
:
else
:
SSH
.
command
(
'stdbuf -o0 cat enb_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync|Starting"'
,
'\$'
,
4
)
SSH
.
command
(
'stdbuf -o0 cat enb_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync|Starting"'
,
'\$'
,
4
)
if
rruCheck
:
if
rruCheck
:
result
=
re
.
search
(
'wait RUs'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'wait RUs'
,
SSH
.
getBefore
(
))
else
:
else
:
result
=
re
.
search
(
'got sync|Starting F1AP at CU'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'got sync|Starting F1AP at CU'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
time
.
sleep
(
6
)
time
.
sleep
(
6
)
else
:
else
:
...
@@ -956,7 +955,7 @@ class OaiCiTest():
...
@@ -956,7 +955,7 @@ class OaiCiTest():
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
# b2xx_fx3_utils reset procedure
# b2xx_fx3_utils reset procedure
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S uhd_find_devices'
,
'\$'
,
10
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S uhd_find_devices'
,
'\$'
,
10
)
result
=
re
.
search
(
'type: b200'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'type: b200'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'Found a B2xx device --> resetting it'
)
logging
.
debug
(
'Found a B2xx device --> resetting it'
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S b2xx_fx3_utils --reset-device'
,
'\$'
,
10
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S b2xx_fx3_utils --reset-device'
,
'\$'
,
10
)
...
@@ -971,7 +970,7 @@ class OaiCiTest():
...
@@ -971,7 +970,7 @@ class OaiCiTest():
# We may have to regenerate the .u* files
# We may have to regenerate the .u* files
if
result
is
None
:
if
result
is
None
:
SSH
.
command
(
'ls /tmp/*.sed'
,
'\$'
,
5
)
SSH
.
command
(
'ls /tmp/*.sed'
,
'\$'
,
5
)
result
=
re
.
search
(
'adapt_usim_parameters'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'adapt_usim_parameters'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'sed -f /tmp/adapt_usim_parameters.sed ../../../openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf > ../../../openair3/NAS/TOOLS/ci-ue_eurecom_test_sfr.conf'
,
'\$'
,
5
)
SSH
.
command
(
'sed -f /tmp/adapt_usim_parameters.sed ../../../openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf > ../../../openair3/NAS/TOOLS/ci-ue_eurecom_test_sfr.conf'
,
'\$'
,
5
)
else
:
else
:
...
@@ -1007,7 +1006,7 @@ class OaiCiTest():
...
@@ -1007,7 +1006,7 @@ class OaiCiTest():
doLoop
=
False
doLoop
=
False
continue
continue
SSH
.
command
(
'stdbuf -o0 cat ue_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync"'
,
'\$'
,
4
)
SSH
.
command
(
'stdbuf -o0 cat ue_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync"'
,
'\$'
,
4
)
result
=
re
.
search
(
'got sync'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'got sync'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
time
.
sleep
(
6
)
time
.
sleep
(
6
)
else
:
else
:
...
@@ -1016,7 +1015,7 @@ class OaiCiTest():
...
@@ -1016,7 +1015,7 @@ class OaiCiTest():
if
gotSyncStatus
==
False
:
if
gotSyncStatus
==
False
:
# we certainly need to stop the lte-uesoftmodem process if it is still running!
# we certainly need to stop the lte-uesoftmodem process if it is still running!
SSH
.
command
(
'ps -aux | grep --text --color=never softmodem | grep -v grep'
,
'\$'
,
4
)
SSH
.
command
(
'ps -aux | grep --text --color=never softmodem | grep -v grep'
,
'\$'
,
4
)
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal=SIGINT lte-uesoftmodem'
,
'\$'
,
4
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal=SIGINT lte-uesoftmodem'
,
'\$'
,
4
)
time
.
sleep
(
3
)
time
.
sleep
(
3
)
...
@@ -1033,7 +1032,7 @@ class OaiCiTest():
...
@@ -1033,7 +1032,7 @@ class OaiCiTest():
fullSyncStatus
=
True
fullSyncStatus
=
True
continue
continue
SSH
.
command
(
'stdbuf -o0 cat ue_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync"'
,
'\$'
,
4
)
SSH
.
command
(
'stdbuf -o0 cat ue_'
+
self
.
testCase_id
+
'.log | egrep --text --color=never -i "wait|sync"'
,
'\$'
,
4
)
result
=
re
.
search
(
'No cell synchronization found'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'No cell synchronization found'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
time
.
sleep
(
6
)
time
.
sleep
(
6
)
else
:
else
:
...
@@ -1042,7 +1041,7 @@ class OaiCiTest():
...
@@ -1042,7 +1041,7 @@ class OaiCiTest():
logging
.
debug
(
'Found: "No cell synchronization" message! --> try again'
)
logging
.
debug
(
'Found: "No cell synchronization" message! --> try again'
)
time
.
sleep
(
6
)
time
.
sleep
(
6
)
SSH
.
command
(
'ps -aux | grep --text --color=never softmodem | grep -v grep'
,
'\$'
,
4
)
SSH
.
command
(
'ps -aux | grep --text --color=never softmodem | grep -v grep'
,
'\$'
,
4
)
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal=SIGINT lte-uesoftmodem'
,
'\$'
,
4
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal=SIGINT lte-uesoftmodem'
,
'\$'
,
4
)
outterLoopCounter
=
outterLoopCounter
-
1
outterLoopCounter
=
outterLoopCounter
-
1
...
@@ -1054,12 +1053,12 @@ class OaiCiTest():
...
@@ -1054,12 +1053,12 @@ class OaiCiTest():
if
result
is
None
:
if
result
is
None
:
SSH
.
command
(
'ifconfig oaitun_ue1'
,
'\$'
,
4
)
SSH
.
command
(
'ifconfig oaitun_ue1'
,
'\$'
,
4
)
# ifconfig output is different between ubuntu 16 and ubuntu 18
# ifconfig output is different between ubuntu 16 and ubuntu 18
result
=
re
.
search
(
'inet addr:1|inet 1'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'inet addr:1|inet 1'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'
\u001B
[1m oaitun_ue1 interface is mounted and configured
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1m oaitun_ue1 interface is mounted and configured
\u001B
[0m'
)
tunnelInterfaceStatus
=
True
tunnelInterfaceStatus
=
True
else
:
else
:
logging
.
debug
(
str
(
self
.
ssh
.
before
))
logging
.
debug
(
SSH
.
getBefore
(
))
logging
.
error
(
'
\u001B
[1m oaitun_ue1 interface is either NOT mounted or NOT configured
\u001B
[0m'
)
logging
.
error
(
'
\u001B
[1m oaitun_ue1 interface is either NOT mounted or NOT configured
\u001B
[0m'
)
tunnelInterfaceStatus
=
False
tunnelInterfaceStatus
=
False
else
:
else
:
...
@@ -1085,7 +1084,7 @@ class OaiCiTest():
...
@@ -1085,7 +1084,7 @@ class OaiCiTest():
count
=
0
count
=
0
while
count
<
5
:
while
count
<
5
:
SSH
.
command
(
'echo '
+
self
.
ADBPassword
+
' | sudo -S lsof | grep ttyUSB0'
,
'\$'
,
10
)
SSH
.
command
(
'echo '
+
self
.
ADBPassword
+
' | sudo -S lsof | grep ttyUSB0'
,
'\$'
,
10
)
result
=
re
.
search
(
'picocom'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'picocom'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
count
=
10
count
=
10
else
:
else
:
...
@@ -1111,7 +1110,7 @@ class OaiCiTest():
...
@@ -1111,7 +1110,7 @@ class OaiCiTest():
logging
.
debug
(
'
\u001B
[1m Cellular Functionality disabled
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1m Cellular Functionality disabled
\u001B
[0m'
)
# Checking if auto-attach is enabled
# Checking if auto-attach is enabled
SSH
.
command
(
'AT^AUTOATT?'
,
'OK'
,
5
)
SSH
.
command
(
'AT^AUTOATT?'
,
'OK'
,
5
)
result
=
re
.
search
(
'AUTOATT: (?P<state>[0-9\-]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'AUTOATT: (?P<state>[0-9\-]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
if
result
.
group
(
'state'
)
is
not
None
:
if
result
.
group
(
'state'
)
is
not
None
:
autoAttachState
=
int
(
result
.
group
(
'state'
))
autoAttachState
=
int
(
result
.
group
(
'state'
))
...
@@ -1171,14 +1170,14 @@ class OaiCiTest():
...
@@ -1171,14 +1170,14 @@ class OaiCiTest():
attach_status
=
False
attach_status
=
False
while
count
<
5
:
while
count
<
5
:
SSH
.
command
(
'AT+CEREG?'
,
'OK'
,
5
)
SSH
.
command
(
'AT+CEREG?'
,
'OK'
,
5
)
result
=
re
.
search
(
'CEREG: 2,(?P<state>[0-9\-]+),'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'CEREG: 2,(?P<state>[0-9\-]+),'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
mDataConnectionState
=
int
(
result
.
group
(
'state'
))
mDataConnectionState
=
int
(
result
.
group
(
'state'
))
if
mDataConnectionState
is
not
None
:
if
mDataConnectionState
is
not
None
:
if
mDataConnectionState
==
1
:
if
mDataConnectionState
==
1
:
count
=
10
count
=
10
attach_status
=
True
attach_status
=
True
result
=
re
.
search
(
'CEREG: 2,1,"(?P<networky>[0-9A-Z]+)","(?P<networkz>[0-9A-Z]+)"'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'CEREG: 2,1,"(?P<networky>[0-9A-Z]+)","(?P<networkz>[0-9A-Z]+)"'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
networky
=
result
.
group
(
'networky'
)
networky
=
result
.
group
(
'networky'
)
networkz
=
result
.
group
(
'networkz'
)
networkz
=
result
.
group
(
'networkz'
)
...
@@ -1189,13 +1188,13 @@ class OaiCiTest():
...
@@ -1189,13 +1188,13 @@ class OaiCiTest():
logging
.
debug
(
'+CEREG: 2,'
+
str
(
mDataConnectionState
))
logging
.
debug
(
'+CEREG: 2,'
+
str
(
mDataConnectionState
))
attach_cnt
=
attach_cnt
+
1
attach_cnt
=
attach_cnt
+
1
else
:
else
:
logging
.
debug
(
str
(
self
.
ssh
.
before
))
logging
.
debug
(
SSH
.
getBefore
(
))
attach_cnt
=
attach_cnt
+
1
attach_cnt
=
attach_cnt
+
1
count
=
count
+
1
count
=
count
+
1
time
.
sleep
(
1
)
time
.
sleep
(
1
)
if
attach_status
:
if
attach_status
:
SSH
.
command
(
'AT+CESQ'
,
'OK'
,
5
)
SSH
.
command
(
'AT+CESQ'
,
'OK'
,
5
)
result
=
re
.
search
(
'CESQ: 99,99,255,255,(?P<rsrq>[0-9]+),(?P<rsrp>[0-9]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'CESQ: 99,99,255,255,(?P<rsrq>[0-9]+),(?P<rsrp>[0-9]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
nRSRQ
=
int
(
result
.
group
(
'rsrq'
))
nRSRQ
=
int
(
result
.
group
(
'rsrq'
))
nRSRP
=
int
(
result
.
group
(
'rsrp'
))
nRSRP
=
int
(
result
.
group
(
'rsrp'
))
...
@@ -1246,7 +1245,7 @@ class OaiCiTest():
...
@@ -1246,7 +1245,7 @@ class OaiCiTest():
sys
.
exit
(
1
)
sys
.
exit
(
1
)
else
:
else
:
SSH
.
command
(
'egrep --color=never "Allocated ipv4 addr" /opt/ltebox/var/log/xGwLog.0'
,
'\$'
,
5
)
SSH
.
command
(
'egrep --color=never "Allocated ipv4 addr" /opt/ltebox/var/log/xGwLog.0'
,
'\$'
,
5
)
result
=
re
.
search
(
'Allocated ipv4 addr: (?P<ipaddr>[0-9\.]+) from Pool'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Allocated ipv4 addr: (?P<ipaddr>[0-9\.]+) from Pool'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
moduleIPAddr
=
result
.
group
(
'ipaddr'
)
moduleIPAddr
=
result
.
group
(
'ipaddr'
)
else
:
else
:
...
@@ -1263,7 +1262,7 @@ class OaiCiTest():
...
@@ -1263,7 +1262,7 @@ class OaiCiTest():
SSH
.
close
()
SSH
.
close
()
self
.
ping_iperf_wrong_exit
(
lock
,
moduleIPAddr
,
device_id
,
statusQueue
,
message
)
self
.
ping_iperf_wrong_exit
(
lock
,
moduleIPAddr
,
device_id
,
statusQueue
,
message
)
return
return
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Packet Loss Not Found!'
message
=
'Packet Loss Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -1277,7 +1276,7 @@ class OaiCiTest():
...
@@ -1277,7 +1276,7 @@ class OaiCiTest():
SSH
.
close
()
SSH
.
close
()
self
.
ping_iperf_wrong_exit
(
lock
,
moduleIPAddr
,
device_id
,
statusQueue
,
message
)
self
.
ping_iperf_wrong_exit
(
lock
,
moduleIPAddr
,
device_id
,
statusQueue
,
message
)
return
return
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -1338,7 +1337,7 @@ class OaiCiTest():
...
@@ -1338,7 +1337,7 @@ class OaiCiTest():
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "dumpsys telephony.registry" | grep -m 1 mDataConnectionState'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "dumpsys telephony.registry" | grep -m 1 mDataConnectionState'
,
'\$'
,
15
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"
\'
| grep -m 1 mDataConnectionState'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"
\'
| grep -m 1 mDataConnectionState'
,
'\$'
,
60
)
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m mDataConnectionState Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m mDataConnectionState Not Found!
\u001B
[0m'
)
lock
.
acquire
()
lock
.
acquire
()
...
@@ -1501,7 +1500,7 @@ class OaiCiTest():
...
@@ -1501,7 +1500,7 @@ class OaiCiTest():
# Save mDataConnectionState
# Save mDataConnectionState
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m mDataConnectionState Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m mDataConnectionState Not Found!
\u001B
[0m'
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
...
@@ -1514,7 +1513,7 @@ class OaiCiTest():
...
@@ -1514,7 +1513,7 @@ class OaiCiTest():
while
count
>
0
:
while
count
>
0
:
count
=
count
-
1
count
=
count
-
1
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell dumpsys telephony.registry | grep mDataConnectionState'
,
'\$'
,
15
)
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mDataConnectionState.*=(?P<state>[0-9\-]+)'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
mDataConnectionState
=
None
mDataConnectionState
=
None
else
:
else
:
...
@@ -1619,13 +1618,14 @@ class OaiCiTest():
...
@@ -1619,13 +1618,14 @@ class OaiCiTest():
SSH
.
open
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
)
SSH
.
open
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
)
if
self
.
ADBCentralized
:
if
self
.
ADBCentralized
:
SSH
.
command
(
'adb devices'
,
'\$'
,
15
)
SSH
.
command
(
'adb devices'
,
'\$'
,
15
)
self
.
UEDevices
=
re
.
findall
(
"
\\\\
r
\\\\
n([A-Za-z0-9]+)
\\\\
tdevice"
,
str
(
self
.
ssh
.
before
))
#self.UEDevices = re.findall("\\\\r\\\\n([A-Za-z0-9]+)\\\\tdevice",SSH.getBefore())
self
.
UEDevices
=
re
.
findall
(
"
\\\\
r
\\\\
n([A-Za-z0-9]+)
\\\\
tdevice"
,
SSH
.
getBefore
())
SSH
.
close
()
SSH
.
close
()
else
:
else
:
if
(
os
.
path
.
isfile
(
'./phones_list.txt'
)):
if
(
os
.
path
.
isfile
(
'./phones_list.txt'
)):
os
.
remove
(
'./phones_list.txt'
)
os
.
remove
(
'./phones_list.txt'
)
SSH
.
command
(
'ls /etc/*/phones*.txt'
,
'\$'
,
5
)
SSH
.
command
(
'ls /etc/*/phones*.txt'
,
'\$'
,
5
)
result
=
re
.
search
(
'/etc/ci/phones_list.txt'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'/etc/ci/phones_list.txt'
,
SSH
.
getBefore
(
))
SSH
.
close
()
SSH
.
close
()
if
(
result
is
not
None
)
and
(
len
(
self
.
UEDevices
)
==
0
):
if
(
result
is
not
None
)
and
(
len
(
self
.
UEDevices
)
==
0
):
SSH
.
copyin
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
,
'/etc/ci/phones_list.txt'
,
'.'
)
SSH
.
copyin
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
,
'/etc/ci/phones_list.txt'
,
'.'
)
...
@@ -1662,12 +1662,13 @@ class OaiCiTest():
...
@@ -1662,12 +1662,13 @@ class OaiCiTest():
SSH
.
open
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
)
SSH
.
open
(
self
.
ADBIPAddress
,
self
.
ADBUserName
,
self
.
ADBPassword
)
if
self
.
ADBCentralized
:
if
self
.
ADBCentralized
:
SSH
.
command
(
'lsusb | egrep "Future Technology Devices International, Ltd FT2232C" | sed -e "s#:.*##" -e "s# #_#g"'
,
'\$'
,
15
)
SSH
.
command
(
'lsusb | egrep "Future Technology Devices International, Ltd FT2232C" | sed -e "s#:.*##" -e "s# #_#g"'
,
'\$'
,
15
)
self
.
CatMDevices
=
re
.
findall
(
"
\\\\
r
\\\\
n([A-Za-z0-9_]+)"
,
str
(
self
.
ssh
.
before
))
#self.CatMDevices = re.findall("\\\\r\\\\n([A-Za-z0-9_]+)",SSH.getBefore())
self
.
CatMDevices
=
re
.
findall
(
"
\\\\
r
\\\\
n([A-Za-z0-9_]+)"
,
SSH
.
getBefore
())
else
:
else
:
if
(
os
.
path
.
isfile
(
'./modules_list.txt'
)):
if
(
os
.
path
.
isfile
(
'./modules_list.txt'
)):
os
.
remove
(
'./modules_list.txt'
)
os
.
remove
(
'./modules_list.txt'
)
SSH
.
command
(
'ls /etc/*/modules*.txt'
,
'\$'
,
5
)
SSH
.
command
(
'ls /etc/*/modules*.txt'
,
'\$'
,
5
)
result
=
re
.
search
(
'/etc/ci/modules_list.txt'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'/etc/ci/modules_list.txt'
,
SSH
.
getBefore
(
))
SSH
.
close
()
SSH
.
close
()
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'Found a module list file on ADB server'
)
logging
.
debug
(
'Found a module list file on ADB server'
)
...
@@ -1684,7 +1685,7 @@ class OaiCiTest():
...
@@ -1684,7 +1685,7 @@ class OaiCiTest():
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"'
,
'\$'
,
15
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "dumpsys telephony.registry"
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'mServiceState=(?P<serviceState>[0-9]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mServiceState=(?P<serviceState>[0-9]+)'
,
SSH
.
getBefore
(
))
serviceState
=
'Service State: UNKNOWN'
serviceState
=
'Service State: UNKNOWN'
if
result
is
not
None
:
if
result
is
not
None
:
lServiceState
=
int
(
result
.
group
(
'serviceState'
))
lServiceState
=
int
(
result
.
group
(
'serviceState'
))
...
@@ -1696,7 +1697,7 @@ class OaiCiTest():
...
@@ -1696,7 +1697,7 @@ class OaiCiTest():
serviceState
=
'Service State: IN_SERVICE'
serviceState
=
'Service State: IN_SERVICE'
if
lServiceState
==
2
:
if
lServiceState
==
2
:
serviceState
=
'Service State: EMERGENCY_ONLY'
serviceState
=
'Service State: EMERGENCY_ONLY'
result
=
re
.
search
(
'mDataConnectionState=(?P<dataConnectionState>[0-9]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mDataConnectionState=(?P<dataConnectionState>[0-9]+)'
,
SSH
.
getBefore
(
))
dataConnectionState
=
'Data State: UNKNOWN'
dataConnectionState
=
'Data State: UNKNOWN'
if
result
is
not
None
:
if
result
is
not
None
:
lDataConnectionState
=
int
(
result
.
group
(
'dataConnectionState'
))
lDataConnectionState
=
int
(
result
.
group
(
'dataConnectionState'
))
...
@@ -1708,7 +1709,7 @@ class OaiCiTest():
...
@@ -1708,7 +1709,7 @@ class OaiCiTest():
dataConnectionState
=
'Data State: CONNECTED'
dataConnectionState
=
'Data State: CONNECTED'
if
lDataConnectionState
==
3
:
if
lDataConnectionState
==
3
:
dataConnectionState
=
'Data State: SUSPENDED'
dataConnectionState
=
'Data State: SUSPENDED'
result
=
re
.
search
(
'mDataConnectionReason=(?P<dataConnectionReason>[0-9a-zA-Z_]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mDataConnectionReason=(?P<dataConnectionReason>[0-9a-zA-Z_]+)'
,
SSH
.
getBefore
(
))
dataConnectionReason
=
'Data Reason: UNKNOWN'
dataConnectionReason
=
'Data Reason: UNKNOWN'
if
result
is
not
None
:
if
result
is
not
None
:
dataConnectionReason
=
'Data Reason: '
+
result
.
group
(
'dataConnectionReason'
)
dataConnectionReason
=
'Data Reason: '
+
result
.
group
(
'dataConnectionReason'
)
...
@@ -1754,7 +1755,7 @@ class OaiCiTest():
...
@@ -1754,7 +1755,7 @@ class OaiCiTest():
SSH
.
command
(
'cd /opt/flexran_rtc'
,
'\$'
,
5
)
SSH
.
command
(
'cd /opt/flexran_rtc'
,
'\$'
,
5
)
SSH
.
command
(
'curl http://localhost:9999/stats | jq
\'
.
\'
> log/check_status_'
+
self
.
testCase_id
+
'.log 2>&1'
,
'\$'
,
5
)
SSH
.
command
(
'curl http://localhost:9999/stats | jq
\'
.
\'
> log/check_status_'
+
self
.
testCase_id
+
'.log 2>&1'
,
'\$'
,
5
)
SSH
.
command
(
'cat log/check_status_'
+
self
.
testCase_id
+
'.log | jq
\'
.eNB_config[0].UE
\'
| grep -c rnti | sed -e "s#^#Nb Connected UE = #"'
,
'\$'
,
5
)
SSH
.
command
(
'cat log/check_status_'
+
self
.
testCase_id
+
'.log | jq
\'
.eNB_config[0].UE
\'
| grep -c rnti | sed -e "s#^#Nb Connected UE = #"'
,
'\$'
,
5
)
result
=
re
.
search
(
'Nb Connected UE = (?P<nb_ues>[0-9]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Nb Connected UE = (?P<nb_ues>[0-9]+)'
,
SSH
.
getBefore
(
))
passStatus
=
True
passStatus
=
True
if
result
is
not
None
:
if
result
is
not
None
:
nb_ues
=
int
(
result
.
group
(
'nb_ues'
))
nb_ues
=
int
(
result
.
group
(
'nb_ues'
))
...
@@ -1802,7 +1803,7 @@ class OaiCiTest():
...
@@ -1802,7 +1803,7 @@ class OaiCiTest():
sys
.
exit
(
'Insufficient Parameter'
)
sys
.
exit
(
'Insufficient Parameter'
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
command
(
'ifconfig oaitun_ue1'
,
'\$'
,
4
)
SSH
.
command
(
'ifconfig oaitun_ue1'
,
'\$'
,
4
)
result
=
re
.
search
(
'inet addr:(?P<ueipaddress>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|inet (?P<ueipaddress2>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'inet addr:(?P<ueipaddress>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)|inet (?P<ueipaddress2>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
if
result
.
group
(
'ueipaddress'
)
is
not
None
:
if
result
.
group
(
'ueipaddress'
)
is
not
None
:
UE_IPAddress
=
result
.
group
(
'ueipaddress'
)
UE_IPAddress
=
result
.
group
(
'ueipaddress'
)
...
@@ -1827,7 +1828,7 @@ class OaiCiTest():
...
@@ -1827,7 +1828,7 @@ class OaiCiTest():
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "ip addr show | grep rmnet"'
,
'\$'
,
15
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "ip addr show | grep rmnet"'
,
'\$'
,
15
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ip addr show | grep rmnet"
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ip addr show | grep rmnet"
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'inet (?P<ueipaddress>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\/[0-9]+[0-9a-zA-Z\.\s]+'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'inet (?P<ueipaddress>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\/[0-9]+[0-9a-zA-Z\.\s]+'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m UE IP Address Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m UE IP Address Not Found!
\u001B
[0m'
)
time
.
sleep
(
1
)
time
.
sleep
(
1
)
...
@@ -1887,7 +1888,7 @@ class OaiCiTest():
...
@@ -1887,7 +1888,7 @@ class OaiCiTest():
SSH
.
close
()
SSH
.
close
()
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
message
)
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
message
)
return
return
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Packet Loss Not Found!'
message
=
'Packet Loss Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -1901,7 +1902,7 @@ class OaiCiTest():
...
@@ -1901,7 +1902,7 @@ class OaiCiTest():
SSH
.
close
()
SSH
.
close
()
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
message
)
self
.
ping_iperf_wrong_exit
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
message
)
return
return
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -1982,7 +1983,7 @@ class OaiCiTest():
...
@@ -1982,7 +1983,7 @@ class OaiCiTest():
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
self
.
PingNoS1_wrong_exit
(
message
)
self
.
PingNoS1_wrong_exit
(
message
)
return
return
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
', (?P<packetloss>[0-9\.]+)% packet loss, time [0-9\.]+ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Packet Loss Not Found!'
message
=
'Packet Loss Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -1994,7 +1995,7 @@ class OaiCiTest():
...
@@ -1994,7 +1995,7 @@ class OaiCiTest():
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
self
.
PingNoS1_wrong_exit
(
message
)
self
.
PingNoS1_wrong_exit
(
message
)
return
return
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'rtt min\/avg\/max\/mdev = (?P<rtt_min>[0-9\.]+)\/(?P<rtt_avg>[0-9\.]+)\/(?P<rtt_max>[0-9\.]+)\/[0-9\.]+ ms'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
message
=
'Ping RTT_Min RTT_Avg RTT_Max Not Found!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -2134,7 +2135,7 @@ class OaiCiTest():
...
@@ -2134,7 +2135,7 @@ class OaiCiTest():
def
Iperf_analyzeV2TCPOutput
(
self
,
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
iperf_real_options
):
def
Iperf_analyzeV2TCPOutput
(
self
,
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
iperf_real_options
):
SSH
.
command
(
'awk -f /tmp/tcp_iperf_stats.awk /tmp/CI-eNB/scripts/iperf_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
'\$'
,
5
)
SSH
.
command
(
'awk -f /tmp/tcp_iperf_stats.awk /tmp/CI-eNB/scripts/iperf_'
+
self
.
testCase_id
+
'_'
+
device_id
+
'.log'
,
'\$'
,
5
)
result
=
re
.
search
(
'Avg Bitrate : (?P<average>[0-9\.]+ Mbits\/sec) Max Bitrate : (?P<maximum>[0-9\.]+ Mbits\/sec) Min Bitrate : (?P<minimum>[0-9\.]+ Mbits\/sec)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Avg Bitrate : (?P<average>[0-9\.]+ Mbits\/sec) Max Bitrate : (?P<maximum>[0-9\.]+ Mbits\/sec) Min Bitrate : (?P<minimum>[0-9\.]+ Mbits\/sec)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
avgbitrate
=
result
.
group
(
'average'
)
avgbitrate
=
result
.
group
(
'average'
)
maxbitrate
=
result
.
group
(
'maximum'
)
maxbitrate
=
result
.
group
(
'maximum'
)
...
@@ -2163,9 +2164,9 @@ class OaiCiTest():
...
@@ -2163,9 +2164,9 @@ class OaiCiTest():
if
result
is
None
:
if
result
is
None
:
return
self
.
Iperf_analyzeV2TCPOutput
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
iperf_real_options
)
return
self
.
Iperf_analyzeV2TCPOutput
(
lock
,
UE_IPAddress
,
device_id
,
statusQueue
,
iperf_real_options
)
result
=
re
.
search
(
'Server Report:'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Server Report:'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
result
=
re
.
search
(
'read failed: Connection refused'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'read failed: Connection refused'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
logging
.
debug
(
'
\u001B
[1;37;41m Could not connect to iperf server!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m Could not connect to iperf server!
\u001B
[0m'
)
else
:
else
:
...
@@ -2189,7 +2190,7 @@ class OaiCiTest():
...
@@ -2189,7 +2190,7 @@ class OaiCiTest():
req_bandwidth
=
'%.1f Gbits/sec'
%
req_bw
req_bandwidth
=
'%.1f Gbits/sec'
%
req_bw
req_bw
=
req_bw
*
1000000000
req_bw
=
req_bw
*
1000000000
result
=
re
.
search
(
'Server Report:
\\\\
r
\\\\
n(?:|\[ *\d+\].*) (?P<bitrate>[0-9\.]+ [KMG]bits\/sec) +(?P<jitter>[0-9\.]+ ms) +(\d+\/..\d+) +(\((?P<packetloss>[0-9\.]+)%\))'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Server Report:
\\\\
r
\\\\
n(?:|\[ *\d+\].*) (?P<bitrate>[0-9\.]+ [KMG]bits\/sec) +(?P<jitter>[0-9\.]+ ms) +(\d+\/..\d+) +(\((?P<packetloss>[0-9\.]+)%\))'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
bitrate
=
result
.
group
(
'bitrate'
)
bitrate
=
result
.
group
(
'bitrate'
)
packetloss
=
result
.
group
(
'packetloss'
)
packetloss
=
result
.
group
(
'packetloss'
)
...
@@ -2340,9 +2341,9 @@ class OaiCiTest():
...
@@ -2340,9 +2341,9 @@ class OaiCiTest():
def
Iperf_analyzeV3Output
(
self
,
lock
,
UE_IPAddress
,
device_id
,
statusQueue
):
def
Iperf_analyzeV3Output
(
self
,
lock
,
UE_IPAddress
,
device_id
,
statusQueue
):
result
=
re
.
search
(
'(?P<bitrate>[0-9\.]+ [KMG]bits\/sec) +(?:|[0-9\.]+ ms +\d+\/\d+ \((?P<packetloss>[0-9\.]+)%\)) +(?:|receiver)
\\\\
r
\\\\
n(?:|\[ *\d+\] Sent \d+ datagrams)
\\\\
r
\\\\
niperf Done\.'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'(?P<bitrate>[0-9\.]+ [KMG]bits\/sec) +(?:|[0-9\.]+ ms +\d+\/\d+ \((?P<packetloss>[0-9\.]+)%\)) +(?:|receiver)
\\\\
r
\\\\
n(?:|\[ *\d+\] Sent \d+ datagrams)
\\\\
r
\\\\
niperf Done\.'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
result
=
re
.
search
(
'(?P<error>iperf: error - [a-zA-Z0-9 :]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'(?P<error>iperf: error - [a-zA-Z0-9 :]+)'
,
SSH
.
getBefore
(
))
lock
.
acquire
()
lock
.
acquire
()
statusQueue
.
put
(
-
1
)
statusQueue
.
put
(
-
1
)
statusQueue
.
put
(
device_id
)
statusQueue
.
put
(
device_id
)
...
@@ -2503,9 +2504,9 @@ class OaiCiTest():
...
@@ -2503,9 +2504,9 @@ class OaiCiTest():
SSH
.
command
(
'adb -s '
+
device_id
+
' shell "ls /data/local/tmp"'
,
'\$'
,
5
)
SSH
.
command
(
'adb -s '
+
device_id
+
' shell "ls /data/local/tmp"'
,
'\$'
,
5
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ls /data/local/tmp"
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ls /data/local/tmp"
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'iperf3'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf3'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
result
=
re
.
search
(
'iperf'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
message
=
'Neither iperf nor iperf3 installed on UE!'
message
=
'Neither iperf nor iperf3 installed on UE!'
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m '
+
message
+
'
\u001B
[0m'
)
...
@@ -2517,10 +2518,10 @@ class OaiCiTest():
...
@@ -2517,10 +2518,10 @@ class OaiCiTest():
SSH
.
command
(
'adb -s '
+
device_id
+
' shell "/data/local/tmp/iperf --version"'
,
'\$'
,
5
)
SSH
.
command
(
'adb -s '
+
device_id
+
' shell "/data/local/tmp/iperf --version"'
,
'\$'
,
5
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "/data/local/tmp/iperf --version"
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "/data/local/tmp/iperf --version"
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'iperf version 2.0.5'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf version 2.0.5'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
ueIperfVersion
=
'2.0.5'
self
.
ueIperfVersion
=
'2.0.5'
result
=
re
.
search
(
'iperf version 2.0.10'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf version 2.0.10'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
ueIperfVersion
=
'2.0.10'
self
.
ueIperfVersion
=
'2.0.10'
else
:
else
:
...
@@ -2529,10 +2530,10 @@ class OaiCiTest():
...
@@ -2529,10 +2530,10 @@ class OaiCiTest():
else
:
else
:
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
command
(
'iperf --version'
,
'\$'
,
5
)
SSH
.
command
(
'iperf --version'
,
'\$'
,
5
)
result
=
re
.
search
(
'iperf version 2.0.5'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf version 2.0.5'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
ueIperfVersion
=
'2.0.5'
self
.
ueIperfVersion
=
'2.0.5'
result
=
re
.
search
(
'iperf version 2.0.10'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'iperf version 2.0.10'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
ueIperfVersion
=
'2.0.10'
self
.
ueIperfVersion
=
'2.0.10'
SSH
.
close
()
SSH
.
close
()
...
@@ -2640,7 +2641,7 @@ class OaiCiTest():
...
@@ -2640,7 +2641,7 @@ class OaiCiTest():
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell ps | grep --color=never iperf | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell ps | grep --color=never iperf | grep -v grep'
,
'\$'
,
5
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ps" | grep --color=never iperf | grep -v grep
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ps" | grep --color=never iperf | grep -v grep
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'shell +(?P<pid>\d+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'shell +(?P<pid>\d+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
pid_iperf
=
result
.
group
(
'pid'
)
pid_iperf
=
result
.
group
(
'pid'
)
if
self
.
ADBCentralized
:
if
self
.
ADBCentralized
:
...
@@ -2931,7 +2932,7 @@ class OaiCiTest():
...
@@ -2931,7 +2932,7 @@ class OaiCiTest():
try
:
try
:
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m OAI UE Process Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m OAI UE Process Not Found!
\u001B
[0m'
)
status_queue
.
put
(
OAI_UE_PROCESS_FAILED
)
status_queue
.
put
(
OAI_UE_PROCESS_FAILED
)
...
@@ -2945,7 +2946,7 @@ class OaiCiTest():
...
@@ -2945,7 +2946,7 @@ class OaiCiTest():
try
:
try
:
SSH
.
open
(
self
.
eNBIPAddress
,
self
.
eNBUserName
,
self
.
eNBPassword
)
SSH
.
open
(
self
.
eNBIPAddress
,
self
.
eNBUserName
,
self
.
eNBPassword
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-softmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-softmodem'
,
SSH
.
getBefore
(
))
if
result
is
None
:
if
result
is
None
:
logging
.
debug
(
'
\u001B
[1;37;41m eNB Process Not Found!
\u001B
[0m'
)
logging
.
debug
(
'
\u001B
[1;37;41m eNB Process Not Found!
\u001B
[0m'
)
status_queue
.
put
(
ENB_PROCESS_FAILED
)
status_queue
.
put
(
ENB_PROCESS_FAILED
)
...
@@ -2960,11 +2961,11 @@ class OaiCiTest():
...
@@ -2960,11 +2961,11 @@ class OaiCiTest():
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never hss | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never hss | grep -v grep'
,
'\$'
,
5
)
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'oai_hss -j'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'oai_hss -j'
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'hss_sim s6as diam_hss'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'hss_sim s6as diam_hss'
,
SSH
.
getBefore
(
))
else
:
else
:
logging
.
error
(
'This should not happen!'
)
logging
.
error
(
'This should not happen!'
)
if
result
is
None
:
if
result
is
None
:
...
@@ -2981,11 +2982,11 @@ class OaiCiTest():
...
@@ -2981,11 +2982,11 @@ class OaiCiTest():
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never mme | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never mme | grep -v grep'
,
'\$'
,
5
)
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'mme -c'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mme -c'
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
result
=
re
.
search
(
'mme'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mme'
,
SSH
.
getBefore
(
))
else
:
else
:
logging
.
error
(
'This should not happen!'
)
logging
.
error
(
'This should not happen!'
)
if
result
is
None
:
if
result
is
None
:
...
@@ -3002,13 +3003,13 @@ class OaiCiTest():
...
@@ -3002,13 +3003,13 @@ class OaiCiTest():
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
SSH
.
open
(
self
.
EPCIPAddress
,
self
.
EPCUserName
,
self
.
EPCPassword
)
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
if
re
.
match
(
'OAI-Rel14-CUPS'
,
self
.
EPCType
,
re
.
IGNORECASE
):
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never spgw | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never spgw | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'spgwu -c '
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'spgwu -c '
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'OAI'
,
self
.
EPCType
,
re
.
IGNORECASE
):
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never spgw | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never spgw | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
SSH
.
getBefore
(
))
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never xGw | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never xGw | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'xGw'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'xGw'
,
SSH
.
getBefore
(
))
else
:
else
:
logging
.
error
(
'This should not happen!'
)
logging
.
error
(
'This should not happen!'
)
if
result
is
None
:
if
result
is
None
:
...
@@ -3448,13 +3449,13 @@ class OaiCiTest():
...
@@ -3448,13 +3449,13 @@ class OaiCiTest():
SSH
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
SSH
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
SSH
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
5
)
SSH
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-softmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-softmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S daemon --name=enb'
+
str
(
self
.
eNB_instance
)
+
'_daemon --stop'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S daemon --name=enb'
+
str
(
self
.
eNB_instance
)
+
'_daemon --stop'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S killall --signal SIGINT lte-softmodem || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S killall --signal SIGINT lte-softmodem || true'
,
'\$'
,
5
)
time
.
sleep
(
10
)
time
.
sleep
(
10
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-softmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-softmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S killall --signal SIGKILL lte-softmodem || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S killall --signal SIGKILL lte-softmodem || true'
,
'\$'
,
5
)
time
.
sleep
(
5
)
time
.
sleep
(
5
)
...
@@ -3521,7 +3522,7 @@ class OaiCiTest():
...
@@ -3521,7 +3522,7 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT oai_hss || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT oai_hss || true'
,
'\$'
,
5
)
time
.
sleep
(
2
)
time
.
sleep
(
2
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep hss | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep hss | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'oai_hss -j'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'oai_hss -j'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL oai_hss || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL oai_hss || true'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-hss.sh'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-hss.sh'
,
'\$'
,
5
)
...
@@ -3529,7 +3530,7 @@ class OaiCiTest():
...
@@ -3529,7 +3530,7 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_hss oai_hss || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_hss oai_hss || true'
,
'\$'
,
5
)
time
.
sleep
(
2
)
time
.
sleep
(
2
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep hss | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep hss | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_hss oai_hss || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_hss oai_hss || true'
,
'\$'
,
5
)
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
...
@@ -3549,7 +3550,7 @@ class OaiCiTest():
...
@@ -3549,7 +3550,7 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_mme mme || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_mme mme || true'
,
'\$'
,
5
)
time
.
sleep
(
2
)
time
.
sleep
(
2
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep mme | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep mme | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'mme -c'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'mme -c'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_mme mme || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_mme mme || true'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-mme.sh'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-mme.sh'
,
'\$'
,
5
)
...
@@ -3567,12 +3568,12 @@ class OaiCiTest():
...
@@ -3567,12 +3568,12 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT spgwc spgwu || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT spgwc spgwu || true'
,
'\$'
,
5
)
time
.
sleep
(
2
)
time
.
sleep
(
2
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep spgw | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep spgw | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'spgwc -c |spgwu -c '
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'spgwc -c |spgwu -c '
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL spgwc spgwu || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL spgwc spgwu || true'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-spgw*.sh'
,
'\$'
,
5
)
SSH
.
command
(
'rm -f '
+
self
.
EPCSourceCodePath
+
'/scripts/my-spgw*.sh'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep tshark | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep tshark | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'-w '
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'-w '
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT tshark || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT tshark || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S chmod 666 '
+
self
.
EPCSourceCodePath
+
'/scripts/*.pcap'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S chmod 666 '
+
self
.
EPCSourceCodePath
+
'/scripts/*.pcap'
,
'\$'
,
5
)
...
@@ -3580,7 +3581,7 @@ class OaiCiTest():
...
@@ -3580,7 +3581,7 @@ class OaiCiTest():
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_spgw spgw || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGINT run_spgw spgw || true'
,
'\$'
,
5
)
time
.
sleep
(
2
)
time
.
sleep
(
2
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep spgw | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 ps -aux | grep spgw | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'\/bin\/bash .\/run_'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_spgw spgw || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
EPCPassword
+
' | sudo -S killall --signal SIGKILL run_spgw spgw || true'
,
'\$'
,
5
)
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
elif
re
.
match
(
'ltebox'
,
self
.
EPCType
,
re
.
IGNORECASE
):
...
@@ -3623,7 +3624,7 @@ class OaiCiTest():
...
@@ -3623,7 +3624,7 @@ class OaiCiTest():
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "ps | grep --color=never iperf | grep -v grep"'
,
'\$'
,
5
)
SSH
.
command
(
'stdbuf -o0 adb -s '
+
device_id
+
' shell "ps | grep --color=never iperf | grep -v grep"'
,
'\$'
,
5
)
else
:
else
:
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ps | grep --color=never iperf | grep -v grep"
\'
'
,
'\$'
,
60
)
SSH
.
command
(
'ssh '
+
self
.
UEDevicesRemoteUser
[
idx
]
+
'@'
+
self
.
UEDevicesRemoteServer
[
idx
]
+
'
\'
adb -s '
+
device_id
+
' shell "ps | grep --color=never iperf | grep -v grep"
\'
'
,
'\$'
,
60
)
result
=
re
.
search
(
'shell +(?P<pid>\d+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'shell +(?P<pid>\d+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
pid_iperf
=
result
.
group
(
'pid'
)
pid_iperf
=
result
.
group
(
'pid'
)
if
self
.
ADBCentralized
:
if
self
.
ADBCentralized
:
...
@@ -3653,13 +3654,13 @@ class OaiCiTest():
...
@@ -3653,13 +3654,13 @@ class OaiCiTest():
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
open
(
self
.
UEIPAddress
,
self
.
UEUserName
,
self
.
UEPassword
)
SSH
.
command
(
'cd '
+
self
.
UESourceCodePath
+
'/cmake_targets'
,
'\$'
,
5
)
SSH
.
command
(
'cd '
+
self
.
UESourceCodePath
+
'/cmake_targets'
,
'\$'
,
5
)
SSH
.
command
(
'ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S daemon --name=ue'
+
str
(
self
.
UE_instance
)
+
'_daemon --stop'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S daemon --name=ue'
+
str
(
self
.
UE_instance
)
+
'_daemon --stop'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal SIGINT lte-uesoftmodem || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal SIGINT lte-uesoftmodem || true'
,
'\$'
,
5
)
time
.
sleep
(
10
)
time
.
sleep
(
10
)
SSH
.
command
(
'ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
SSH
.
command
(
'ps -aux | grep --color=never softmodem | grep -v grep'
,
'\$'
,
5
)
result
=
re
.
search
(
'lte-uesoftmodem'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'lte-uesoftmodem'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal SIGKILL lte-uesoftmodem || true'
,
'\$'
,
5
)
SSH
.
command
(
'echo '
+
self
.
UEPassword
+
' | sudo -S killall --signal SIGKILL lte-uesoftmodem || true'
,
'\$'
,
5
)
time
.
sleep
(
5
)
time
.
sleep
(
5
)
...
@@ -3964,27 +3965,27 @@ class OaiCiTest():
...
@@ -3964,27 +3965,27 @@ class OaiCiTest():
SSH
.
open
(
IPAddress
,
UserName
,
Password
)
SSH
.
open
(
IPAddress
,
UserName
,
Password
)
SSH
.
command
(
'lsb_release -a'
,
'\$'
,
5
)
SSH
.
command
(
'lsb_release -a'
,
'\$'
,
5
)
result
=
re
.
search
(
'Description:
\\\\
t(?P<os_type>[a-zA-Z0-9\-\_\.\ ]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'Description:
\\\\
t(?P<os_type>[a-zA-Z0-9\-\_\.\ ]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
OsVersion
=
result
.
group
(
'os_type'
)
self
.
OsVersion
=
result
.
group
(
'os_type'
)
logging
.
debug
(
'OS is: '
+
self
.
OsVersion
)
logging
.
debug
(
'OS is: '
+
self
.
OsVersion
)
SSH
.
command
(
'uname -r'
,
'\$'
,
5
)
SSH
.
command
(
'uname -r'
,
'\$'
,
5
)
result
=
re
.
search
(
'uname -r
\\\\
r
\\\\
n(?P<kernel_version>[a-zA-Z0-9\-\_\.]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'uname -r
\\\\
r
\\\\
n(?P<kernel_version>[a-zA-Z0-9\-\_\.]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
KernelVersion
=
result
.
group
(
'kernel_version'
)
self
.
KernelVersion
=
result
.
group
(
'kernel_version'
)
logging
.
debug
(
'Kernel Version is: '
+
self
.
KernelVersion
)
logging
.
debug
(
'Kernel Version is: '
+
self
.
KernelVersion
)
SSH
.
command
(
'dpkg --list | egrep --color=never libuhd003'
,
'\$'
,
5
)
SSH
.
command
(
'dpkg --list | egrep --color=never libuhd003'
,
'\$'
,
5
)
result
=
re
.
search
(
'libuhd003:amd64 *(?P<uhd_version>[0-9\.]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'libuhd003:amd64 *(?P<uhd_version>[0-9\.]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
UhdVersion
=
result
.
group
(
'uhd_version'
)
self
.
UhdVersion
=
result
.
group
(
'uhd_version'
)
logging
.
debug
(
'UHD Version is: '
+
self
.
UhdVersion
)
logging
.
debug
(
'UHD Version is: '
+
self
.
UhdVersion
)
SSH
.
command
(
'echo '
+
Password
+
' | sudo -S uhd_find_devices'
,
'\$'
,
15
)
SSH
.
command
(
'echo '
+
Password
+
' | sudo -S uhd_find_devices'
,
'\$'
,
15
)
result
=
re
.
search
(
'product: (?P<usrp_board>[0-9A-Za-z]+)
\\\\
r
\\\\
n'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'product: (?P<usrp_board>[0-9A-Za-z]+)
\\\\
r
\\\\
n'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
UsrpBoard
=
result
.
group
(
'usrp_board'
)
self
.
UsrpBoard
=
result
.
group
(
'usrp_board'
)
logging
.
debug
(
'USRP Board is: '
+
self
.
UsrpBoard
)
logging
.
debug
(
'USRP Board is: '
+
self
.
UsrpBoard
)
SSH
.
command
(
'lscpu'
,
'\$'
,
5
)
SSH
.
command
(
'lscpu'
,
'\$'
,
5
)
result
=
re
.
search
(
'CPU\(s\): *(?P<nb_cpus>[0-9]+).*Model name: *(?P<model>[a-zA-Z0-9\-\_\.\ \(\)]+).*CPU MHz: *(?P<cpu_mhz>[0-9\.]+)'
,
str
(
self
.
ssh
.
before
))
result
=
re
.
search
(
'CPU\(s\): *(?P<nb_cpus>[0-9]+).*Model name: *(?P<model>[a-zA-Z0-9\-\_\.\ \(\)]+).*CPU MHz: *(?P<cpu_mhz>[0-9\.]+)'
,
SSH
.
getBefore
(
))
if
result
is
not
None
:
if
result
is
not
None
:
self
.
CpuNb
=
result
.
group
(
'nb_cpus'
)
self
.
CpuNb
=
result
.
group
(
'nb_cpus'
)
logging
.
debug
(
'nb_cpus: '
+
self
.
CpuNb
)
logging
.
debug
(
'nb_cpus: '
+
self
.
CpuNb
)
...
@@ -4504,6 +4505,7 @@ def receive_signal(signum, frame):
...
@@ -4504,6 +4505,7 @@ def receive_signal(signum, frame):
#-----------------------------------------------------------
#-----------------------------------------------------------
mode
=
''
mode
=
''
CiTestObj
=
OaiCiTest
()
CiTestObj
=
OaiCiTest
()
from
sshconnection
import
*
SSH
=
SSHConnection
()
SSH
=
SSHConnection
()
argvs
=
sys
.
argv
argvs
=
sys
.
argv
...
...
ci-scripts/pMain.sh
0 → 100755
View file @
ba9786df
python3 main.py
--mode
=
InitiateHtml
--ranRepository
=
https://gitlab.eurecom.fr/oai/openairinterface5g
--ranBranch
=
develop
--ranCommitID
=
424bf5c53e879af7d66aaa50e0cd969eeb570dbd
--ranAllowMerge
=
false
--ranTargetBranch
=
develop
--ADBIPAddress
=
192.168.12.240
--ADBUserName
=
bourdon
--ADBPassword
=
linux
--XMLTestFile
=
xml_files/dummy_build.xml
--XMLTestFile
=
xml_files/dummy_ltebox_start.xml
--XMLTestFile
=
xml_files/dummy_enb_test.xml
--XMLTestFile
=
xml_files/dummy_ltebox_stop.xml
python3 main.py
--mode
=
TesteNB
--ranRepository
=
https://gitlab.eurecom.fr/oai/openairinterface5g
--ranBranch
=
develop
--ranCommitID
=
424bf5c53e879af7d66aaa50e0cd969eeb570dbd
--ranAllowMerge
=
false
--ranTargetBranch
=
develop
--eNBIPAddress
=
192.168.12.161
--eNBUserName
=
acilius
--eNBPassword
=
linux
--eNBSourceCodePath
=
/tmp/CI-gabriele
--EPCIPAddress
=
192.168.12.240
--EPCType
=
ltebox
--EPCUserName
=
bourdon
--EPCPassword
=
linux
--EPCSourceCodePath
=
/tmp/CI-eNB
--ADBIPAddress
=
192.168.12.240
--ADBUserName
=
bourdon
--ADBPassword
=
linux
--XMLTestFile
=
xml_files/dummy_build.xml
python3 main.py
--mode
=
TesteNB
--ranRepository
=
https://gitlab.eurecom.fr/oai/openairinterface5g
--ranBranch
=
develop
--ranCommitID
=
424bf5c53e879af7d66aaa50e0cd969eeb570dbd
--ranAllowMerge
=
false
--ranTargetBranch
=
develop
--eNBIPAddress
=
192.168.12.161
--eNBUserName
=
acilius
--eNBPassword
=
linux
--eNBSourceCodePath
=
/tmp/CI-gabriele
--EPCIPAddress
=
192.168.12.240
--EPCType
=
ltebox
--EPCUserName
=
bourdon
--EPCPassword
=
linux
--EPCSourceCodePath
=
/tmp/CI-eNB
--ADBIPAddress
=
192.168.12.240
--ADBUserName
=
bourdon
--ADBPassword
=
linux
--XMLTestFile
=
xml_files/dummy_ltebox_start.xml
python3 main.py
--mode
=
TesteNB
--ranRepository
=
https://gitlab.eurecom.fr/oai/openairinterface5g
--ranBranch
=
develop
--ranCommitID
=
424bf5c53e879af7d66aaa50e0cd969eeb570dbd
--ranAllowMerge
=
false
--ranTargetBranch
=
develop
--eNBIPAddress
=
192.168.12.161
--eNBUserName
=
acilius
--eNBPassword
=
linux
--eNBSourceCodePath
=
/tmp/CI-gabriele
--EPCIPAddress
=
192.168.12.240
--EPCType
=
ltebox
--EPCUserName
=
bourdon
--EPCPassword
=
linux
--EPCSourceCodePath
=
/tmp/CI-eNB
--ADBIPAddress
=
192.168.12.240
--ADBUserName
=
bourdon
--ADBPassword
=
linux
--XMLTestFile
=
xml_files/dummy_enb_test.xml
python3 main.py
--mode
=
TesteNB
--ranRepository
=
https://gitlab.eurecom.fr/oai/openairinterface5g
--ranBranch
=
develop
--ranCommitID
=
424bf5c53e879af7d66aaa50e0cd969eeb570dbd
--ranAllowMerge
=
false
--ranTargetBranch
=
develop
--eNBIPAddress
=
192.168.12.161
--eNBUserName
=
acilius
--eNBPassword
=
linux
--eNBSourceCodePath
=
/tmp/CI-gabriele
--EPCIPAddress
=
192.168.12.240
--EPCType
=
ltebox
--EPCUserName
=
bourdon
--EPCPassword
=
linux
--EPCSourceCodePath
=
/tmp/CI-eNB
--ADBIPAddress
=
192.168.12.240
--ADBUserName
=
bourdon
--ADBPassword
=
linux
--XMLTestFile
=
xml_files/dummy_ltebox_stop.xml
python3 main.py
--mode
=
FinalizeHtml
--finalStatus
=
true
--eNBIPAddress
=
192.168.12.161
--eNBUserName
=
acilius
--eNBPassword
=
linux
ci-scripts/sshconnection.py
View file @
ba9786df
#-----------------------------------------------------------
# Import
#-----------------------------------------------------------
import
pexpect
# pexpect
import
logging
#-----------------------------------------------------------
#-----------------------------------------------------------
# Class Declaration
# Class Declaration
#-----------------------------------------------------------
#-----------------------------------------------------------
class
SSHConnection
():
class
SSHConnection
():
def
__init__
(
self
):
def
__init__
(
self
):
self
.
ssh
=
''
def
open
(
self
,
ipaddress
,
username
,
password
):
def
open
(
self
,
ipaddress
,
username
,
password
):
count
=
0
count
=
0
connect_status
=
False
connect_status
=
False
...
@@ -165,3 +173,5 @@ class SSHConnection():
...
@@ -165,3 +173,5 @@ class SSHConnection():
else
:
else
:
sys
.
exit
(
'SCP failed'
)
sys
.
exit
(
'SCP failed'
)
def
getBefore
(
self
):
return
str
(
self
.
ssh
.
before
)
ci-scripts/xml_files/enb_usrp210_band7_epc_start.xml
0 → 100644
View file @
ba9786df
<!--
Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The OpenAirInterface Software Alliance licenses this file to You under
the OAI Public License, Version 1.1 (the "License"); you may not use this file
except in compliance with the License.
You may obtain a copy of the License at
http://www.openairinterface.org/?page_id=698
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For more information about the OpenAirInterface (OAI) Software Alliance:
contact@openairinterface.org
-->
<testCaseList>
<htmlTabRef>
epc-start
</htmlTabRef>
<htmlTabName>
EPC-Start
</htmlTabName>
<htmlTabIcon>
log-in
</htmlTabIcon>
<TestCaseRequestedList>
010101
050101 060101 070101
</TestCaseRequestedList>
<TestCaseExclusionList></TestCaseExclusionList>
<testCase
id=
"010101"
>
<class>
Build_eNB
</class>
<desc>
Build eNB (USRP)
</desc>
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
</testCase>
<testCase
id=
"050101"
>
<class>
Initialize_HSS
</class>
<desc>
Initialize HSS
</desc>
</testCase>
<testCase
id=
"060101"
>
<class>
Initialize_MME
</class>
<desc>
Initialize MME
</desc>
</testCase>
<testCase
id=
"070101"
>
<class>
Initialize_SPGW
</class>
<desc>
Initialize SPGW
</desc>
</testCase>
</testCaseList>
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