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
alex037yang
OpenXG-RAN
Commits
220445f1
Commit
220445f1
authored
Jul 22, 2020
by
Remi Hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wip : fr1 set up automation / fixing issues from recent changes
parent
4b48e457
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
12 deletions
+14
-12
ci-scripts/main.py
ci-scripts/main.py
+5
-5
ci-scripts/ran.py
ci-scripts/ran.py
+6
-5
ci-scripts/xml_files/fr1_multi_node_build.xml
ci-scripts/xml_files/fr1_multi_node_build.xml
+1
-0
ci-scripts/xml_files/fr1_toggle_cots_ue.xml
ci-scripts/xml_files/fr1_toggle_cots_ue.xml
+2
-2
No files found.
ci-scripts/main.py
View file @
220445f1
...
...
@@ -3320,9 +3320,9 @@ EPC = epc.EPCManagement()
RAN
=
ran
.
RANManagement
()
HTML
=
html
.
HTMLManagement
()
EPC
.
H
tmlObj
=
HTML
RAN
.
H
tmlObj
=
HTML
RAN
.
E
pcObj
=
EPC
EPC
.
h
tmlObj
=
HTML
RAN
.
h
tmlObj
=
HTML
RAN
.
e
pcObj
=
EPC
ldpc
=
cls_physim
.
PhySim
()
#create an instance for LDPC test using GPU or CPU build
...
...
@@ -3336,7 +3336,7 @@ ldpc=cls_physim.PhySim() #create an instance for LDPC test using GPU or CPU b
argvs
=
sys
.
argv
argc
=
len
(
argvs
)
cwd
=
os
.
getcwd
()
py_param_file_present
=
False
while
len
(
argvs
)
>
1
:
myArgv
=
argvs
.
pop
(
1
)
# 0th is this file's name
...
...
@@ -3352,7 +3352,7 @@ while len(argvs) > 1:
with
open
(
py_params_file
,
'r'
)
as
file
:
# The FullLoader parameter handles the conversion from YAML
# scalar values to Python dictionary format
py_params
=
yaml
.
load
(
file
,
Loader
=
yaml
.
FullLoader
)
py_params
=
yaml
.
load
(
file
,
Loader
=
yaml
.
FullLoader
)
py_param_file_present
=
True
#to be removed once validated
#AssignParams(py_params) #to be uncommented once validated
...
...
ci-scripts/ran.py
View file @
220445f1
...
...
@@ -274,7 +274,7 @@ class RANManagement():
if
self
.
Build_eNB_forced_workspace_cleanup
:
mySSH
.
command
(
'echo '
+
lPassWord
+
' | sudo -S rm -Rf '
+
lSourcePath
,
'\$'
,
15
)
if
self
.
htmlObj
is
not
None
:
self
.
testCase_id
=
self
.
htmlObj
.
GettestCase_id
()
self
.
testCase_id
=
self
.
htmlObj
.
testCase_id
else
:
self
.
testCase_id
=
'000000'
# on RedHat/CentOS .git extension is mandatory
...
...
@@ -388,7 +388,7 @@ class RANManagement():
def
checkBuildeNB
(
self
,
lIpAddr
,
lUserName
,
lPassWord
,
lSourcePath
,
testcaseId
):
if
self
.
htmlObj
is
not
None
:
self
.
htmlObj
.
SettestCase_id
(
testcaseId
)
self
.
htmlObj
.
testCase_id
=
testcaseId
mySSH
=
SSH
.
SSHConnection
()
mySSH
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
...
...
@@ -397,6 +397,7 @@ class RANManagement():
mySSH
.
command
(
'ls ran_build/build'
,
'\$'
,
3
)
#check if we have the build corresponding to the air interface keywords (nr-softmode, lte-softmodem, ocp-enb)
logging
.
info
(
'CHECK Build with IP='
+
lIpAddr
+
' SourcePath='
+
lSourcePath
)
result
=
re
.
search
(
self
.
air_interface
,
mySSH
.
getBefore
())
if
result
is
None
:
buildStatus
=
False
#if not, build failed
...
...
@@ -471,7 +472,7 @@ class RANManagement():
sys
.
exit
(
'Insufficient Parameter'
)
if
self
.
htmlObj
is
not
None
:
self
.
testCase_id
=
self
.
htmlObj
.
GettestCase_id
()
self
.
testCase_id
=
self
.
htmlObj
.
testCase_id
else
:
self
.
testCase_id
=
'000000'
mySSH
=
SSH
.
SSHConnection
()
...
...
@@ -762,7 +763,7 @@ class RANManagement():
if
(
copyin_res
==
-
1
):
logging
.
debug
(
'
\u001B
[1;37;41m Could not copy '
+
nodeB_prefix
+
'NB logfile to analyze it!
\u001B
[0m'
)
if
self
.
htmlObj
is
not
None
:
self
.
htmlObj
.
SetHmleNBFailureMsg
(
'Could not copy '
+
nodeB_prefix
+
'NB logfile to analyze it!'
)
self
.
htmlObj
.
HmleNBFailureMsg
=
'Could not copy '
+
nodeB_prefix
+
'NB logfile to analyze it!'
self
.
htmlObj
.
CreateHtmlTestRow
(
'N/A'
,
'KO'
,
CONST
.
ENB_PROCESS_NOLOGFILE_TO_ANALYZE
)
self
.
eNBmbmsEnables
[
int
(
self
.
eNB_instance
)]
=
False
return
...
...
@@ -1065,5 +1066,5 @@ class RANManagement():
htmleNBFailureMsg
+=
rlcMsg
+
'
\n
'
global_status
=
CONST
.
ENB_PROCESS_REALTIME_ISSUE
if
self
.
htmlObj
is
not
None
:
self
.
htmlObj
.
SetHmleNBFailureMsg
(
htmleNBFailureMsg
)
self
.
htmlObj
.
HmleNBFailureMsg
=
htmleNBFailureMsg
return
global_status
ci-scripts/xml_files/fr1_multi_node_build.xml
View file @
220445f1
...
...
@@ -60,4 +60,5 @@
<eNB_serverId>
1
</eNB_serverId>
</testCase>
</testCaseList>
ci-scripts/xml_files/fr1_toggle_cots_ue.xml
View file @
220445f1
...
...
@@ -21,8 +21,8 @@
-->
<testCaseList>
<htmlTabRef>
test-
toggle-
airplane-mode
</htmlTabRef>
<htmlTabName>
Airplane
</htmlTabName>
<htmlTabRef>
test-airplane-mode
</htmlTabRef>
<htmlTabName>
Airplane
Toggle
</htmlTabName>
<htmlTabIcon>
tasks
</htmlTabIcon>
<TestCaseRequestedList>
010000
...
...
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