summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api/opnfv_testapi/cmd/__init__.py
blob: e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 (plain)

#fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
##############################################################################
# Copyright (c) 2016 ZTE Corporation
# feng.xiaowei@zte.com.cn
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import argparse

from pymongo import MongoClient

from utils import main, parse_mongodb_url
from changes import collections_old2New, fields_old2New, docs_old2New

parser = argparse.ArgumentParser(description='Update MongoDBs')

parser.add_argument('-u', '--url',
                    type=str,
                    required=False,
                    default='mongodb://127.0.0.1:27017/',
                    help='Mongo DB URL for Backups')

parser.add_argument('-d', '--db',
                    type=str,
                    required=False,
                    default='test_results_collection',
                    help='database for the update.')


def assert_collections(a_dict):
    if a_dict is not None:
        collections = eval_db('collection_names')
        no_collections = []
        for collection in a_dict.keys():
            if collection not in collections:
                no_collections.append(collection)
        assert len(no_collections) == 0, \
            'collections {} not exist'.format(no_collections)


def rename_collections(a_dict):
    if a_dict is not None:
        for collection, new_name in a_dict.iteritems():
            eval_collection(collection, 'rename', new_name)


def rename_fields(a_dict):
    collection_update(a_dict, '$rename')


def change_docs(a_dict):
    collection_update(a_dict, '$set')


def eval_db(method, *args, **kwargs):
    return eval('db.%s(*args, **kwargs)' % method)


def eval_collection(collection, method, *args, **kwargs):
    return eval('db.%s.%s(*args, **kwargs)' % (collection, method))


def collection_update(a_dict, operator):
    if a_dict is not None:
        for collection, updates in a_dict.iteritems():
            for (query, doc) in updates:
                doc_dict = {operator: doc}
                eval_collection(collection, 'update', query,
                                doc_dict, upsert=False, multi=True)


def update(args):
    parse_mongodb_url(args.url)
    client = MongoClient(args.url)
    global db
    db = client[args.db]
    assert_collections(docs_old2New)
    assert_collections(fields_old2New)
    assert_collections(collections_old2New)
    change_docs(docs_old2New)
    rename_fields(fields_old2New)
    rename_collections(collections_old2New)

if __name__ == '__main__':
    main(update, parser)