mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-14 04:29:21 +00:00

* fixed issue with not being able to load config file; cleaned up unused code * fixed test case to test configuration error Co-authored-by: Vijay Mariadassou <vijay@mariadassou.com>
78 lines
2.8 KiB
Python
78 lines
2.8 KiB
Python
import importlib
|
|
import pathlib
|
|
from unittest import TestCase
|
|
|
|
from metadata.config.common import load_config_file, ConfigurationError
|
|
from metadata.ingestion.api.workflow import Workflow
|
|
from metadata.ingestion.ometa.ometa_api import OpenMetadata
|
|
from metadata.ingestion.ometa.openmetadata_rest import MetadataServerConfig
|
|
|
|
|
|
class WorkflowTest(TestCase):
|
|
def test_get_200(self):
|
|
key = "metadata.ingestion.sink.metadata_rest.MetadataRestSink"
|
|
if key.find(".") >= 0:
|
|
module_name, class_name = key.rsplit(".", 1)
|
|
my_class = getattr(importlib.import_module(module_name), class_name)
|
|
self.assertEqual((my_class is not None), True)
|
|
|
|
def test_get_4xx(self):
|
|
my_class = None
|
|
key = "metadata.ingestion.sink.MYSQL.mysqlSINK"
|
|
try:
|
|
if key.find(".") >= 0:
|
|
module_name, class_name = key.rsplit(".", 1)
|
|
my_class = getattr(importlib.import_module(module_name), class_name)
|
|
except ModuleNotFoundError:
|
|
self.assertRaises(ModuleNotFoundError)
|
|
|
|
def test_title_typeClassFetch(self):
|
|
is_file = True
|
|
file_type = "query-parser"
|
|
if is_file:
|
|
replace = file_type.replace("-", "_")
|
|
else:
|
|
replace = "".join(
|
|
[i.title() for i in file_type.replace("-", "_").split("_")]
|
|
)
|
|
self.assertEqual(replace, "query_parser")
|
|
|
|
def test_title_typeClassFetch_4xx(self):
|
|
is_file = False
|
|
file_type = "query-parser"
|
|
if is_file:
|
|
replace = file_type.replace("-", "_")
|
|
else:
|
|
replace = "".join(
|
|
[i.title() for i in file_type.replace("-", "_").split("_")]
|
|
)
|
|
self.assertEqual(replace, "QueryParser")
|
|
|
|
def test_execute_200(self):
|
|
current_dir = pathlib.Path(__file__).resolve().parent
|
|
config_file = current_dir.joinpath("mysql_test.json")
|
|
workflow_config = load_config_file(config_file)
|
|
workflow = Workflow.create(workflow_config)
|
|
workflow.execute()
|
|
workflow.stop()
|
|
config = MetadataServerConfig.parse_obj(
|
|
workflow_config.get("metadata_server").get("config")
|
|
)
|
|
client = OpenMetadata(config).client
|
|
|
|
client.delete(
|
|
f"/services/databaseServices/"
|
|
f"{client.get('/services/databaseServices/name/local_mysql_test')['id']}"
|
|
)
|
|
file_path = "/tmp/mysql_test"
|
|
with open(file_path) as ingestionFile:
|
|
ingestionData = ingestionFile.read()
|
|
self.assertEqual(ingestionData is not None, True)
|
|
|
|
def test_execute_4xx(self):
|
|
config_file = pathlib.Path("/tmp/mysql_test123")
|
|
try:
|
|
workflow_config = load_config_file(config_file)
|
|
except ConfigurationError:
|
|
self.assertRaises(ConfigurationError)
|