Source code for cerebralcortex.test_suite.test_main

# Copyright (c) 2017, MD2K Center of Excellence
# - Nasir Ali <nasir.ali08@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import os
import pathlib
import unittest
import warnings

from cerebralcortex import Kernel
from cerebralcortex.test_suite.test_object_storage import TestObjectStorage
from cerebralcortex.test_suite.test_sql_storage import SqlStorageTest
from cerebralcortex.test_suite.test_stream import DataStreamTest


[docs]class TestCerebralCortex(unittest.TestCase, DataStreamTest):#, SqlStorageTest, TestObjectStorage):
[docs] def setUp(self): """ Setup test params to being testing with. Notes: DO NOT CHANGE PARAMS DEFINED UNDER TEST-PARAMS! OTHERWISE TESTS WILL FAIL. These values are hardcoded in util/data_helper file as well. """ warnings.simplefilter("ignore") config_filepath = "./../../conf/" # create sample_data directory. Note: make sure this path is same as the filesystem path in cerebralcortex.yml pathlib.Path("./sample_data/").mkdir(parents=True, exist_ok=True) self.CC = Kernel(config_filepath, auto_offset_reset="smallest") self.cc_conf = self.CC.config # TEST-PARAMS # sql/nosql params self.stream_name = "BATTERY--org.md2k.phonesensor--PHONE" self.stream_version = "1" self.metadata_hash = "e13a1c01-ea2f-3d72-9303-64787d9ff80a" self.username = "test_user" self.user_id = "dfce1e65-2882-395b-a641-93f31748591b" self.user_password = "test_password" self.user_password_encrypted = "10a6e6cc8311a3e2bcc09bf6c199adecd5dd59408c343e926b129c4914f3cb01" self.user_role = "test_role" self.auth_token = "xxx" self.study_name = "test_study" self.user_metadata = {"study_name": self.study_name} self.user_settings = {"mcerebrum":"confs"} # object test params self.bucket_name = "test_bucket" self.obj_file_path = os.getcwd() + "/test_data/objects/some_obj.zip" self.obj_metadata_file_path = os.getcwd() + "/test_data/objects/some_obj.json" # kafka test params self.test_topic_name = "test_topic" self.test_message = "{'msg1':'some test message'}"
[docs] def test_00(self): """ This test will create required entries in sql database. """ if not os.path.isdir(self.cc_conf["filesystem"]["filesystem_path"]): os.mkdir(self.cc_conf["filesystem"]["filesystem_path"]) self.CC.create_user(self.username, self.user_password, self.user_role, self.user_metadata, self.user_settings)
[docs] def test_9999_last(self): """ Delete all the sample test data folder/files and sql entries """ self.CC.delete_user(self.username)
# if self.cc_conf['nosql_storage']=="filesystem": # shutil.rmtree(self.cc_conf["filesystem"]["filesystem_path"])