summaryrefslogtreecommitdiff
path: root/ceilometer/tests/unit/test_middleware.py
blob: 81017b84331fa8700bfd5be5f1d278d06bdb5fe3 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#
# Copyright 2013-2014 eNovance
#
# 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 unittest import mock

from ceilometer import middleware
from ceilometer import service
from ceilometer.tests import base


HTTP_REQUEST = {
    u'ctxt': {u'auth_token': u'3d8b13de1b7d499587dfc69b77dc09c2',
              u'is_admin': True,
              u'project_id': u'7c150a59fe714e6f9263774af9688f0e',
              u'quota_class': None,
              u'read_deleted': u'no',
              u'remote_address': u'10.0.2.15',
              u'request_id': u'req-d68b36e0-9233-467f-9afb-d81435d64d66',
              u'roles': [u'admin'],
              u'timestamp': u'2012-05-08T20:23:41.425105',
              u'user_id': u'1e3ce043029547f1a61c1996d1a531a2'},
    u'event_type': u'http.request',
    u'payload': {u'request': {'HTTP_X_FOOBAR': 'foobaz',
                              'HTTP_X_USER_ID': 'jd-x32',
                              'HTTP_X_PROJECT_ID': 'project-id',
                              'HTTP_X_SERVICE_NAME': 'nova'}},
    u'priority': u'INFO',
    u'publisher_id': u'compute.vagrant-precise',
    u'metadata': {u'message_id': u'dae6f69c-00e0-41c0-b371-41ec3b7f4451',
                  u'timestamp': u'2012-05-08 20:23:48.028195'},
}

HTTP_RESPONSE = {
    u'ctxt': {u'auth_token': u'3d8b13de1b7d499587dfc69b77dc09c2',
              u'is_admin': True,
              u'project_id': u'7c150a59fe714e6f9263774af9688f0e',
              u'quota_class': None,
              u'read_deleted': u'no',
              u'remote_address': u'10.0.2.15',
              u'request_id': u'req-d68b36e0-9233-467f-9afb-d81435d64d66',
              u'roles': [u'admin'],
              u'timestamp': u'2012-05-08T20:23:41.425105',
              u'user_id': u'1e3ce043029547f1a61c1996d1a531a2'},
    u'event_type': u'http.response',
    u'payload': {u'request': {'HTTP_X_FOOBAR': 'foobaz',
                              'HTTP_X_USER_ID': 'jd-x32',
                              'HTTP_X_PROJECT_ID': 'project-id',
                              'HTTP_X_SERVICE_NAME': 'nova'},
                 u'response': {'status': '200 OK'}},
    u'priority': u'INFO',
    u'publisher_id': u'compute.vagrant-precise',
    u'metadata': {u'message_id': u'dae6f69c-00e0-41c0-b371-41ec3b7f4451',
                  u'timestamp': u'2012-05-08 20:23:48.028195'},
}


class TestNotifications(base.BaseTestCase):

    def setUp(self):
        super(TestNotifications, self).setUp()
        self.CONF = service.prepare_service([], [])
        self.setup_messaging(self.CONF)

    def test_process_request_notification(self):
        sample = list(middleware.HTTPRequest(
            mock.Mock(), mock.Mock()).build_sample(HTTP_REQUEST))[0]
        self.assertEqual(HTTP_REQUEST['payload']['request']['HTTP_X_USER_ID'],
                         sample.user_id)
        self.assertEqual(HTTP_REQUEST['payload']['request']
                         ['HTTP_X_PROJECT_ID'], sample.project_id)
        self.assertEqual(HTTP_REQUEST['payload']['request']
                         ['HTTP_X_SERVICE_NAME'], sample.resource_id)
        self.assertEqual(1, sample.volume)

    def test_process_response_notification(self):
        sample = list(middleware.HTTPResponse(
            mock.Mock(), mock.Mock()).build_sample(HTTP_RESPONSE))[0]
        self.assertEqual(HTTP_RESPONSE['payload']['request']['HTTP_X_USER_ID'],
                         sample.user_id)
        self.assertEqual(HTTP_RESPONSE['payload']['request']
                         ['HTTP_X_PROJECT_ID'], sample.project_id)
        self.assertEqual(HTTP_RESPONSE['payload']['request']
                         ['HTTP_X_SERVICE_NAME'], sample.resource_id)
        self.assertEqual(1, sample.volume)