diff --git a/openstack_dashboard/dashboards/project/images_and_snapshots/images/tests.py b/openstack_dashboard/dashboards/project/images_and_snapshots/images/tests.py index 4d147b3ea..8f93ed8c9 100644 --- a/openstack_dashboard/dashboards/project/images_and_snapshots/images/tests.py +++ b/openstack_dashboard/dashboards/project/images_and_snapshots/images/tests.py @@ -94,3 +94,25 @@ class ImageViewTests(test.TestCase): args=[image.id]) res = self.client.get(url) self.assertRedirectsNoFollow(res, IMAGES_INDEX_URL) + + @test.create_stubs({api: ('image_get',)}) + def test_image_update_get(self): + image = self.images.first() + image.disk_format = "ami" + image.is_public = True + api.image_get(IsA(http.HttpRequest), str(image.id)) \ + .AndReturn(image) + self.mox.ReplayAll() + + res = self.client.get( + reverse('horizon:project:images_and_snapshots:images:update', + args=[image.id])) + + self.assertTemplateUsed(res, + 'project/images_and_snapshots/images/_update.html') + self.assertEqual(res.context['image'].name, image.name) + # Bug 1076216 - is_public checkbox not being set correctly + self.assertContains(res, "", + html=True, + msg_prefix="The is_public checkbox is not checked") diff --git a/openstack_dashboard/dashboards/project/images_and_snapshots/images/views.py b/openstack_dashboard/dashboards/project/images_and_snapshots/images/views.py index 929f9b7f3..121e4f479 100644 --- a/openstack_dashboard/dashboards/project/images_and_snapshots/images/views.py +++ b/openstack_dashboard/dashboards/project/images_and_snapshots/images/views.py @@ -76,7 +76,7 @@ class UpdateView(forms.ModalFormView): 'ramdisk': image.properties.get('ramdisk_id', ''), 'architecture': image.properties.get('architecture', ''), 'disk_format': image.disk_format, - 'public': image.is_public == "True"} + 'public': image.is_public} class DetailView(tabs.TabView):