ddb24ff5b1
Keystone will replace tenant with project during Havana. Some of this work already started and is moving forward. We can go ahead and replace it now before the tree gets bigger. Change-Id: I1d0494112f6a65cc4ee5390eee782e24790ca5b7
71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
# Copyright (c) 2013 Red Hat, 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 marconi import storage
|
|
from marconi.tests import util as testing
|
|
|
|
|
|
class Driver(storage.DriverBase):
|
|
|
|
@property
|
|
def queue_controller(self):
|
|
return QueueController(self)
|
|
|
|
@property
|
|
def message_controller(self):
|
|
pass
|
|
|
|
@property
|
|
def claim_controller(self):
|
|
pass
|
|
|
|
|
|
class QueueController(storage.QueueBase):
|
|
|
|
def list(self, project=None):
|
|
super(QueueController, self).list(project)
|
|
|
|
def get(self, name, project=None):
|
|
super(QueueController, self).get(name, project=project)
|
|
|
|
def upsert(self, name, metadata, project=None):
|
|
super(QueueController, self).upsert(name, project=project,
|
|
metadata=metadata)
|
|
|
|
def delete(self, name, project=None):
|
|
super(QueueController, self).delete(name, project=project)
|
|
|
|
def stats(self, name, project=None):
|
|
super(QueueController, self).stats(name, project=project)
|
|
|
|
def actions(self, name, project=None, marker=None, limit=10):
|
|
super(QueueController, self).actions(name, project=project,
|
|
marker=marker, limit=limit)
|
|
|
|
|
|
class TestQueueBase(testing.TestBase):
|
|
|
|
def setUp(self):
|
|
super(TestQueueBase, self).setUp()
|
|
self.driver = Driver()
|
|
self.controller = self.driver.queue_controller
|
|
|
|
def test_upsert(self):
|
|
self.assertRaises(AssertionError, self.controller.upsert,
|
|
"test", metadata=[])
|
|
|
|
self.assertIsNone(self.controller.upsert("test", metadata={}))
|