-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 1879-bug-batch-config-schema-is-not-appended…
…-to-targets-own-config-schema-if-the-target-supports-the-batch-capability
- Loading branch information
Showing
5 changed files
with
78 additions
and
6 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
Empty file.
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,55 @@ | ||
from __future__ import annotations | ||
|
||
from freezegun import freeze_time | ||
|
||
from tests.conftest import BatchSinkMock, TargetMock | ||
|
||
|
||
def test_sdc_metadata(): | ||
with freeze_time("2023-01-01T00:00:00+00:00"): | ||
target = TargetMock() | ||
|
||
sink = BatchSinkMock( | ||
target, | ||
"users", | ||
{"type": "object", "properties": {"id": {"type": "integer"}}}, | ||
["id"], | ||
) | ||
|
||
record_message = { | ||
"type": "RECORD", | ||
"stream": "users", | ||
"record": {"id": 1}, | ||
"time_extracted": "2021-01-01T00:00:00+00:00", | ||
"version": 100, | ||
} | ||
record = record_message["record"] | ||
|
||
with freeze_time("2023-01-01T00:05:00+00:00"): | ||
sink._add_sdc_metadata_to_record(record, record_message, {}) | ||
|
||
assert record == { | ||
"id": 1, | ||
"_sdc_extracted_at": "2021-01-01T00:00:00+00:00", | ||
"_sdc_received_at": "2023-01-01T00:05:00+00:00", | ||
"_sdc_batched_at": "2023-01-01T00:05:00+00:00", | ||
"_sdc_deleted_at": None, | ||
"_sdc_sequence": 1672531500000, | ||
"_sdc_table_version": 100, | ||
"_sdc_sync_started_at": 1672531200000, | ||
} | ||
|
||
sink._add_sdc_metadata_to_schema() | ||
assert sink.schema == { | ||
"type": "object", | ||
"properties": { | ||
"id": {"type": "integer"}, | ||
"_sdc_extracted_at": {"type": ["null", "string"], "format": "date-time"}, | ||
"_sdc_received_at": {"type": ["null", "string"], "format": "date-time"}, | ||
"_sdc_batched_at": {"type": ["null", "string"], "format": "date-time"}, | ||
"_sdc_deleted_at": {"type": ["null", "string"], "format": "date-time"}, | ||
"_sdc_sequence": {"type": ["null", "integer"]}, | ||
"_sdc_table_version": {"type": ["null", "integer"]}, | ||
"_sdc_sync_started_at": {"type": ["null", "integer"]}, | ||
}, | ||
} |