
This involved a huge amount of cleanup to existing code in order to make sure that existing failures were properly fixed or silenced when intentional. Additionally, this introduces a set of pre-built exception instances for test purposes which are marked with the "silence_logging" attribute to denote expected failures which should not be logged in test output. Change-Id: I6b420382dcdc5792c7be4d727853f438154c641e
88 lines
3.7 KiB
Python
88 lines
3.7 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 Nebula, 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.
|
|
|
|
from django import http
|
|
from django.core.urlresolvers import reverse
|
|
from mox import IsA
|
|
from novaclient import exceptions as novaclient_exceptions
|
|
|
|
from horizon import api
|
|
from horizon import test
|
|
|
|
|
|
class InstanceViewTest(test.BaseAdminViewTests):
|
|
def test_index(self):
|
|
servers = self.servers.list()
|
|
flavors = self.flavors.list()
|
|
tenants = self.tenants.list()
|
|
self.mox.StubOutWithMock(api.nova, 'server_list')
|
|
self.mox.StubOutWithMock(api.nova, 'flavor_list')
|
|
self.mox.StubOutWithMock(api.keystone, 'tenant_list')
|
|
api.keystone.tenant_list(IsA(http.HttpRequest), admin=True).\
|
|
AndReturn(tenants)
|
|
api.nova.server_list(IsA(http.HttpRequest),
|
|
all_tenants=True).AndReturn(servers)
|
|
api.nova.flavor_list(IsA(http.HttpRequest)).AndReturn(flavors)
|
|
self.mox.ReplayAll()
|
|
|
|
res = self.client.get(reverse('horizon:syspanel:instances:index'))
|
|
self.assertTemplateUsed(res, 'syspanel/instances/index.html')
|
|
instances = res.context['table'].data
|
|
self.assertItemsEqual(instances, servers)
|
|
|
|
def test_index_server_list_exception(self):
|
|
self.mox.StubOutWithMock(api.nova, 'server_list')
|
|
self.mox.StubOutWithMock(api.nova, 'flavor_list')
|
|
api.nova.server_list(IsA(http.HttpRequest),
|
|
all_tenants=True).AndRaise(self.exceptions.nova)
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
res = self.client.get(reverse('horizon:syspanel:instances:index'))
|
|
self.assertTemplateUsed(res, 'syspanel/instances/index.html')
|
|
self.assertEqual(len(res.context['instances_table'].data), 0)
|
|
|
|
def test_ajax_loading_instances(self):
|
|
server = self.servers.first()
|
|
flavor = self.flavors.list()[0]
|
|
tenant = self.tenants.list()[0]
|
|
|
|
self.mox.StubOutWithMock(api, 'server_get')
|
|
self.mox.StubOutWithMock(api, 'flavor_get')
|
|
self.mox.StubOutWithMock(api.keystone, 'tenant_get')
|
|
api.server_get(IsA(http.HttpRequest), server.id).AndReturn(server)
|
|
api.flavor_get(IsA(http.HttpRequest),
|
|
server.flavor['id']).AndReturn(flavor)
|
|
api.keystone.tenant_get(IsA(http.HttpRequest),
|
|
server.tenant_id,
|
|
admin=True).AndReturn(tenant)
|
|
self.mox.ReplayAll()
|
|
|
|
url = reverse('horizon:syspanel:instances:index') + \
|
|
"?action=row_update&table=instances&obj_id=" + server.id
|
|
|
|
res = self.client.get(url, {},
|
|
HTTP_X_REQUESTED_WITH='XMLHttpRequest')
|
|
self.assertTemplateUsed(res, "horizon/common/_data_table_row.html")
|
|
|
|
self.assertContains(res, "test_tenant", 1, 200)
|
|
self.assertContains(res, "instance-host", 1, 200)
|
|
self.assertContains(res, "server_1", 1, 200)
|
|
self.assertContains(res, "10.0.0.1", 1, 200)
|
|
self.assertContains(res, "512MB RAM | 1 VCPU | 0 Disk", 1, 200)
|
|
self.assertContains(res, "Active", 1, 200)
|
|
self.assertContains(res, "Running", 1, 200)
|