delete useless FUNCTEST_REPO variable
[functest.git] / testcases / features / promise.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2015 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Maintainer : jose.lausuch@ericsson.com
11 #
12 import argparse
13 import json
14 import os
15 import subprocess
16 import time
17
18 import functest.utils.functest_logger as ft_logger
19 import functest.utils.functest_utils as functest_utils
20 import functest.utils.openstack_utils as openstack_utils
21 import keystoneclient.v2_0.client as ksclient
22 from neutronclient.v2_0 import client as ntclient
23 import novaclient.client as nvclient
24 import yaml
25
26
27 parser = argparse.ArgumentParser()
28
29 parser.add_argument("-d", "--debug", help="Debug mode", action="store_true")
30 parser.add_argument("-r", "--report",
31                     help="Create json result file",
32                     action="store_true")
33 args = parser.parse_args()
34
35 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:
36     functest_yaml = yaml.safe_load(f)
37
38 dirs = functest_yaml.get('general').get('directories')
39 PROMISE_REPO = dirs.get('dir_repo_promise')
40 TEST_DB = functest_yaml.get('results').get('test_db_url')
41
42 TENANT_NAME = functest_yaml.get('promise').get('general').get('tenant_name')
43 TENANT_DESCRIPTION = functest_yaml.get('promise').get(
44     'general').get('tenant_description')
45 USER_NAME = functest_yaml.get('promise').get('general').get('user_name')
46 USER_PWD = functest_yaml.get('promise').get('general').get('user_pwd')
47 IMAGE_NAME = functest_yaml.get('promise').get('general').get('image_name')
48 FLAVOR_NAME = functest_yaml.get('promise').get('general').get('flavor_name')
49 FLAVOR_VCPUS = functest_yaml.get('promise').get('general').get('flavor_vcpus')
50 FLAVOR_RAM = functest_yaml.get('promise').get('general').get('flavor_ram')
51 FLAVOR_DISK = functest_yaml.get('promise').get('general').get('flavor_disk')
52
53
54 GLANCE_IMAGE_FILENAME = functest_yaml.get('general').get('openstack').get(
55     'image_file_name')
56 GLANCE_IMAGE_FORMAT = functest_yaml.get('general').get('openstack').get(
57     'image_disk_format')
58 GLANCE_IMAGE_PATH = functest_yaml.get('general').get('directories').get(
59     'dir_functest_data') + "/" + GLANCE_IMAGE_FILENAME
60
61 NET_NAME = functest_yaml.get('promise').get('general').get('network_name')
62 SUBNET_NAME = functest_yaml.get('promise').get('general').get('subnet_name')
63 SUBNET_CIDR = functest_yaml.get('promise').get('general').get('subnet_cidr')
64 ROUTER_NAME = functest_yaml.get('promise').get('general').get('router_name')
65
66
67 """ logging configuration """
68 logger = ft_logger.Logger("promise").getLogger()
69
70
71 def main():
72     exit_code = -1
73     start_time = time.time()
74     ks_creds = openstack_utils.get_credentials("keystone")
75     nv_creds = openstack_utils.get_credentials("nova")
76     nt_creds = openstack_utils.get_credentials("neutron")
77
78     keystone = ksclient.Client(**ks_creds)
79
80     user_id = openstack_utils.get_user_id(keystone, ks_creds['username'])
81     if user_id == '':
82         logger.error("Error : Failed to get id of %s user" %
83                      ks_creds['username'])
84         exit(-1)
85
86     logger.info("Creating tenant '%s'..." % TENANT_NAME)
87     tenant_id = openstack_utils.create_tenant(
88         keystone, TENANT_NAME, TENANT_DESCRIPTION)
89     if not tenant_id:
90         logger.error("Error : Failed to create %s tenant" % TENANT_NAME)
91         exit(-1)
92     logger.debug("Tenant '%s' created successfully." % TENANT_NAME)
93
94     roles_name = ["admin", "Admin"]
95     role_id = ''
96     for role_name in roles_name:
97         if role_id == '':
98             role_id = openstack_utils.get_role_id(keystone, role_name)
99
100     if role_id == '':
101         logger.error("Error : Failed to get id for %s role" % role_name)
102         exit(-1)
103
104     logger.info("Adding role '%s' to tenant '%s'..." % (role_id, TENANT_NAME))
105     if not openstack_utils.add_role_user(keystone, user_id,
106                                          role_id, tenant_id):
107         logger.error("Error : Failed to add %s on tenant %s" %
108                      (ks_creds['username'], TENANT_NAME))
109         exit(-1)
110     logger.debug("Role added successfully.")
111
112     logger.info("Creating user '%s'..." % USER_NAME)
113     user_id = openstack_utils.create_user(
114         keystone, USER_NAME, USER_PWD, None, tenant_id)
115
116     if not user_id:
117         logger.error("Error : Failed to create %s user" % USER_NAME)
118         exit(-1)
119     logger.debug("User '%s' created successfully." % USER_NAME)
120
121     logger.info("Updating OpenStack credentials...")
122     ks_creds.update({
123         "username": TENANT_NAME,
124         "password": TENANT_NAME,
125         "tenant_name": TENANT_NAME,
126     })
127
128     nt_creds.update({
129         "tenant_name": TENANT_NAME,
130     })
131
132     nv_creds.update({
133         "project_id": TENANT_NAME,
134     })
135
136     glance = openstack_utils.get_glance_client()
137     nova = nvclient.Client("2", **nv_creds)
138
139     logger.info("Creating image '%s' from '%s'..." % (IMAGE_NAME,
140                                                       GLANCE_IMAGE_PATH))
141     image_id = openstack_utils.create_glance_image(glance,
142                                                    IMAGE_NAME,
143                                                    GLANCE_IMAGE_PATH)
144     if not image_id:
145         logger.error("Failed to create the Glance image...")
146         exit(-1)
147     logger.debug("Image '%s' with ID '%s' created successfully." % (IMAGE_NAME,
148                                                                     image_id))
149     flavor_id = openstack_utils.get_flavor_id(nova, FLAVOR_NAME)
150     if flavor_id == '':
151         logger.info("Creating flavor '%s'..." % FLAVOR_NAME)
152         flavor_id = openstack_utils.create_flavor(nova,
153                                                   FLAVOR_NAME,
154                                                   FLAVOR_RAM,
155                                                   FLAVOR_DISK,
156                                                   FLAVOR_VCPUS)
157         if not flavor_id:
158             logger.error("Failed to create the Flavor...")
159             exit(-1)
160         logger.debug("Flavor '%s' with ID '%s' created successfully." %
161                      (FLAVOR_NAME, flavor_id))
162     else:
163         logger.debug("Using existing flavor '%s' with ID '%s'..."
164                      % (FLAVOR_NAME, flavor_id))
165
166     neutron = ntclient.Client(**nt_creds)
167
168     network_dic = openstack_utils.create_network_full(neutron,
169                                                       NET_NAME,
170                                                       SUBNET_NAME,
171                                                       ROUTER_NAME,
172                                                       SUBNET_CIDR)
173     if not network_dic:
174         logger.error("Failed to create the private network...")
175         exit(-1)
176
177     logger.info("Exporting environment variables...")
178     os.environ["NODE_ENV"] = "functest"
179     os.environ["OS_TENANT_NAME"] = TENANT_NAME
180     os.environ["OS_USERNAME"] = USER_NAME
181     os.environ["OS_PASSWORD"] = USER_PWD
182     os.environ["OS_TEST_IMAGE"] = image_id
183     os.environ["OS_TEST_FLAVOR"] = flavor_id
184     os.environ["OS_TEST_NETWORK"] = network_dic["net_id"]
185
186     os.chdir(PROMISE_REPO)
187     results_file_name = 'promise-results.json'
188     results_file = open(results_file_name, 'w+')
189     cmd = 'npm run -s test -- --reporter json'
190
191     logger.info("Running command: %s" % cmd)
192     ret = subprocess.call(cmd, shell=True, stdout=results_file,
193                           stderr=subprocess.STDOUT)
194     results_file.close()
195
196     if ret == 0:
197         logger.info("The test succeeded.")
198         # test_status = 'OK'
199     else:
200         logger.info("The command '%s' failed." % cmd)
201         # test_status = "Failed"
202
203     # Print output of file
204     with open(results_file_name, 'r') as results_file:
205         data = results_file.read()
206         logger.debug("\n%s" % data)
207         json_data = json.loads(data)
208
209         suites = json_data["stats"]["suites"]
210         tests = json_data["stats"]["tests"]
211         passes = json_data["stats"]["passes"]
212         pending = json_data["stats"]["pending"]
213         failures = json_data["stats"]["failures"]
214         start_time_json = json_data["stats"]["start"]
215         end_time = json_data["stats"]["end"]
216         duration = float(json_data["stats"]["duration"]) / float(1000)
217
218     logger.info("\n"
219                 "****************************************\n"
220                 "          Promise test report\n\n"
221                 "****************************************\n"
222                 " Suites:  \t%s\n"
223                 " Tests:   \t%s\n"
224                 " Passes:  \t%s\n"
225                 " Pending: \t%s\n"
226                 " Failures:\t%s\n"
227                 " Start:   \t%s\n"
228                 " End:     \t%s\n"
229                 " Duration:\t%s\n"
230                 "****************************************\n\n"
231                 % (suites, tests, passes, pending, failures,
232                    start_time_json, end_time, duration))
233
234     if args.report:
235         stop_time = time.time()
236         json_results = {"timestart": start_time, "duration": duration,
237                         "tests": int(tests), "failures": int(failures)}
238         logger.debug("Promise Results json: " + str(json_results))
239
240         # criteria for Promise in Release B was 100% of tests OK
241         status = "FAIL"
242         if int(tests) > 32 and int(failures) < 1:
243             status = "PASS"
244             exit_code = 0
245
246         functest_utils.push_results_to_db("promise",
247                                           "promise",
248                                           logger,
249                                           start_time,
250                                           stop_time,
251                                           status,
252                                           json_results)
253
254     exit(exit_code)
255
256
257 if __name__ == '__main__':
258     main()