mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-28 17:23:28 +00:00
91 lines
3.0 KiB
Python
91 lines
3.0 KiB
Python
|
|
# Copyright 2021 Collate
|
||
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
# you may not use this file except in compliance with the License.
|
||
|
|
# You may obtain a copy of the License at
|
||
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
# See the License for the specific language governing permissions and
|
||
|
|
# limitations under the License.
|
||
|
|
|
||
|
|
"""
|
||
|
|
OpenMetadata REST Sink implementation for the ORM Profiler results
|
||
|
|
"""
|
||
|
|
|
||
|
|
import traceback
|
||
|
|
from typing import Optional
|
||
|
|
|
||
|
|
from metadata.config.common import ConfigModel
|
||
|
|
from metadata.generated.schema.entity.services.connections.metadata.openMetadataConnection import (
|
||
|
|
OpenMetadataConnection,
|
||
|
|
)
|
||
|
|
from metadata.ingestion.api.common import Entity
|
||
|
|
from metadata.ingestion.api.sink import Sink, SinkStatus
|
||
|
|
from metadata.ingestion.ometa.client import APIError
|
||
|
|
from metadata.ingestion.ometa.ometa_api import OpenMetadata
|
||
|
|
from metadata.test_suite.runner.models import TestCaseResultResponse
|
||
|
|
from metadata.utils.logger import test_suite_logger
|
||
|
|
|
||
|
|
logger = test_suite_logger()
|
||
|
|
|
||
|
|
|
||
|
|
class MetadataRestSinkConfig(ConfigModel):
|
||
|
|
api_endpoint: Optional[str] = None
|
||
|
|
|
||
|
|
|
||
|
|
class MetadataRestSink(Sink[Entity]):
|
||
|
|
"""
|
||
|
|
Metadata Sink sending the test suite
|
||
|
|
to the OM API
|
||
|
|
"""
|
||
|
|
|
||
|
|
config: MetadataRestSinkConfig
|
||
|
|
status: SinkStatus
|
||
|
|
|
||
|
|
def __init__(
|
||
|
|
self,
|
||
|
|
config: MetadataRestSinkConfig,
|
||
|
|
metadata_config: OpenMetadataConnection,
|
||
|
|
):
|
||
|
|
super().__init__()
|
||
|
|
self.config = config
|
||
|
|
self.metadata_config = metadata_config
|
||
|
|
self.status = SinkStatus()
|
||
|
|
self.wrote_something = False
|
||
|
|
self.metadata = OpenMetadata(self.metadata_config)
|
||
|
|
|
||
|
|
@classmethod
|
||
|
|
def create(cls, config_dict: dict, metadata_config: OpenMetadataConnection):
|
||
|
|
config = MetadataRestSinkConfig.parse_obj(config_dict)
|
||
|
|
return cls(config, metadata_config)
|
||
|
|
|
||
|
|
def get_status(self) -> SinkStatus:
|
||
|
|
return self.status
|
||
|
|
|
||
|
|
def close(self) -> None:
|
||
|
|
self.metadata.close()
|
||
|
|
|
||
|
|
def write_record(self, record: TestCaseResultResponse) -> None:
|
||
|
|
try:
|
||
|
|
self.metadata.add_test_case_results(
|
||
|
|
test_results=record.testCaseResult,
|
||
|
|
test_case_name=record.testCase.fullyQualifiedName.__root__,
|
||
|
|
)
|
||
|
|
logger.info(
|
||
|
|
f"Successfully ingested test case results for test case {record.testCase.name.__root__}"
|
||
|
|
)
|
||
|
|
|
||
|
|
self.status.records_written(
|
||
|
|
f"Test Case: {record.testCase.fullyQualifiedName.__root__}"
|
||
|
|
)
|
||
|
|
|
||
|
|
except APIError as err:
|
||
|
|
logger.error(
|
||
|
|
f"Failed to sink test case results for {record.testCase.fullyQualifiedName.__root__} - {err}"
|
||
|
|
)
|
||
|
|
logger.debug(traceback.format_exc())
|
||
|
|
self.status.failure(
|
||
|
|
f"Test Case: {record.testCase.fullyQualifiedName.__root__}"
|
||
|
|
)
|