mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
After having transitioned to direct node names in the XML, these
parameters are not relevant anymore.
The best way to view this patch is with
git show <SHA> --ignore-all-space
62 lines
3.2 KiB
Python
62 lines
3.2 KiB
Python
#/*
|
|
# * 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
|
|
# */
|
|
#---------------------------------------------------------------------
|
|
# Python for CI of OAI-eNB + COTS-UE
|
|
#
|
|
# Required Python Version
|
|
# Python 3.x
|
|
#
|
|
# Required Python Package
|
|
# pexpect
|
|
#---------------------------------------------------------------------
|
|
|
|
#-----------------------------------------------------------
|
|
# Functions Declaration
|
|
#-----------------------------------------------------------
|
|
|
|
def GenericHelp(vers):
|
|
print('----------------------------------------------------------------------------------------------------------------------')
|
|
print('main.py Ver: ' + vers)
|
|
print('----------------------------------------------------------------------------------------------------------------------')
|
|
print('python main.py [options]')
|
|
print(' --help Show this help.')
|
|
print(' --mode=[Mode]')
|
|
print(' TesteNB')
|
|
print(' InitiateHtml, FinalizeHtml')
|
|
print(' TerminateeNB, TerminateHSS, TerminateMME, TerminateSPGW')
|
|
print(' --local Force local execution: rewrites the test xml script before running to always execute on localhost. Assumes')
|
|
print(' images are available locally, will not remove any images and will run inside the current repo directory')
|
|
|
|
def GitSrvHelp(repository,branch,commit,mergeallow,targetbranch):
|
|
print(' --ranRepository=[OAI RAN Repository URL] -- ' + repository)
|
|
print(' --ranBranch=[OAI RAN Repository Branch] -- ' + branch)
|
|
print(' --ranCommitID=[OAI RAN Repository Commit SHA-1] -- ' + commit)
|
|
print(' --ranAllowMerge=[Allow Merge Request (with target branch) (true or false)] -- ' + mergeallow)
|
|
print(' --ranTargetBranch=[Target Branch in case of a Merge Request] -- ' + targetbranch)
|
|
|
|
def eNBSrvHelp(sourcepath):
|
|
print(' --eNBSourceCodePath=[eNB\'s Source Code Path] -- ' + sourcepath)
|
|
|
|
def XmlHelp(filename):
|
|
print(' --XMLTestFile=[XML Test File to be run] -- ' + filename)
|
|
print(' Note: multiple xml files can be specified (--XMLFile=File1 ... --XMLTestFile=FileN) when HTML headers are created ("InitiateHtml" mode)')
|
|
|