aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/apiserver/__init__.py
blob: 02141529689542327bb4d48a8280cb8ce006173c (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
from __future__ import absolute_import

import os
import unittest
import tempfile

from oslo_serialization import jsonutils

from yardstick.common import constants as consts


class APITestCase(unittest.TestCase):

    def setUp(self):
        self.db_fd, self.db_path = tempfile.mkstemp()
        consts.SQLITE = 'sqlite:///{}'.format(self.db_path)
        from api import server

        server.app.config['TESTING'] = True
        self.app = server.app.test_client()

        server.init_db()

    def tearDown(self):
        os.close(self.db_fd)
        os.unlink(self.db_path)

    def _post(self, url, data):
        headers = {'Content-Type': 'application/json'}
        resp = self.app.post(url, data=jsonutils.dumps(data), headers=headers)
        return jsonutils.loads(resp.data)

    def _get(self, url):
        resp = self.app.get(url)
        return jsonutils.loads(resp.data)