fuel-main/nailgun/nailgun/test/test_notification_handler.py

110 lines
4.0 KiB
Python

# Copyright 2013 Mirantis, Inc.
#
# 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.
# -*- coding: utf-8 -*-
import unittest
import json
from paste.fixture import TestApp
from nailgun.test.base import BaseHandlers
from nailgun.test.base import reverse
class TestHandlers(BaseHandlers):
def test_notification_get_without_cluster(self):
notification = self.env.create_notification()
resp = self.app.get(
reverse(
'NotificationHandler',
kwargs={'notification_id': notification.id}
),
headers=self.default_headers
)
self.assertEquals(200, resp.status)
response = json.loads(resp.body)
self.assertIsNone(response.get('cluster'))
self.assertEquals(notification.status, 'unread')
self.assertEquals(notification.id, response['id'])
self.assertEquals(notification.status, response['status'])
self.assertEquals(notification.topic, response['topic'])
self.assertEquals(notification.message, response['message'])
def test_notification_datetime(self):
node = self.env.create_node(
api=True,
meta=self.env.default_metadata()
)
resp = self.app.get(
reverse('NotificationCollectionHandler'),
headers=self.default_headers
)
notif_api = json.loads(resp.body)[0]
self.assertIn('date', notif_api)
self.assertNotEqual(notif_api['date'], '')
self.assertIn('time', notif_api)
self.assertNotEqual(notif_api['time'], '')
def test_notification_get_with_cluster(self):
cluster = self.env.create_cluster(api=False)
notification = self.env.create_notification(cluster_id=cluster.id)
resp = self.app.get(
reverse(
'NotificationHandler',
kwargs={'notification_id': notification.id}
),
headers=self.default_headers
)
self.assertEquals(200, resp.status)
response = json.loads(resp.body)
self.assertEquals(response.get('cluster'), cluster.id)
self.assertEquals(notification.status, 'unread')
self.assertEquals(notification.id, response['id'])
self.assertEquals(notification.status, response['status'])
self.assertEquals(notification.topic, response['topic'])
self.assertEquals(notification.message, response['message'])
def test_notification_update(self):
notification = self.env.create_notification()
notification_update = {
'status': 'read'
}
resp = self.app.put(
reverse(
'NotificationHandler',
kwargs={'notification_id': notification.id}
),
json.dumps(notification_update),
headers=self.default_headers
)
response = json.loads(resp.body)
self.assertEquals(notification.id, response['id'])
self.assertEquals('read', response['status'])
self.assertEquals(notification.topic, response['topic'])
self.assertEquals(notification.message, response['message'])
def test_notification_not_found(self):
notification = self.env.create_notification()
resp = self.app.get(
reverse(
'NotificationHandler',
kwargs={'notification_id': notification.id + 1}
),
headers=self.default_headers,
expect_errors=True
)
self.assertEquals(404, resp.status)