summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShankaranarayanan Puzhavakath Narayanan <snarayanan@research.att.com>2018-10-03 14:59:13 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-03 14:59:13 +0000
commit7a00d431c76875b8e9ea124d520c9b54b8dd3126 (patch)
treefc0d35f46facec7af9cc66a0a5c47e66af716063
parentc477064f0b4d30ff9f8a467dd8fa6564203956fb (diff)
parent83ce3c1d86d650f467b77b679a02fab30bc12bea (diff)
Merge "Unit test case fixed for index_create."
-rw-r--r--conductor/conductor/common/models/plan.py8
-rw-r--r--conductor/conductor/common/music/api.py21
-rw-r--r--conductor/conductor/common/music/model/base.py13
3 files changed, 42 insertions, 0 deletions
diff --git a/conductor/conductor/common/models/plan.py b/conductor/conductor/common/models/plan.py
index 1c293c0..de5af5b 100644
--- a/conductor/conductor/common/models/plan.py
+++ b/conductor/conductor/common/models/plan.py
@@ -115,6 +115,14 @@ class Plan(base.Base):
return schema
@classmethod
+ def indexes(cls):
+ """Return indexes """
+ indexes = [
+ 'status'
+ ]
+ return indexes
+
+ @classmethod
def atomic(cls):
"""Use atomic operations"""
return False
diff --git a/conductor/conductor/common/music/api.py b/conductor/conductor/common/music/api.py
index c212a29..dc351c6 100644
--- a/conductor/conductor/common/music/api.py
+++ b/conductor/conductor/common/music/api.py
@@ -473,6 +473,17 @@ class MusicAPI(object):
response = self.rest.request(method='post', path=path, data=data)
return response
+ def index_create(self, keyspace, table, index):
+
+ """Create indexes for a particular table"""
+
+ path = '/keyspaces/%(keyspace)s/tables/%(table)s/index/%(field)s' % {
+ 'keyspace': keyspace,
+ 'table': table,
+ 'field': index
+ }
+ response = self.rest.request(method='post', path=path)
+ return response
def row_complex_field_update(self, keyspace, table, pk_name, pk_value, plan_id, updated_fields, values):
@@ -580,6 +591,9 @@ class MockAPI(object):
def _set_table(self, keyspace, table):
self._keyspaces[keyspace][table] = {}
+ def _set_index(self, keyspace, table):
+ self._keyspaces[keyspace][table] = {}
+
def _unset_table(self, keyspace, table):
self._keyspaces[keyspace].pop(table)
@@ -653,6 +667,13 @@ class MockAPI(object):
self._set_table(keyspace, table)
return True
+ def index_create(self, keyspace, table, index=None):
+ """Creates a index."""
+ if CONF.music_api.debug:
+ LOG.debug("Creating index {}, keyspace {}".format(table, keyspace))
+ self._set_index(keyspace, table)
+ return True
+
def table_delete(self, keyspace, table):
"""Creates a table."""
if CONF.music_api.debug:
diff --git a/conductor/conductor/common/music/model/base.py b/conductor/conductor/common/music/model/base.py
index 0b6f638..9e8205f 100644
--- a/conductor/conductor/common/music/model/base.py
+++ b/conductor/conductor/common/music/model/base.py
@@ -69,6 +69,13 @@ class Base(object):
kwargs['schema'] = cls.schema()
api.MUSIC_API.table_create(**kwargs)
+ # Create indexes for the table
+ del kwargs['schema']
+ if cls.indexes():
+ for index in cls.indexes():
+ kwargs['index'] = index
+ api.MUSIC_API.index_create(**kwargs)
+
@abstractclassmethod
def atomic(cls):
"""Use atomic operations"""
@@ -79,6 +86,12 @@ class Base(object):
"""Return schema"""
return cls()
+ @classmethod
+ def indexes(cls):
+ """Return Indexes"""
+ pass
+ # return cls()
+
@abstractclassmethod
def pk_name(cls):
"""Primary key name"""