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
spbro
OpenXG-RAN
Commits
4c20e941
Commit
4c20e941
authored
May 24, 2024
by
Bipin Adhikari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Crated xml test class for Create_Workspace, and made necessary changes to one xml case
parent
ef0f5c66
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
84 additions
and
3 deletions
+84
-3
ci-scripts/cls_containerize.py
ci-scripts/cls_containerize.py
+66
-0
ci-scripts/main.py
ci-scripts/main.py
+3
-1
ci-scripts/xml_class_list.yml
ci-scripts/xml_class_list.yml
+1
-0
ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
...ipts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
+14
-2
No files found.
ci-scripts/cls_containerize.py
View file @
4c20e941
...
...
@@ -61,6 +61,8 @@ import cls_oaicitest
IMAGES
=
[
'oai-enb'
,
'oai-lte-ru'
,
'oai-lte-ue'
,
'oai-gnb'
,
'oai-nr-cuup'
,
'oai-gnb-aw2s'
,
'oai-nr-ue'
,
'oai-gnb-asan'
,
'oai-nr-ue-asan'
,
'oai-nr-cuup-asan'
,
'oai-gnb-aerial'
]
def
CreateWorkspace
(
sshSession
,
sourcePath
,
ranRepository
,
ranCommitID
,
ranTargetBranch
,
ranAllowMerge
):
print
(
'-------------------------------------------------- Skipping Old Create Workspace'
)
return
if
ranCommitID
==
''
:
logging
.
error
(
'need ranCommitID in CreateWorkspace()'
)
sys
.
exit
(
'Insufficient Parameter in CreateWorkspace()'
)
...
...
@@ -856,6 +858,70 @@ class Containerize():
HTML
.
CreateHtmlTestRow
(
'N/A'
,
'OK'
,
CONST
.
ALL_PROCESSES_OK
)
return
True
def
Create_Workspace
(
self
):
print
(
'-------------------------------new Create Workspace Function'
)
print
(
"running on server id"
,
self
.
eNB_serverId
)
if
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'0'
:
lIpAddr
=
self
.
eNBIPAddress
lUserName
=
self
.
eNBUserName
lPassWord
=
self
.
eNBPassword
lSourcePath
=
self
.
eNBSourceCodePath
elif
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'1'
:
lIpAddr
=
self
.
eNB1IPAddress
lUserName
=
self
.
eNB1UserName
lPassWord
=
self
.
eNB1Password
lSourcePath
=
self
.
eNB1SourceCodePath
elif
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'2'
:
lIpAddr
=
self
.
eNB2IPAddress
lUserName
=
self
.
eNB2UserName
lPassWord
=
self
.
eNB2Password
lSourcePath
=
self
.
eNB2SourceCodePath
if
lIpAddr
==
''
or
lUserName
==
''
or
lPassWord
==
''
or
lSourcePath
==
''
:
HELP
.
GenericHelp
(
CONST
.
Version
)
sys
.
exit
(
'Insufficient Parameter'
)
sshSession
=
SSH
.
SSHConnection
()
sshSession
.
open
(
lIpAddr
,
lUserName
,
lPassWord
)
ranCommitID
=
self
.
ranCommitID
ranRepository
=
self
.
ranRepository
sourcePath
=
lSourcePath
ranTargetBranch
=
self
.
ranTargetBranch
ranAllowMerge
=
self
.
ranAllowMerge
if
ranCommitID
==
''
:
logging
.
error
(
'need ranCommitID in CreateWorkspace()'
)
sys
.
exit
(
'Insufficient Parameter in CreateWorkspace()'
)
sshSession
.
command
(
f'rm -rf
{
sourcePath
}
'
,
'\$'
,
10
)
sshSession
.
command
(
'mkdir -p '
+
sourcePath
,
'\$'
,
5
)
sshSession
.
command
(
'cd '
+
sourcePath
,
'\$'
,
5
)
# Recent version of git (>2.20?) should handle missing .git extension # without problems
if
ranTargetBranch
==
'null'
:
ranTargetBranch
=
'develop'
baseBranch
=
re
.
sub
(
'origin/'
,
''
,
ranTargetBranch
)
sshSession
.
command
(
f'git clone --filter=blob:none -n -b
{
baseBranch
}
{
ranRepository
}
.'
,
'\$'
,
60
)
if
sshSession
.
getBefore
().
count
(
'error'
)
>
0
or
sshSession
.
getBefore
().
count
(
'error'
)
>
0
:
sys
.
exit
(
'error during clone'
)
sshSession
.
command
(
'git config user.email "jenkins@openairinterface.org"'
,
'\$'
,
5
)
sshSession
.
command
(
'git config user.name "OAI Jenkins"'
,
'\$'
,
5
)
sshSession
.
command
(
'mkdir -p cmake_targets/log'
,
'\$'
,
5
)
# if the commit ID is provided use it to point to it
sshSession
.
command
(
f'git checkout -f
{
ranCommitID
}
'
,
'\$'
,
30
)
if
sshSession
.
getBefore
().
count
(
f'HEAD is now at
{
ranCommitID
[:
6
]
}
'
)
!=
1
:
sshSession
.
command
(
'git log --oneline | head -n5'
,
'\$'
,
5
)
logging
.
warning
(
f'problems during checkout, is at:
{
sshSession
.
getBefore
()
}
'
)
else
:
logging
.
debug
(
'successful checkout'
)
# if the branch is not develop, then it is a merge request and we need to do
# the potential merge. Note that merge conflicts should already been checked earlier
if
ranAllowMerge
:
if
ranTargetBranch
==
''
:
ranTargetBranch
=
'develop'
logging
.
debug
(
f'Merging with the target branch:
{
ranTargetBranch
}
'
)
sshSession
.
command
(
f'git merge --ff origin/
{
ranTargetBranch
}
-m "Temporary merge for CI"'
,
'\$'
,
30
)
print
(
'---------------------------------------End of Function new Create_Workspace'
)
def
DeployObject
(
self
,
HTML
,
EPC
):
if
self
.
eNB_serverId
[
self
.
eNB_instance
]
==
'0'
:
lIpAddr
=
self
.
eNBIPAddress
...
...
ci-scripts/main.py
View file @
4c20e941
...
...
@@ -343,7 +343,7 @@ def GetParametersFromXML(action):
if
(
string_field
is
not
None
):
EPC
.
cfgUnDeploy
=
string_field
elif
action
==
'Deploy_Object'
or
action
==
'Undeploy_Object'
:
elif
action
==
'Deploy_Object'
or
action
==
'Undeploy_Object'
or
action
==
"Create_Workspace"
:
eNB_instance
=
test
.
findtext
(
'eNB_instance'
)
if
(
eNB_instance
is
None
):
CONTAINERS
.
eNB_instance
=
0
...
...
@@ -848,6 +848,8 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
success
=
CONTAINERS
.
Clean_Test_Server_Images
(
HTML
)
if
not
success
:
RAN
.
prematureExit
=
True
elif
action
==
'Create_Workspace'
:
CONTAINERS
.
Create_Workspace
()
elif
action
==
'Deploy_Object'
:
CONTAINERS
.
DeployObject
(
HTML
,
EPC
)
if
CONTAINERS
.
exitStatus
==
1
:
...
...
ci-scripts/xml_class_list.yml
View file @
4c20e941
...
...
@@ -47,3 +47,4 @@
-
Pull_Local_Registry
-
Clean_Test_Server_Images
-
Custom_Command
-
Create_Workspace
\ No newline at end of file
ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
View file @
4c20e941
...
...
@@ -29,8 +29,10 @@
100001
111110
111111
800813
030111
000001
800814
030311
000002
040511 040613 040616 040651
...
...
@@ -78,7 +80,12 @@
<node>
carabe
</node>
<command>
sudo cpupower idle-set -E
</command>
</testCase>
<testCase
id=
"800813"
>
<class>
Create_Workspace
</class>
<desc>
Creating new Workspace for server 0
</desc>
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
</testCase>
<testCase
id=
"030111"
>
<class>
Deploy_Object
</class>
<desc>
Deploy eNB (FDD/Band7/10MHz/B200) in a container
</desc>
...
...
@@ -86,7 +93,12 @@
<eNB_instance>
0
</eNB_instance>
<eNB_serverId>
0
</eNB_serverId>
</testCase>
<testCase
id=
"800814"
>
<class>
Create_Workspace
</class>
<desc>
Creating new Workspace for server 1
</desc>
<eNB_instance>
1
</eNB_instance>
<eNB_serverId>
1
</eNB_serverId>
</testCase>
<testCase
id=
"030311"
>
<class>
Deploy_Object
</class>
<desc>
Deploy LTE-UE (FDD/Band7/10MHz/B200) in a container
</desc>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment