bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
135 lines
4.7 KiB
Python
135 lines
4.7 KiB
Python
import uuid
|
|
from typing import cast
|
|
|
|
import pytest
|
|
from testcontainers.mysql import MySqlContainer
|
|
|
|
from _openmetadata_testutils.postgres.conftest import postgres_container, try_bind
|
|
from metadata.generated.schema.api.services.createDatabaseService import (
|
|
CreateDatabaseServiceRequest,
|
|
)
|
|
from metadata.generated.schema.entity.services.connections.database.common.basicAuth import (
|
|
BasicAuth,
|
|
)
|
|
from metadata.generated.schema.entity.services.connections.database.postgresConnection import (
|
|
PostgresConnection,
|
|
)
|
|
from metadata.generated.schema.entity.services.databaseService import (
|
|
DatabaseConnection,
|
|
DatabaseService,
|
|
DatabaseServiceType,
|
|
)
|
|
from metadata.generated.schema.metadataIngestion.workflow import LogLevels
|
|
from metadata.ingestion.models.custom_pydantic import CustomSecretStr
|
|
from metadata.ingestion.ometa.ometa_api import OpenMetadata
|
|
from metadata.workflow.metadata import MetadataWorkflow
|
|
|
|
__all__ = [
|
|
"postgres_container",
|
|
]
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def mysql_container():
|
|
with try_bind(MySqlContainer("mysql:8"), 3306, 3307) as container:
|
|
yield container
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def ingest_mysql_service(mysql_container: MySqlContainer, metadata: OpenMetadata):
|
|
workflow_config = {
|
|
"source": {
|
|
"type": "mysql",
|
|
"serviceName": f"integration_test_mysql_{uuid.uuid4().hex[:8]}",
|
|
"serviceConnection": {
|
|
"config": {
|
|
"type": "Mysql",
|
|
"username": mysql_container.username,
|
|
"authType": {
|
|
"password": mysql_container.password,
|
|
},
|
|
"hostPort": "localhost:" + mysql_container.get_exposed_port(3306),
|
|
"databaseSchema": mysql_container.dbname,
|
|
}
|
|
},
|
|
"sourceConfig": {
|
|
"config": {
|
|
"type": "DatabaseMetadata",
|
|
},
|
|
},
|
|
},
|
|
"sink": {"type": "metadata-rest", "config": {}},
|
|
"workflowConfig": {
|
|
"loggerLevel": LogLevels.DEBUG.value,
|
|
"openMetadataServerConfig": metadata.config.model_dump(),
|
|
},
|
|
}
|
|
metadata_ingestion = MetadataWorkflow.create(workflow_config)
|
|
metadata_ingestion.execute()
|
|
metadata_ingestion.raise_from_status()
|
|
metadata_ingestion.stop()
|
|
db_service: DatabaseService = metadata.get_by_name(DatabaseService, workflow_config["source"]["serviceName"])
|
|
db_service.connection.config.authType.password = CustomSecretStr(mysql_container.password)
|
|
yield db_service
|
|
metadata.delete(DatabaseService, db_service.id, recursive=True, hard_delete=True)
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def create_service_request(postgres_container):
|
|
return CreateDatabaseServiceRequest(
|
|
name=f"docker_test_postgres_{uuid.uuid4().hex[:8]}",
|
|
serviceType=DatabaseServiceType.Postgres,
|
|
connection=DatabaseConnection(
|
|
config=PostgresConnection(
|
|
username=postgres_container.username,
|
|
authType=BasicAuth(password=postgres_container.password),
|
|
hostPort="localhost:" + postgres_container.get_exposed_port(postgres_container.port),
|
|
database="dvdrental",
|
|
)
|
|
),
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def postgres_service(db_service):
|
|
return db_service
|
|
|
|
|
|
@pytest.fixture()
|
|
def ingest_postgres_metadata(postgres_service, metadata: OpenMetadata, sink_config, workflow_config, run_workflow):
|
|
workflow_config = {
|
|
"source": {
|
|
"type": postgres_service.connection.config.type.value.lower(),
|
|
"serviceName": postgres_service.fullyQualifiedName.root,
|
|
"serviceConnection": postgres_service.connection.model_copy(
|
|
update={
|
|
"config": postgres_service.connection.config.model_copy(
|
|
update={
|
|
"ingestAllDatabases": True,
|
|
}
|
|
)
|
|
}
|
|
),
|
|
"sourceConfig": {
|
|
"config": {
|
|
"schemaFilterPattern": {"excludes": ["information_schema"]},
|
|
}
|
|
},
|
|
},
|
|
"sink": sink_config,
|
|
"workflowConfig": workflow_config,
|
|
}
|
|
run_workflow(MetadataWorkflow, workflow_config)
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def patch_password(postgres_container):
|
|
def inner(service: DatabaseService):
|
|
service.connection.config = cast(PostgresConnection, service.connection.config) # noqa: TC006
|
|
service.connection.config.authType.password = type(service.connection.config.authType.password)(
|
|
postgres_container.password
|
|
)
|
|
return service
|
|
|
|
return inner
|