From 02b149705655438c00bb85fa9e2d7ed534479a65 Mon Sep 17 00:00:00 2001 From: BernardWez Date: Fri, 24 Nov 2023 10:01:34 +0100 Subject: [PATCH] Update & remove test relating to valid-replication-keys --- tests/test_elx/test_catalog.py | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/tests/test_elx/test_catalog.py b/tests/test_elx/test_catalog.py index a0ef4d0..2db0d64 100644 --- a/tests/test_elx/test_catalog.py +++ b/tests/test_elx/test_catalog.py @@ -78,7 +78,6 @@ "selected": True, "selected-by-default": True, "table-key-properties": ["id"], - "valid-replication-keys": ["updated_at"], }, }, ], @@ -154,32 +153,6 @@ def test_catalog_replication_key(tap: Tap): ) -def test_catalog_valid_replication_keys(tap: Tap): - """ - If we have an incremental stream, the catalog should have a metadata breadcrumb for the incremental - stream containing the key: `valid-replication-keys`. - - This key should be associated with a list containing the fields that could be used as replication keys. - For example, the metadata breadcrumb of the stream should look as follows if `updated_at` is its replication_key. - - "metadata": { - "inclusion": "available", - "selected": True, - "selected-by-default": True, - "table-key-properties": ["id"], - "valid-replication-keys": ["updated_at"], - } - """ - catalog_dict = tap.catalog.dict(by_alias=True) - - replication_keys = catalog_dict["streams"][1]["metadata"][-1]["metadata"].get( - "valid-replication-keys", None - ) - - # Checks that value of `valid-replication-keys` equals to the replication-key - assert replication_keys == [DEFAULT_CATALOG["streams"][1]["replication_key"]] - - def test_catalog_set_stream_replication_key(tap: Tap): """If we define a replication key, the catalog should be updated.""" catalog = tap.catalog