Skip to content
Snippets Groups Projects
toCheckDSTesterResult1.py 2.25 KiB
Newer Older
ismail's avatar
ismail committed
#/*
# * 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
# */
#---------------------------------------------------------------------

import re
import sys
import subprocess
import yaml
import os
ismail's avatar
ismail committed

locexist = False
cwd = os.getcwd()
ismail's avatar
ismail committed
try:
    with open(cwd + '/DS-TEST-RESULTS/dsTester_Summary.txt') as f:
ismail's avatar
ismail committed
        for line in f:
            if re.search('Result file is available here', str(line)):
                result = re.search('(?:\/.+?\/)(.+?)(?:\/.+)', str(line))
                if result:
                    result1 = re.search('^(.*/)([^/]*)$', str(result.group(0)))
                    filename = re.search('[^/]*$', str(result1.group(0))) 
                    subprocess.check_output(f'cp {result1.group(1)}* DS-TEST-RESULTS/', stderr=subprocess.STDOUT, shell=True, universal_newlines=True)
ismail's avatar
ismail committed
                locexist = True
except IOError:
    sys.exit("File not accessible to check DSTester Summary: DS-TEST-RESULTS/dsTester_Summary.txt")
ismail's avatar
ismail committed

if locexist:
    try:
        with open(cwd + f'/DS-TEST-RESULTS/{filename.group(0)}') as f:
            data = yaml.full_load(f)
ismail's avatar
ismail committed
            if data["final-result"] == 'fail':
                sys.exit('DsTester final result FAILED')
ismail's avatar
ismail committed
    except IOError:
        sys.exit(f'File not accessible to check DSTester result: DS-TEST-RESULTS/{filename.group(0)}')