From 162c3ae179f69bd326325b135c3831ae12843e49 Mon Sep 17 00:00:00 2001 From: dongwenjuan Date: Tue, 11 Jul 2017 19:07:22 +0800 Subject: refactor sample consumer JIRA: DOCTOR-113 Change-Id: I60f17953e9b1cdf31ea50f313b33f8ede0831bc2 Signed-off-by: dongwenjuan --- tests/consumer/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tests/consumer/__init__.py') diff --git a/tests/consumer/__init__.py b/tests/consumer/__init__.py index 68cc5dc9..ccec8644 100644 --- a/tests/consumer/__init__.py +++ b/tests/consumer/__init__.py @@ -7,6 +7,7 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## from oslo_config import cfg +from oslo_utils import importutils OPTS = [ @@ -24,3 +25,13 @@ OPTS = [ help='the port of doctor consumer', required=True), ] + + +_consumer_name_class_mapping = { + 'sample': 'consumer.sample.SampleConsumer' +} + + +def get_consumer(conf, log): + consumer_class = _consumer_name_class_mapping.get(conf.consumer.type) + return importutils.import_object(consumer_class, conf, log) \ No newline at end of file -- cgit 1.2.3-korg