Merge "Update missing license headers"
[yardstick.git] / tests / unit / apiserver / resources / test_env_action.py
1 ##############################################################################
2 # Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. 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 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from __future__ import absolute_import
10
11 import time
12 import unittest
13
14 from tests.unit.apiserver import APITestCase
15
16
17 class EnvTestCase(APITestCase):
18
19     def test_create_grafana(self):
20         url = 'yardstick/env/action'
21         data = {'action': 'createGrafanaContainer'}
22         resp = self._post(url, data)
23
24         time.sleep(1)
25
26         task_id = resp['result']['task_id']
27         url = '/yardstick/asynctask?task_id={}'.format(task_id)
28         resp = self._get(url)
29
30         time.sleep(2)
31
32         self.assertTrue(u'status' in resp)
33
34
35 def main():
36     unittest.main()
37
38
39 if __name__ == '__main__':
40     main()