From 7bf24bfa1298e51b290530de823f09fc73b35d93 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Thu, 23 May 2013 09:31:18 +1200 Subject: [PATCH] Orchestration endpoints for keystone test data This is required for stacks unit tests Change-Id: I4dd9fac3429e25534d95cedc617ee32297b446ec --- openstack_dashboard/dashboards/admin/info/tests.py | 3 ++- openstack_dashboard/test/test_data/keystone_data.py | 10 +++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/dashboards/admin/info/tests.py b/openstack_dashboard/dashboards/admin/info/tests.py index 9bb88fdf3..ae974d2c6 100644 --- a/openstack_dashboard/dashboards/admin/info/tests.py +++ b/openstack_dashboard/dashboards/admin/info/tests.py @@ -47,7 +47,8 @@ class ServicesViewTests(test.BaseAdminViewTests): '', '', '', - '']) + '', + '']) quotas_tab = res.context['tab_group'].get_tab('quotas') self.assertQuerysetEqual(quotas_tab._tables['quotas'].data, diff --git a/openstack_dashboard/test/test_data/keystone_data.py b/openstack_dashboard/test/test_data/keystone_data.py index d75fb6eee..c20e44a65 100644 --- a/openstack_dashboard/test/test_data/keystone_data.py +++ b/openstack_dashboard/test/test_data/keystone_data.py @@ -81,7 +81,15 @@ SERVICE_CATALOG = [ {"region": "RegionOne", "adminURL": "http://admin.nova.example.com:8773/services/Admin", "publicURL": "http://public.nova.example.com:8773/services/Cloud", - "internalURL": "http://int.nova.example.com:8773/services/Cloud"}]} + "internalURL": "http://int.nova.example.com:8773/services/Cloud"}]}, + {"type": "orchestration", + "name": "Heat", + "endpoints_links": [], + "endpoints": [ + {"region": "RegionOne", + "adminURL": "http://admin.heat.example.com:8004/v1", + "publicURL": "http://public.heat.example.com:8004/v1", + "internalURL": "http://int.heat.example.com:8004/v1"}]} ]