blob: 235040b5c9be7be658bfb841410688171d6eb8b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
##############################################################################
# Copyright (c) 2015 Dell Inc and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import sys
import os
from func.env_setup import Env_setup
from func.driver import Driver
from func.spawn_vm import SpawnVM
import argparse
class cli():
def __init__(self):
parser = argparse.ArgumentParser()
parser.add_argument('-s ', '--suite', help='compute network storage ')
parser.add_argument('-b', '--benchmark',
help='''COMPUTE:
dhrystone_serial.yaml \n
dhrystone_paralle.yaml \n
whetstone_serial.yaml \n
whetstone_parllel.yaml \n
dpi_serial.yaml \n
dpi_paralle.yaml \n
ssl_serial.yaml \n
ssl_parallel.yaml ''')
args = parser.parse_args()
if not (args.suite or args.benchmark):
parser.error('Not enough arguments, -h, --help ')
sys.exit(0)
if (args.suite and args.benchmark):
obj = Env_setup()
if os.path.isfile(
'./test_cases/' +
args.suite +
'/' +
args.benchmark):
[benchmark, roles, vm_info] = obj.parse(
'./test_cases/' + args.suite + '/' + args.benchmark)
if len(vm_info) != 0:
vmObj = SpawnVM(vm_info)
obj.callpingtest()
obj.callsshtest()
obj.updateAnsible()
dvr = Driver()
dvr.drive_bench(benchmark, obj.roles_dict.items())
else:
print (args.benchmark, ' is not a Template in the Directory - \
Enter a Valid file name. or use qtip.py -h for list')
|