Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Replace deprecated datetime.utcnow() with timezone-aware alterna… #652

Merged
merged 7 commits into from
Mar 25, 2025
Merged
2 changes: 1 addition & 1 deletion src/taskgraph/optimize/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def replace_tasks(
dependents = [target_task_graph.tasks[l] for l in dependents_of[label]]
deadline = None
if dependents:
now = datetime.datetime.utcnow()
now = datetime.datetime.now(datetime.timezone.utc)
deadline = max(
resolve_timestamps(now, task.task["deadline"])
for task in dependents # type: ignore
Expand Down
9 changes: 5 additions & 4 deletions src/taskgraph/util/time.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def json_time_from_now(input_str, now=None, datetime_format=False):
"""

if now is None:
now = datetime.datetime.utcnow()
now = datetime.datetime.now(datetime.timezone.utc)

time = now + value_of(input_str)

Expand All @@ -98,16 +98,17 @@ def json_time_from_now(input_str, now=None, datetime_format=False):
# Sorta a big hack but the json schema validator for date does not like the
# ISO dates until 'Z' (for timezone) is added...
# Microseconds are excluded (see bug 1381801)
return time.isoformat(timespec="milliseconds") + "Z"
return time.replace(tzinfo=None).isoformat(timespec="milliseconds") + "Z"


def current_json_time(datetime_format=False):
"""
:param boolean datetime_format: Set `True` to get a `datetime` output
:returns: JSON string representation of the current time.
"""
now = datetime.datetime.now(datetime.timezone.utc)
if datetime_format is True:
return datetime.datetime.utcnow()
return now
else:
# Microseconds are excluded (see bug 1381801)
return datetime.datetime.utcnow().isoformat(timespec="milliseconds") + "Z"
return now.replace(tzinfo=None).isoformat(timespec="milliseconds") + "Z"
8 changes: 5 additions & 3 deletions test/test_optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from datetime import datetime, timedelta
from datetime import datetime, timedelta, timezone
from functools import partial

import pytest
Expand All @@ -28,8 +28,10 @@ def should_remove_task(self, task, params, arg):

class Replace(OptimizationStrategy):
def should_replace_task(self, task, params, deadline, taskid):
expires = datetime.utcnow() + timedelta(days=1)
if deadline and expires < datetime.strptime(deadline, "%Y-%m-%dT%H:%M:%S.%fZ"):
expires = datetime.now(timezone.utc) + timedelta(days=1)
if deadline and expires.replace(tzinfo=None) < datetime.strptime(
deadline, "%Y-%m-%dT%H:%M:%S.%fZ"
):
return False
return taskid

Expand Down
11 changes: 8 additions & 3 deletions test/test_util_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


import unittest
from datetime import datetime
from datetime import datetime, timezone
from unittest.mock import patch

from taskgraph.util.time import (
Expand Down Expand Up @@ -53,8 +53,13 @@ def test_json_from_now(self):

def test_current_json_time(self):
with patch("taskgraph.util.time.datetime.datetime") as mock_datetime:
mock_datetime.utcnow.return_value = datetime(2014, 1, 1)
mock_datetime.now.return_value = datetime(2014, 1, 1, tzinfo=timezone.utc)
mock_datetime.side_effect = datetime

assert current_json_time() == "2014-01-01T00:00:00.000Z"
assert current_json_time(True) == datetime(2014, 1, 1)
assert current_json_time(True) == datetime(2014, 1, 1, tzinfo=timezone.utc)

def test_json_from_now_tzinfo(self):
now = datetime(2014, 1, 1, tzinfo=timezone.utc)
self.assertEqual(json_time_from_now("1 years", now), "2015-01-01T00:00:00.000Z")
self.assertEqual(json_time_from_now("6 days", now), "2014-01-07T00:00:00.000Z")
Loading