summaryrefslogtreecommitdiffstats
path: root/tests/unit/api/metric_controller_test.py
blob: caba7972290d445cf2d621e0b094653f47baf74a (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
##############################################################################
# Copyright (c) 2017 akhil.batra@research.iiit.ac.in 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 httplib
import json

from qtip.base.constant import BaseProp


def test_get_list_metrics(app_client):
    response_success = app_client.get("/v1.0/metrics")
    assert response_success.status_code == httplib.OK
    metric_list = json.loads(response_success.data)['metrics']
    assert len(metric_list) > 0
    assert metric_list[0].endswith('.yaml')


def test_get_metric(app_client):
    response_success = app_client.get("/v1.0/metrics/dpi.yaml")
    assert response_success.status_code == httplib.OK
    metric_data = json.loads(response_success.data)
    assert BaseProp.NAME in metric_data
    assert BaseProp.WORKLOADS in metric_data
    assert isinstance(metric_data[BaseProp.WORKLOADS], list)


def test_get_metric_not_found(app_client):
    response_not_found = app_client.get("/v1.0/metrics/fake.yaml")
    response_data = json.loads(response_not_found.data)
    assert response_not_found.status_code == httplib.NOT_FOUND
    assert response_data['title'] == "Metric not found"