-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DynamoDB: Software integration test for standalone CDC
- Loading branch information
Showing
9 changed files
with
115 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import time | ||
|
||
import botocore | ||
import pytest | ||
|
||
from cratedb_toolkit.io.kinesis.relay import KinesisRelay | ||
from tests.io.test_processor import DYNAMODB_CDC_INSERT_NESTED, DYNAMODB_CDC_MODIFY_NESTED, wrap_kinesis | ||
|
||
pytestmark = pytest.mark.kinesis | ||
|
||
pytest.importorskip("commons_codec", reason="Only works with commons-codec installed") | ||
pytest.importorskip("kinesis", reason="Only works with async-kinesis installed") | ||
|
||
from commons_codec.transform.dynamodb import DynamoDBCDCTranslator # noqa: E402 | ||
|
||
|
||
def test_kinesis_dynamodb_cdc_insert_update(caplog, cratedb, dynamodb): | ||
""" | ||
Roughly verify that the AWS DynamoDB CDC processing works as expected. | ||
""" | ||
|
||
# Define source and target URLs. | ||
kinesis_url = f"{dynamodb.get_connection_url_kinesis_dynamodb_cdc()}/demo?region=us-east-1" | ||
cratedb_url = f"{cratedb.get_connection_url()}/testdrive/demo" | ||
|
||
# Define target table name. | ||
table_name = '"testdrive"."demo"' | ||
|
||
# Create target table. | ||
cratedb.database.run_sql(DynamoDBCDCTranslator(table_name=table_name).sql_ddl) | ||
|
||
# Define two CDC events: INSERT and UPDATE. | ||
events = [ | ||
wrap_kinesis(DYNAMODB_CDC_INSERT_NESTED), | ||
wrap_kinesis(DYNAMODB_CDC_MODIFY_NESTED), | ||
] | ||
|
||
# Initialize table loader. | ||
table_loader = KinesisRelay(kinesis_url=kinesis_url, cratedb_url=cratedb_url) | ||
|
||
# Delete stream for blank canvas. | ||
try: | ||
table_loader.kinesis_adapter.kinesis_client.delete_stream(StreamName="demo") | ||
except botocore.exceptions.ClientError as error: | ||
if error.response["Error"]["Code"] != "ResourceNotFoundException": | ||
raise | ||
|
||
# TODO: LocalStack needs a while when deleting the Stream. | ||
time.sleep(0.4) | ||
|
||
# Populate source database with data. | ||
for event in events: | ||
table_loader.kinesis_adapter.produce(event) | ||
|
||
# Run transfer command, consuming once not forever. | ||
table_loader.start(once=True) | ||
|
||
# Verify data in target database. | ||
assert cratedb.database.count_records(table_name) == 1 | ||
results = cratedb.database.run_sql(f"SELECT * FROM {table_name}", records=True) # noqa: S608 | ||
assert results[0]["data"]["list_of_objects"] == [{"foo": "bar"}, {"baz": "qux"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters