add functional tests of the scrubber and delayed_delete

This commit is contained in:
Jason Kölker 2011-06-13 14:41:17 -05:00
parent 7a6e74ce5d
commit 8abea7416b

View File

@ -0,0 +1,102 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2011 OpenStack, LLC
# All Rights Reserved.
#
# 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.
import time
import unittest
from sqlalchemy import create_engine
from tests import functional
from tests.utils import execute
from glance import client
from glance.registry.db import api as db_api
FIVE_KB = 5 * 1024
IMAGE_META = {'name': 'test_image',
'is_public': False,
'disk_format': 'raw',
'container_format': 'ovf'}
class TestScrubber(functional.FunctionalTest):
"""Test that delayed_delete works and the scrubber deletes"""
def _get_client(self):
return client.Client("localhost", self.api_port)
def setUp(self):
super(TestScrubber, self).setUp()
# NOTE(jkoelker): We go behind the scenes here to get raw access
# to the database so we can check the status
# of deletes.
db_api._ENGINE = create_engine(self.scrubber_daemon.sql_connection)
def test_immediate_delete(self):
"""
test that images get deleted immediately by default
"""
self.cleanup()
self.start_servers()
client = self._get_client()
image_data = '*' * FIVE_KB
meta = client.add_image(IMAGE_META, image_data)
id = meta['id']
self.assertFalse(db_api.image_get_all_pending_delete(None))
client.delete_image(id)
self.assertFalse(db_api.image_get_all_pending_delete(None))
db_meta = db_api.image_get({'deleted': True}, id)
self.assertTrue(db_meta)
self.assertEqual(db_meta['status'], 'deleted')
self.stop_servers()
def test_delayed_delete(self):
"""
test that images don't get deleted immediatly and that the scrubber
scrubs them
"""
self.cleanup()
self.start_servers(delayed_delete=True)
client = self._get_client()
image_data = '*' * FIVE_KB
meta = client.add_image(IMAGE_META, image_data)
id = meta['id']
self.assertFalse(db_api.image_get_all_pending_delete(None))
client.delete_image(id)
self.assertTrue(db_api.image_get_all_pending_delete(None))
db_meta = db_api.image_get({'deleted': True}, id)
self.assertTrue(db_meta)
self.assertEqual(db_meta['status'], 'pending_delete')
# Wait 15 seconds for the scrubber to scrub
time.sleep(15)
db_meta = db_api.image_get({'deleted': True}, id)
self.assertTrue(db_meta)
self.assertEqual(db_meta['status'], 'deleted')