summaryrefslogtreecommitdiff
path: root/designate/tests/test_pool_manager/cache/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'designate/tests/test_pool_manager/cache/__init__.py')
-rw-r--r--designate/tests/test_pool_manager/cache/__init__.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/designate/tests/test_pool_manager/cache/__init__.py b/designate/tests/test_pool_manager/cache/__init__.py
deleted file mode 100644
index 2cf562d4..00000000
--- a/designate/tests/test_pool_manager/cache/__init__.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2014 eBay Inc.
-#
-# Author: Ron Rickard <rrickard@ebaysf.com>
-#
-# 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 testtools
-
-from designate import exceptions
-from designate import objects
-from designate.pool_manager.cache import base
-
-
-class PoolManagerCacheTestCase(object):
- def create_pool_manager_status(self):
- values = {
- 'nameserver_id': '896aa661-198c-4379-bccd-5d8de7007030',
- 'zone_id': 'bce45113-4a22-418d-a54d-c9777d056312',
- 'action': 'CREATE',
- 'status': 'SUCCESS',
- 'serial_number': 1
- }
- return objects.PoolManagerStatus.from_dict(values)
-
- def test_interface(self):
- self._ensure_interface(base.PoolManagerCache, self.cache.__class__)
-
- def test_store_and_clear_and_retrieve(self):
- expected = self.create_pool_manager_status()
- self.cache.store(self.admin_context, expected)
-
- self.cache.clear(self.admin_context, expected)
-
- with testtools.ExpectedException(exceptions.PoolManagerStatusNotFound):
- self.cache.retrieve(
- self.admin_context, expected.nameserver_id, expected.zone_id,
- expected.action)
-
- def test_retrieve(self):
- expected = self.create_pool_manager_status()
- with testtools.ExpectedException(exceptions.PoolManagerStatusNotFound):
- self.cache.retrieve(
- self.admin_context, expected.nameserver_id, expected.zone_id,
- expected.action)