Gilles Depatie | c68b3ad | 2018-08-21 16:29:03 -0400 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | |
| 3 | # |
| 4 | # Copyright 2018 the original author or authors. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | |
| 19 | """ |
| 20 | vOLT-HA Automated Testing module |
| 21 | """ |
| 22 | import os |
| 23 | import time |
| 24 | import argparse |
| 25 | import volthaMngr |
| 26 | import preprovisioningTest |
| 27 | |
| 28 | DEFAULT_LOG_DIR = '/tmp/voltha_test_results' |
| 29 | |
| 30 | def runOnos(): |
| 31 | os.system('docker-compose -f compose/docker-compose-auth-test.yml' |
| 32 | ' up -d onos freeradius' + ' > /dev/null 2>&1') |
| 33 | |
| 34 | |
| 35 | def dirInit(logDir=DEFAULT_LOG_DIR, |
| 36 | volthaDir=os.environ['VOLTHA_BASE']): |
| 37 | print(__file__) |
| 38 | """ |
| 39 | Init automated testing environment and return three directories: root dir, |
| 40 | voltha sources dir and log dir |
| 41 | """ |
| 42 | |
| 43 | rootDir = os.path.abspath(os.path.dirname(__file__)) |
| 44 | |
| 45 | currentTime = time.strftime("%Y-%m-%d-%H-%M-%S") |
| 46 | |
| 47 | # In future in order to keep the history of jobs, the run time should be |
| 48 | # added to the log directory name |
| 49 | # logDir += '_' + currentTime |
| 50 | |
| 51 | os.system('mkdir -p ' + logDir + ' > /dev/null 2>&1') |
| 52 | os.system('rm -rf %s/*' + logDir) |
| 53 | print('Start Provisioning Test at: %s\nRoot Directory: %s\n' |
| 54 | 'VOLTHA Directory: %s\nLog Directory: %s' % |
| 55 | (currentTime, rootDir, volthaDir, logDir)) |
| 56 | |
| 57 | return rootDir, volthaDir, logDir |
| 58 | |
| 59 | |
| 60 | # |
| 61 | # MAIN |
| 62 | # |
| 63 | if __name__ == "__main__": |
| 64 | """ |
| 65 | Main entry point of the automated testing when executed directly |
| 66 | """ |
| 67 | |
| 68 | parser = argparse.ArgumentParser(description='VOLTHA Automated Testing') |
| 69 | parser.add_argument('-l', dest='logDir', default=DEFAULT_LOG_DIR, |
| 70 | help='log directory (default: %s).' % DEFAULT_LOG_DIR) |
| 71 | args = parser.parse_args() |
| 72 | |
| 73 | ROOT_DIR, VOLTHA_DIR, LOG_DIR = dirInit(args.logDir) |
| 74 | |
| 75 | volthaMngr.voltha_Initialize(ROOT_DIR, VOLTHA_DIR, LOG_DIR) |
| 76 | |
| 77 | runOnos() |
| 78 | |
| 79 | preprovisioningTest.runTest('172.17.0.1', 50060, LOG_DIR) |
| 80 | |
| 81 | time.sleep(5) |