summaryrefslogtreecommitdiff
path: root/ceilometerclient/tests/unit/v2/test_query_samples.py
blob: 217c35a098b0cd742b0897f1992b5bee81593812 (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
61
62
63
64
65
66
67
# Copyright Ericsson AB 2014. All rights reserved
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

from ceilometerclient.apiclient import client
from ceilometerclient.apiclient import fake_client
from ceilometerclient.tests.unit import utils
from ceilometerclient.v2 import query


SAMPLE = {u'id': u'b55d1526-9929-11e3-a3f6-02163e5df1e6',
          u'metadata': {
              u'name1': u'value1',
              u'name2': u'value2'},
          u'meter': 'instance',
          u'project_id': u'35b17138-b364-4e6a-a131-8f3099c5be68',
          u'resource_id': u'bd9431c1-8d69-4ad3-803a-8d4a6b89fd36',
          u'source': u'openstack',
          u'timestamp': u'2014-02-19T05:50:16.673604',
          u'type': u'gauge',
          u'unit': u'instance',
          u'volume': 1,
          u'user_id': 'efd87807-12d2-4b38-9c70-5f5c2ac427ff'}

QUERY = {"filter": {"and": [{"=": {"source": "openstack"}},
                            {">": {"timestamp": "2014-02-19T05:50:16"}}]},
         "orderby": [{"timestamp": "desc"}, {"volume": "asc"}],
         "limit": 10}

base_url = '/v2/query/samples'
fixtures = {
    base_url:
    {
        'POST': (
            {},
            [SAMPLE],
        ),
    },
}


class QuerySamplesManagerTest(utils.BaseTestCase):

    def setUp(self):
        super(QuerySamplesManagerTest, self).setUp()
        self.http_client = fake_client.FakeHTTPClient(fixtures=fixtures)
        self.api = client.BaseClient(self.http_client)
        self.mgr = query.QuerySamplesManager(self.api)

    def test_query(self):
        samples = self.mgr.query(**QUERY)
        expect = [

            'POST', '/v2/query/samples', QUERY,
        ]
        self.http_client.assert_called(*expect)
        self.assertEqual(1, len(samples))