Skip to content

Commit

Permalink
Ãrefactor: update
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino committed Sep 4, 2024
1 parent e8a4f1d commit 32cb9db
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 42 deletions.
5 changes: 2 additions & 3 deletions cognite/client/data_classes/data_modeling/typed_instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import inspect
from abc import ABC
from collections.abc import Iterable
from datetime import date
from datetime import date, datetime
from typing import TYPE_CHECKING, Any, cast

from typing_extensions import Self
Expand All @@ -20,7 +20,6 @@
_serialize_property_value,
)
from cognite.client.utils._text import to_camel_case
from cognite.client.utils._time import timestamp_str_to_datetime

if TYPE_CHECKING:
from cognite.client import CogniteClient
Expand Down Expand Up @@ -305,7 +304,7 @@ def _deserialize_value(value: Any, parameter: inspect.Parameter) -> Any:
return value
annotation = str(parameter.annotation)
if "datetime" in annotation and isinstance(value, str):
return timestamp_str_to_datetime(value)
return datetime.strptime(value, "%Y-%m-%dT%H:%M:%S.%f%z")
elif "date" in annotation and isinstance(value, str):
return date.fromisoformat(value)
elif DirectRelationReference.__name__ in annotation and isinstance(value, dict):
Expand Down
17 changes: 0 additions & 17 deletions cognite/client/utils/_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,23 +178,6 @@ def datetime_to_ms_iso_timestamp(dt: datetime) -> str:
raise TypeError(f"Expected datetime object, got {type(dt)}")


def timestamp_str_to_datetime(timestamp: str) -> datetime:
"""Converts a timestamp string in ISO 8601 format to a datetime object.
Args:
timestamp (str): Timestamp string in ISO 8601 format
Returns:
datetime: Datetime object
"""
try:
return datetime.fromisoformat(timestamp)
except ValueError:
# Typically hits if the timestamp is missing milliseconds
# For example, "2021-01-01T00:00:00.17+00:00", i.e. missing the last digit
return datetime.strptime(timestamp, "%Y-%m-%dT%H:%M:%S.%f%z")


def split_granularity_into_quantity_and_normalized_unit(granularity: str) -> tuple[int, str]:
"""A normalized unit is any unit accepted by the API"""
if match := re.match(r"(\d+)(.*)", granularity):
Expand Down
22 changes: 0 additions & 22 deletions tests/tests_unit/test_utils/test_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
parse_str_timezone,
parse_str_timezone_offset,
split_time_range,
timestamp_str_to_datetime,
timestamp_to_ms,
to_fixed_utc_intervals,
to_pandas_freq,
Expand Down Expand Up @@ -231,27 +230,6 @@ def test_negative(self, t):
timestamp_to_ms(t)


class TestTimestampStrToDatetime:
@pytest.mark.parametrize(
"timestamp_str, expected",
[
("2021-01-01T00:00:00.000+00:00", datetime(2021, 1, 1, 0, 0, 0, 0, tzinfo=timezone.utc)),
("2021-01-01T00:00:00.000+01:00", datetime(2021, 1, 1, 0, 0, 0, 0, tzinfo=timezone(timedelta(hours=1)))),
(
"2021-01-01T00:00:00.000+01:15",
datetime(2021, 1, 1, 0, 0, 0, 0, tzinfo=timezone(timedelta(hours=1, minutes=15))),
),
(
"2021-01-01T00:00:00.000-01:15",
datetime(2021, 1, 1, 0, 0, 0, 0, tzinfo=timezone(timedelta(hours=-1, minutes=-15))),
),
("2024-09-03T09:36:01.17+00:00", datetime(2024, 9, 3, 9, 36, 1, 170000, tzinfo=timezone.utc)),
],
)
def test_valid_timestamp_str(self, timestamp_str: str, expected: datetime) -> None:
assert expected == timestamp_str_to_datetime(timestamp_str)


class TestGranularityToMs:
@pytest.mark.parametrize(
"granularity, expected_ms",
Expand Down

0 comments on commit 32cb9db

Please sign in to comment.