Skip to content

Commit b9f84d5

Browse files
feat(low code cdk): updated format_datetime macros to format timestamps (#448)
1 parent 01fa881 commit b9f84d5

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

airbyte_cdk/sources/declarative/interpolation/macros.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def duration(datestring: str) -> Union[datetime.timedelta, isodate.Duration]:
156156

157157

158158
def format_datetime(
159-
dt: Union[str, datetime.datetime], format: str, input_format: Optional[str] = None
159+
dt: Union[str, datetime.datetime, int], format: str, input_format: Optional[str] = None
160160
) -> str:
161161
"""
162162
Converts datetime to another format
@@ -170,9 +170,13 @@ def format_datetime(
170170
"""
171171
if isinstance(dt, datetime.datetime):
172172
return dt.strftime(format)
173-
dt_datetime = (
174-
datetime.datetime.strptime(dt, input_format) if input_format else str_to_datetime(dt)
175-
)
173+
174+
if isinstance(dt, int):
175+
dt_datetime = DatetimeParser().parse(dt, input_format if input_format else "%s")
176+
else:
177+
dt_datetime = (
178+
datetime.datetime.strptime(dt, input_format) if input_format else str_to_datetime(dt)
179+
)
176180
return DatetimeParser().format(dt=dt_datetime, format=format)
177181

178182

unit_tests/sources/declarative/interpolation/test_macros.py

+21
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,24 @@ def test_macros_export(test_name, fn_name, found_in_macros):
8383
"%Y-%m-%dT%H:%M:%SZ",
8484
"1640998861000000",
8585
),
86+
(
87+
1683729087,
88+
"%Y-%m-%dT%H:%M:%SZ",
89+
None,
90+
"2023-05-10T14:31:27Z",
91+
),
92+
(
93+
1640998861000000,
94+
"%Y-%m-%dT%H:%M:%SZ",
95+
"%epoch_microseconds",
96+
"2022-01-01T01:01:01Z",
97+
),
98+
(
99+
1640998861000,
100+
"%Y-%m-%dT%H:%M:%SZ",
101+
"%ms",
102+
"2022-01-01T01:01:01Z",
103+
),
86104
],
87105
ids=[
88106
"test_datetime_string_to_date",
@@ -96,6 +114,9 @@ def test_macros_export(test_name, fn_name, found_in_macros):
96114
"test_datetime_string_to_rfc2822_date",
97115
"test_datetime_string_to_timestamp_in_seconds",
98116
"test_datetime_string_to_timestamp_in_microseconds",
117+
"test_timestamp_to_format_string",
118+
"test_timestamp_epoch_microseconds_to_format_string",
119+
"test_timestamp_ms_to_format_string",
99120
],
100121
)
101122
def test_format_datetime(input_value, format, input_format, expected_output):

0 commit comments

Comments
 (0)