-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix python3.13 leap day parsing warning in time.from_http_header() (#…
…1452) Signed-off-by: rafsaf <rafal.safin@rafsaf.pl>
- Loading branch information
Showing
2 changed files
with
159 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
# -*- coding: utf-8 -*- | ||
# MinIO Python Library for Amazon S3 Compatible Cloud Storage, | ||
# (C) 2024 MinIO, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import locale | ||
import threading | ||
import unittest | ||
from contextlib import contextmanager | ||
from datetime import datetime, timezone | ||
from typing import Any, Generator | ||
|
||
from minio.time import from_http_header, to_http_header | ||
|
||
LOCALE_LOCK = threading.Lock() | ||
LAST_MODIFIED_STR = "Mon, 02 Mar 2015 07:28:00 GMT" | ||
LAST_MODIFIED_DATE = datetime( | ||
year=2015, | ||
month=3, | ||
day=2, | ||
hour=7, | ||
minute=28, | ||
second=0, | ||
tzinfo=timezone.utc, | ||
) | ||
|
||
|
||
@contextmanager | ||
def setlocale(name) -> Generator[str, Any, None]: | ||
with LOCALE_LOCK: | ||
saved = locale.setlocale(locale.LC_ALL) | ||
try: | ||
yield locale.setlocale(locale.LC_ALL, name) | ||
finally: | ||
locale.setlocale(locale.LC_ALL, saved) | ||
|
||
|
||
class TimeutilsTest(unittest.TestCase): | ||
def test_from_http_header_valid_headers(self) -> None: | ||
for case in [ | ||
( | ||
"Wed, 30 Oct 2024 09:35:00 GMT", | ||
datetime( | ||
year=2024, | ||
month=10, | ||
day=30, | ||
hour=9, | ||
minute=35, | ||
second=0, | ||
tzinfo=timezone.utc, | ||
), | ||
), | ||
( | ||
"Tue, 29 Oct 2024 00:35:00 GMT", | ||
datetime( | ||
year=2024, | ||
month=10, | ||
day=29, | ||
hour=0, | ||
minute=35, | ||
second=0, | ||
tzinfo=timezone.utc, | ||
), | ||
), | ||
( | ||
"Tue, 01 Oct 2024 22:35:22 GMT", | ||
datetime( | ||
year=2024, | ||
month=10, | ||
day=1, | ||
hour=22, | ||
minute=35, | ||
second=22, | ||
tzinfo=timezone.utc, | ||
), | ||
), | ||
( | ||
"Mon, 30 Sep 2024 22:35:55 GMT", | ||
datetime( | ||
year=2024, | ||
month=9, | ||
day=30, | ||
hour=22, | ||
minute=35, | ||
second=55, | ||
tzinfo=timezone.utc, | ||
), | ||
), | ||
]: | ||
with self.subTest(case=case): | ||
self.assertEqual(from_http_header(case[0]), case[1]) | ||
|
||
def test_from_http_header_invalid_headers(self) -> None: | ||
for case in [ | ||
("Wed, 30 Oct 2024 09:35:00 GMT ", "invalid length"), | ||
("Wet, 30 Oct 2024 09:35:00 GMT", "invalid weekday"), | ||
("Wed 30 Oct 2024 09:35:00 GMT", "no comma after weekday"), | ||
("Wed,30 Sep 2024 09:35:00 GMT ", "no space after weekday"), | ||
("Wed, 30Sep 2024 09:35:00 GMT ", "no space before month"), | ||
("Wed, 00 Sep 2024 09:35:00 GMT", "invalid day"), | ||
("Wed, 32 Sep 2024 09:35:00 GMT", "invalid day 2"), | ||
("Wed, ab Sep 2024 09:35:00 GMT", "invalid day 3"), | ||
("Wed, 30 Set 2024 09:35:00 GMT", "invalid month"), | ||
("Tue, 30 Set 2024 09:35:00 GMT", "name of day doesn't match"), | ||
]: | ||
with self.subTest(case=case): | ||
self.assertRaises(ValueError, from_http_header, case[0]) | ||
|
||
def test_from_http_header_default_locale(self) -> None: | ||
result_datetime = from_http_header(LAST_MODIFIED_STR) | ||
|
||
self.assertEqual( | ||
result_datetime, | ||
LAST_MODIFIED_DATE, | ||
) | ||
|
||
def test_from_http_header_polish_locale(self) -> None: | ||
try: | ||
with setlocale("pl_PL.utf8"): | ||
result_datetime = from_http_header(LAST_MODIFIED_STR) | ||
|
||
self.assertEqual( | ||
result_datetime, | ||
LAST_MODIFIED_DATE, | ||
) | ||
except locale.Error: | ||
self.skipTest("pl_PL.utf8 locale is not supported on this machine") | ||
|
||
def test_to_http_header_default_locale(self) -> None: | ||
self.assertEqual( | ||
to_http_header(LAST_MODIFIED_DATE), | ||
LAST_MODIFIED_STR, | ||
) | ||
|
||
def test_to_http_header_polish_locale(self) -> None: | ||
try: | ||
with setlocale("pl_PL.utf8"): | ||
self.assertEqual( | ||
to_http_header(LAST_MODIFIED_DATE), | ||
LAST_MODIFIED_STR, | ||
) | ||
except locale.Error: | ||
self.skipTest("pl_PL.utf8 locale is not supported on this machine") |