2021-02-11 23:14:20 -08:00
|
|
|
import unittest
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
|
2022-01-18 03:59:54 +05:30
|
|
|
from confluent_kafka.schema_registry.schema_registry_client import (
|
|
|
|
RegisteredSchema,
|
|
|
|
Schema,
|
|
|
|
)
|
|
|
|
|
2021-02-15 15:04:21 -08:00
|
|
|
from datahub.ingestion.api.common import PipelineContext
|
|
|
|
from datahub.ingestion.source.kafka import KafkaSource
|
|
|
|
from datahub.metadata.com.linkedin.pegasus2avro.mxe import MetadataChangeEvent
|
2021-02-10 14:53:55 -08:00
|
|
|
|
2021-01-31 22:40:30 -08:00
|
|
|
|
|
|
|
class KafkaSourceTest(unittest.TestCase):
|
2022-01-18 03:59:54 +05:30
|
|
|
def test_get_schema_str_replace_confluent_ref_avro(self):
|
|
|
|
|
|
|
|
schema_str_orig = """
|
|
|
|
{
|
|
|
|
"fields": [
|
|
|
|
{
|
|
|
|
"name": "my_field1",
|
|
|
|
"type": "TestTopic1"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "TestTopic1Val",
|
|
|
|
"namespace": "io.acryl",
|
|
|
|
"type": "record"
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
schema_str_ref = """
|
|
|
|
{
|
|
|
|
"doc": "Sample schema to help you get started.",
|
|
|
|
"fields": [
|
|
|
|
{
|
|
|
|
"doc": "The int type is a 32-bit signed integer.",
|
|
|
|
"name": "my_field1",
|
|
|
|
"type": "int"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "TestTopic1",
|
|
|
|
"namespace": "io.acryl",
|
|
|
|
"type": "record"
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
schema_str_final = (
|
|
|
|
"""
|
|
|
|
{
|
|
|
|
"fields": [
|
|
|
|
{
|
|
|
|
"name": "my_field1",
|
|
|
|
"type": """
|
|
|
|
+ schema_str_ref
|
|
|
|
+ """
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "TestTopic1Val",
|
|
|
|
"namespace": "io.acryl",
|
|
|
|
"type": "record"
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
ctx = PipelineContext(run_id="test")
|
|
|
|
kafka_source = KafkaSource.create(
|
|
|
|
{
|
|
|
|
"connection": {"bootstrap": "localhost:9092"},
|
|
|
|
},
|
|
|
|
ctx,
|
|
|
|
)
|
|
|
|
|
|
|
|
def new_get_latest_version(_):
|
|
|
|
return RegisteredSchema(
|
|
|
|
schema_id="schema_id_1",
|
|
|
|
schema=Schema(schema_str=schema_str_ref, schema_type="AVRO"),
|
|
|
|
subject="test",
|
|
|
|
version=1,
|
|
|
|
)
|
|
|
|
|
|
|
|
with patch.object(
|
|
|
|
kafka_source.schema_registry_client,
|
|
|
|
"get_latest_version",
|
|
|
|
new_get_latest_version,
|
|
|
|
):
|
|
|
|
schema_str = kafka_source.get_schema_str_replace_confluent_ref_avro(
|
|
|
|
schema=Schema(
|
|
|
|
schema_str=schema_str_orig,
|
|
|
|
schema_type="AVRO",
|
|
|
|
references=[
|
|
|
|
dict(name="TestTopic1", subject="schema_subject_1", version=1)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
assert schema_str == schema_str_final
|
|
|
|
|
2021-04-05 19:11:28 -07:00
|
|
|
@patch("datahub.ingestion.source.kafka.confluent_kafka.Consumer", autospec=True)
|
2021-01-31 22:40:30 -08:00
|
|
|
def test_kafka_source_configuration(self, mock_kafka):
|
2021-02-11 22:48:20 -08:00
|
|
|
ctx = PipelineContext(run_id="test")
|
|
|
|
kafka_source = KafkaSource.create(
|
|
|
|
{"connection": {"bootstrap": "foobar:9092"}}, ctx
|
|
|
|
)
|
|
|
|
kafka_source.close()
|
2021-01-31 22:40:30 -08:00
|
|
|
assert mock_kafka.call_count == 1
|
|
|
|
|
2021-04-05 19:11:28 -07:00
|
|
|
@patch("datahub.ingestion.source.kafka.confluent_kafka.Consumer", autospec=True)
|
2021-01-31 22:40:30 -08:00
|
|
|
def test_kafka_source_workunits_wildcard_topic(self, mock_kafka):
|
|
|
|
mock_kafka_instance = mock_kafka.return_value
|
|
|
|
mock_cluster_metadata = MagicMock()
|
|
|
|
mock_cluster_metadata.topics = ["foobar", "bazbaz"]
|
2021-02-11 16:00:29 -08:00
|
|
|
mock_kafka_instance.list_topics.return_value = mock_cluster_metadata
|
2021-01-31 22:40:30 -08:00
|
|
|
|
2021-02-11 22:48:20 -08:00
|
|
|
ctx = PipelineContext(run_id="test")
|
|
|
|
kafka_source = KafkaSource.create(
|
|
|
|
{"connection": {"bootstrap": "localhost:9092"}}, ctx
|
|
|
|
)
|
2021-06-24 17:11:00 -07:00
|
|
|
workunits = list(kafka_source.get_workunits())
|
2021-01-31 22:40:30 -08:00
|
|
|
|
2021-07-30 17:41:03 -07:00
|
|
|
first_mce = workunits[0].metadata
|
2021-02-10 14:53:55 -08:00
|
|
|
assert isinstance(first_mce, MetadataChangeEvent)
|
2021-01-31 22:40:30 -08:00
|
|
|
mock_kafka.assert_called_once()
|
|
|
|
mock_kafka_instance.list_topics.assert_called_once()
|
|
|
|
assert len(workunits) == 2
|
|
|
|
|
2021-04-05 19:11:28 -07:00
|
|
|
@patch("datahub.ingestion.source.kafka.confluent_kafka.Consumer", autospec=True)
|
2021-01-31 22:40:30 -08:00
|
|
|
def test_kafka_source_workunits_topic_pattern(self, mock_kafka):
|
|
|
|
mock_kafka_instance = mock_kafka.return_value
|
|
|
|
mock_cluster_metadata = MagicMock()
|
|
|
|
mock_cluster_metadata.topics = ["test", "foobar", "bazbaz"]
|
2021-02-11 16:00:29 -08:00
|
|
|
mock_kafka_instance.list_topics.return_value = mock_cluster_metadata
|
2021-01-31 22:40:30 -08:00
|
|
|
|
2021-02-11 22:48:20 -08:00
|
|
|
ctx = PipelineContext(run_id="test1")
|
|
|
|
kafka_source = KafkaSource.create(
|
|
|
|
{
|
|
|
|
"topic_patterns": {"allow": ["test"]},
|
|
|
|
"connection": {"bootstrap": "localhost:9092"},
|
|
|
|
},
|
|
|
|
ctx,
|
|
|
|
)
|
2021-01-31 22:40:30 -08:00
|
|
|
workunits = [w for w in kafka_source.get_workunits()]
|
|
|
|
|
|
|
|
mock_kafka.assert_called_once()
|
|
|
|
mock_kafka_instance.list_topics.assert_called_once()
|
|
|
|
assert len(workunits) == 1
|
|
|
|
|
|
|
|
mock_cluster_metadata.topics = ["test", "test2", "bazbaz"]
|
2021-02-11 22:48:20 -08:00
|
|
|
ctx = PipelineContext(run_id="test2")
|
|
|
|
kafka_source = KafkaSource.create(
|
|
|
|
{
|
|
|
|
"topic_patterns": {"allow": ["test.*"]},
|
|
|
|
"connection": {"bootstrap": "localhost:9092"},
|
|
|
|
},
|
|
|
|
ctx,
|
|
|
|
)
|
2021-01-31 22:40:30 -08:00
|
|
|
workunits = [w for w in kafka_source.get_workunits()]
|
|
|
|
assert len(workunits) == 2
|
|
|
|
|
2021-04-05 19:11:28 -07:00
|
|
|
@patch("datahub.ingestion.source.kafka.confluent_kafka.Consumer", autospec=True)
|
2021-01-31 22:40:30 -08:00
|
|
|
def test_close(self, mock_kafka):
|
|
|
|
mock_kafka_instance = mock_kafka.return_value
|
2021-02-11 22:48:20 -08:00
|
|
|
ctx = PipelineContext(run_id="test")
|
|
|
|
kafka_source = KafkaSource.create(
|
2021-02-23 15:55:31 -08:00
|
|
|
{
|
|
|
|
"topic_patterns": {"allow": ["test.*"]},
|
|
|
|
"connection": {"bootstrap": "localhost:9092"},
|
|
|
|
},
|
|
|
|
ctx,
|
2021-02-11 22:48:20 -08:00
|
|
|
)
|
2021-01-31 22:40:30 -08:00
|
|
|
kafka_source.close()
|
|
|
|
assert mock_kafka_instance.close.call_count == 1
|