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
lizhongxiao
OpenXG-RAN
Commits
6c5feeba
Commit
6c5feeba
authored
Jul 11, 2019
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: adding support for background build on eNB
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
4c3adcb5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
164 additions
and
19 deletions
+164
-19
ci-scripts/main.py
ci-scripts/main.py
+80
-15
ci-scripts/xml_files/multi_rru_band38_build.xml
ci-scripts/xml_files/multi_rru_band38_build.xml
+29
-3
ci-scripts/xml_files/multi_rru_band38_full_termination.xml
ci-scripts/xml_files/multi_rru_band38_full_termination.xml
+53
-0
ci-scripts/xml_files/multi_rru_band38_test_10mhz_tm1.xml
ci-scripts/xml_files/multi_rru_band38_test_10mhz_tm1.xml
+2
-1
No files found.
ci-scripts/main.py
View file @
6c5feeba
...
...
@@ -113,6 +113,8 @@ class SSHConnection():
self
.
nbTestXMLfiles
=
0
self
.
desc
=
''
self
.
Build_eNB_args
=
''
self
.
backgroundBuild
=
False
self
.
backgroundBuildTestId
=
[
''
,
''
,
''
]
self
.
Initialize_eNB_args
=
''
self
.
eNB_instance
=
''
self
.
eNB_serverId
=
''
...
...
@@ -366,31 +368,75 @@ class SSHConnection():
self
.
command
(
'mkdir -p log'
,
'\$'
,
5
)
self
.
command
(
'chmod 777 log'
,
'\$'
,
5
)
# no need to remove in log (git clean did the trick)
self
.
command
(
'stdbuf -o0 ./build_oai '
+
self
.
Build_eNB_args
+
' 2>&1 | stdbuf -o0 tee compile_oai_enb.log'
,
'Bypassing the Tests|build have failed'
,
2000
)
if
self
.
backgroundBuild
:
self
.
command
(
'echo "./build_oai '
+
self
.
Build_eNB_args
+
'" > ./my-lte-softmodem-build.sh'
,
'\$'
,
5
)
self
.
command
(
'chmod 775 ./my-lte-softmodem-build.sh'
,
'\$'
,
5
)
self
.
command
(
'echo '
+
lPassWord
+
' | sudo -S -E daemon --inherit --unsafe --name=build_enb_daemon --chdir='
+
lSourcePath
+
'/cmake_targets -o '
+
lSourcePath
+
'/cmake_targets/compile_oai_enb.log ./my-lte-softmodem-build.sh'
,
'\$'
,
5
)
self
.
close
()
self
.
CreateHtmlTestRow
(
self
.
Build_eNB_args
,
'OK'
,
ALL_PROCESSES_OK
)
self
.
backgroundBuildTestId
[
int
(
self
.
eNB_instance
)]
=
self
.
testCase_id
return
self
.
command
(
'stdbuf -o0 ./build_oai '
+
self
.
Build_eNB_args
+
' 2>&1 | stdbuf -o0 tee compile_oai_enb.log'
,
'Bypassing the Tests|build have failed'
,
1500
)
self
.
checkBuildeNB
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
,
self
.
testCase_id
)
def
WaitBuildeNBisFinished
(
self
):
if
self
.
eNB_serverId
==
'0'
:
lIpAddr
=
self
.
eNBIPAddress
lUserName
=
self
.
eNBUserName
lPassWord
=
self
.
eNBPassword
lSourcePath
=
self
.
eNBSourceCodePath
elif
self
.
eNB_serverId
==
'1'
:
lIpAddr
=
self
.
eNB1IPAddress
lUserName
=
self
.
eNB1UserName
lPassWord
=
self
.
eNB1Password
lSourcePath
=
self
.
eNB1SourceCodePath
elif
self
.
eNB_serverId
==
'2'
:
lIpAddr
=
self
.
eNB2IPAddress
lUserName
=
self
.
eNB2UserName
lPassWord
=
self
.
eNB2Password
lSourcePath
=
self
.
eNB2SourceCodePath
if
lIpAddr
==
''
or
lUserName
==
''
or
lPassWord
==
''
or
lSourcePath
==
''
:
Usage
()
sys
.
exit
(
'Insufficient Parameter'
)
self
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
count
=
40
buildOAIprocess
=
True
while
(
count
>
0
)
and
buildOAIprocess
:
self
.
command
(
'ps aux | grep --color=never build_ | grep -v grep'
,
'\$'
,
3
)
result
=
re
.
search
(
'build_oai'
,
str
(
self
.
ssh
.
before
))
if
result
is
None
:
buildOAIprocess
=
False
else
:
count
-=
1
time
.
sleep
(
30
)
self
.
checkBuildeNB
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
,
self
.
backgroundBuildTestId
[
int
(
self
.
eNB_instance
)])
def
checkBuildeNB
(
self
,
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
,
testcaseId
):
self
.
command
(
'cd '
+
lSourcePath
+
'/cmake_targets'
,
'\$'
,
3
)
self
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
self
.
command
(
'ls lte_build_oai/build'
,
'\$'
,
3
)
buildStatus
=
True
result
=
re
.
search
(
'lte-softmodem'
,
str
(
self
.
ssh
.
before
))
if
result
is
None
:
buildStatus
=
False
self
.
command
(
'mkdir -p build_log_'
+
self
.
testCase_i
d
,
'\$'
,
5
)
self
.
command
(
'mv log/* '
+
'build_log_'
+
self
.
testCase_i
d
,
'\$'
,
5
)
self
.
command
(
'mv compile_oai_enb.log '
+
'build_log_'
+
self
.
testCase_i
d
,
'\$'
,
5
)
self
.
command
(
'mkdir -p build_log_'
+
testcaseI
d
,
'\$'
,
5
)
self
.
command
(
'mv log/* '
+
'build_log_'
+
testcaseI
d
,
'\$'
,
5
)
self
.
command
(
'mv compile_oai_enb.log '
+
'build_log_'
+
testcaseI
d
,
'\$'
,
5
)
if
self
.
eNB_serverId
!=
'0'
:
self
.
command
(
'cd cmake_targets'
,
'\$'
,
5
)
self
.
command
(
'if [ -e tmp_build'
+
self
.
testCase_id
+
'.zip ]; then rm -f tmp_build'
+
self
.
testCase_i
d
+
'.zip; fi'
,
'\$'
,
5
)
self
.
command
(
'zip -r -qq tmp_build'
+
self
.
testCase_id
+
'.zip build_log_'
+
self
.
testCase_i
d
,
'\$'
,
5
)
self
.
command
(
'if [ -e tmp_build'
+
testcaseId
+
'.zip ]; then rm -f tmp_build'
+
testcaseI
d
+
'.zip; fi'
,
'\$'
,
5
)
self
.
command
(
'zip -r -qq tmp_build'
+
testcaseId
+
'.zip build_log_'
+
testcaseI
d
,
'\$'
,
5
)
self
.
close
()
if
(
os
.
path
.
isfile
(
'./tmp_build'
+
self
.
testCase_i
d
+
'.zip'
)):
os
.
remove
(
'./tmp_build'
+
self
.
testCase_i
d
+
'.zip'
)
self
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
+
'/cmake_targets/tmp_build'
+
self
.
testCase_i
d
+
'.zip'
,
'.'
)
if
(
os
.
path
.
isfile
(
'./tmp_build'
+
self
.
testCase_i
d
+
'.zip'
)):
self
.
copyout
(
self
.
eNBIPAddress
,
self
.
eNBUserName
,
self
.
eNBPassword
,
'./tmp_build'
+
self
.
testCase_i
d
+
'.zip'
,
self
.
eNBSourceCodePath
+
'/cmake_targets/.'
)
os
.
remove
(
'./tmp_build'
+
self
.
testCase_i
d
+
'.zip'
)
if
(
os
.
path
.
isfile
(
'./tmp_build'
+
testcaseI
d
+
'.zip'
)):
os
.
remove
(
'./tmp_build'
+
testcaseI
d
+
'.zip'
)
self
.
copyin
(
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
+
'/cmake_targets/tmp_build'
+
testcaseI
d
+
'.zip'
,
'.'
)
if
(
os
.
path
.
isfile
(
'./tmp_build'
+
testcaseI
d
+
'.zip'
)):
self
.
copyout
(
self
.
eNBIPAddress
,
self
.
eNBUserName
,
self
.
eNBPassword
,
'./tmp_build'
+
testcaseI
d
+
'.zip'
,
self
.
eNBSourceCodePath
+
'/cmake_targets/.'
)
os
.
remove
(
'./tmp_build'
+
testcaseI
d
+
'.zip'
)
self
.
open
(
self
.
eNBIPAddress
,
self
.
eNBUserName
,
self
.
eNBPassword
)
self
.
command
(
'cd '
+
self
.
eNBSourceCodePath
+
'/cmake_targets'
,
'\$'
,
5
)
self
.
command
(
'unzip -qq -DD tmp_build'
+
self
.
testCase_i
d
+
'.zip'
,
'\$'
,
5
)
self
.
command
(
'rm -f tmp_build'
+
self
.
testCase_i
d
+
'.zip'
,
'\$'
,
5
)
self
.
command
(
'unzip -qq -DD tmp_build'
+
testcaseI
d
+
'.zip'
,
'\$'
,
5
)
self
.
command
(
'rm -f tmp_build'
+
testcaseI
d
+
'.zip'
,
'\$'
,
5
)
self
.
close
()
else
:
self
.
close
()
...
...
@@ -3678,7 +3724,7 @@ def Usage():
print
(
'------------------------------------------------------------'
)
def
CheckClassValidity
(
action
,
id
):
if
action
!=
'Build_eNB'
and
action
!=
'Initialize_eNB'
and
action
!=
'Terminate_eNB'
and
action
!=
'Initialize_UE'
and
action
!=
'Terminate_UE'
and
action
!=
'Attach_UE'
and
action
!=
'Detach_UE'
and
action
!=
'Build_OAI_UE'
and
action
!=
'Initialize_OAI_UE'
and
action
!=
'Terminate_OAI_UE'
and
action
!=
'DataDisable_UE'
and
action
!=
'DataEnable_UE'
and
action
!=
'CheckStatusUE'
and
action
!=
'Ping'
and
action
!=
'Iperf'
and
action
!=
'Reboot_UE'
and
action
!=
'Initialize_FlexranCtrl'
and
action
!=
'Terminate_FlexranCtrl'
and
action
!=
'Initialize_HSS'
and
action
!=
'Terminate_HSS'
and
action
!=
'Initialize_MME'
and
action
!=
'Terminate_MME'
and
action
!=
'Initialize_SPGW'
and
action
!=
'Terminate_SPGW'
and
action
!=
'Initialize_CatM_module'
and
action
!=
'Terminate_CatM_module'
and
action
!=
'Attach_CatM_module'
and
action
!=
'Detach_CatM_module'
and
action
!=
'Ping_CatM_module'
and
action
!=
'IdleSleep'
:
if
action
!=
'Build_eNB'
and
action
!=
'
WaitEndBuild_eNB'
and
action
!=
'
Initialize_eNB'
and
action
!=
'Terminate_eNB'
and
action
!=
'Initialize_UE'
and
action
!=
'Terminate_UE'
and
action
!=
'Attach_UE'
and
action
!=
'Detach_UE'
and
action
!=
'Build_OAI_UE'
and
action
!=
'Initialize_OAI_UE'
and
action
!=
'Terminate_OAI_UE'
and
action
!=
'DataDisable_UE'
and
action
!=
'DataEnable_UE'
and
action
!=
'CheckStatusUE'
and
action
!=
'Ping'
and
action
!=
'Iperf'
and
action
!=
'Reboot_UE'
and
action
!=
'Initialize_FlexranCtrl'
and
action
!=
'Terminate_FlexranCtrl'
and
action
!=
'Initialize_HSS'
and
action
!=
'Terminate_HSS'
and
action
!=
'Initialize_MME'
and
action
!=
'Terminate_MME'
and
action
!=
'Initialize_SPGW'
and
action
!=
'Terminate_SPGW'
and
action
!=
'Initialize_CatM_module'
and
action
!=
'Terminate_CatM_module'
and
action
!=
'Attach_CatM_module'
and
action
!=
'Detach_CatM_module'
and
action
!=
'Ping_CatM_module'
and
action
!=
'IdleSleep'
:
logging
.
debug
(
'ERROR: test-case '
+
id
+
' has wrong class '
+
action
)
return
False
return
True
...
...
@@ -3692,6 +3738,23 @@ def GetParametersFromXML(action):
SSH
.
eNB_serverId
=
test
.
findtext
(
'eNB_serverId'
)
if
(
SSH
.
eNB_serverId
is
None
):
SSH
.
eNB_serverId
=
'0'
xmlBgBuildField
=
test
.
findtext
(
'backgroundBuild'
)
if
(
xmlBgBuildField
is
None
):
SSH
.
backgroundBuild
=
False
else
:
if
re
.
match
(
'true'
,
xmlBgBuildField
,
re
.
IGNORECASE
):
SSH
.
backgroundBuild
=
True
else
:
SSH
.
backgroundBuild
=
False
if
action
==
'WaitEndBuild_eNB'
:
SSH
.
Build_eNB_args
=
test
.
findtext
(
'Build_eNB_args'
)
SSH
.
eNB_instance
=
test
.
findtext
(
'eNB_instance'
)
if
(
SSH
.
eNB_instance
is
None
):
SSH
.
eNB_instance
=
'0'
SSH
.
eNB_serverId
=
test
.
findtext
(
'eNB_serverId'
)
if
(
SSH
.
eNB_serverId
is
None
):
SSH
.
eNB_serverId
=
'0'
if
action
==
'Initialize_eNB'
:
SSH
.
Initialize_eNB_args
=
test
.
findtext
(
'Initialize_eNB_args'
)
...
...
@@ -4098,6 +4161,8 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
SSH
.
GetAllUEDevices
(
terminate_ue_flag
)
if
action
==
'Build_eNB'
:
SSH
.
BuildeNB
()
elif
action
==
'WaitEndBuild_eNB'
:
SSH
.
WaitBuildeNBisFinished
()
elif
action
==
'Initialize_eNB'
:
SSH
.
InitializeeNB
()
elif
action
==
'Terminate_eNB'
:
...
...
ci-scripts/xml_files/multi_rru_band38_build.xml
View file @
6c5feeba
...
...
@@ -25,9 +25,8 @@
<htmlTabName>
Build
</htmlTabName>
<htmlTabIcon>
wrench
</htmlTabIcon>
<TestCaseRequestedList>
010101
010102
010103
010101 010102 010103
000101 000102 000103
</TestCaseRequestedList>
<TestCaseExclusionList></TestCaseExclusionList>
...
...
@@ -37,6 +36,15 @@
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
<backgroundBuild>
True
</backgroundBuild>
</testCase>
<testCase
id=
"000101"
>
<class>
WaitEndBuild_eNB
</class>
<desc>
Wait for end of Build RCC
</desc>
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
</testCase>
<testCase
id=
"010102"
>
...
...
@@ -45,6 +53,15 @@
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
<backgroundBuild>
True
</backgroundBuild>
</testCase>
<testCase
id=
"000102"
>
<class>
WaitEndBuild_eNB
</class>
<desc>
Wait for end of Build Master RRU
</desc>
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
</testCase>
<testCase
id=
"010103"
>
...
...
@@ -53,6 +70,15 @@
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
2
</eNB_instance>
<eNB_serverId>
2
</eNB_serverId>
<backgroundBuild>
True
</backgroundBuild>
</testCase>
<testCase
id=
"000103"
>
<class>
WaitEndBuild_eNB
</class>
<desc>
Wait for end of Build Slave RRU
</desc>
<Build_eNB_args>
-w USRP -c --eNB
</Build_eNB_args>
<eNB_instance>
2
</eNB_instance>
<eNB_serverId>
2
</eNB_serverId>
</testCase>
</testCaseList>
ci-scripts/xml_files/multi_rru_band38_full_termination.xml
0 → 100644
View file @
6c5feeba
<!--
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>
test-full-termintation
</htmlTabRef>
<htmlTabName>
Test-RCC-RRUs-Termination
</htmlTabName>
<htmlTabIcon>
off
</htmlTabIcon>
<TestCaseRequestedList>
030211 030212 030213
</TestCaseRequestedList>
<TestCaseExclusionList></TestCaseExclusionList>
<testCase
id=
"030211"
>
<class>
Terminate_eNB
</class>
<desc>
Terminate RCC
</desc>
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
</testCase>
<testCase
id=
"030212"
>
<class>
Terminate_eNB
</class>
<desc>
Terminate Master RRU
</desc>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
</testCase>
<testCase
id=
"030213"
>
<class>
Terminate_eNB
</class>
<desc>
Terminate Slave RRU
</desc>
<eNB_instance>
2
</eNB_instance>
<eNB_serverId>
2
</eNB_serverId>
</testCase>
</testCaseList>
ci-scripts/xml_files/multi_rru_band38_test_10mhz_tm1.xml
View file @
6c5feeba
...
...
@@ -25,6 +25,7 @@
<htmlTabName>
Test-Multi-RRU-10MHz
</htmlTabName>
<htmlTabIcon>
tasks
</htmlTabIcon>
<TestCaseRequestedList>
030211 030212 030213
030111 030112 030113
000001
030211 030212 030213
...
...
@@ -34,7 +35,7 @@
<testCase
id=
"000001"
>
<class>
IdleSleep
</class>
<desc>
Sleep
</desc>
<idle_sleep_time_in_sec>
3
0
</idle_sleep_time_in_sec>
<idle_sleep_time_in_sec>
6
0
</idle_sleep_time_in_sec>
</testCase>
<testCase
id=
"030111"
>
...
...
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