Skip to content

Commit

Permalink
formatting and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekMaggio committed Apr 8, 2024
1 parent 44f23a3 commit ece5598
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ class FunctionTime:
end_time: datetime


class FunctionTimer(AbstractContextManager, AbstractAsyncContextManager):
class FunctionTimer(
AbstractContextManager["FunctionTimer"],
AbstractAsyncContextManager["FunctionTimer"],
):
"""A context manager that tracks the start and end time of a function.
Handles both synchronous and asynchronous functions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ async def test_synchronous_and_asynchronous_function_with_exception() -> None:
time = tracker.get_time()
assert time.start_time < time.end_time


async def test_nested_synchronous_functions() -> None:
"""Tests that the FunctionTimer correctly times nested synchronous functions."""
with FunctionTimer() as outer_tracker:
Expand All @@ -119,6 +120,7 @@ async def test_nested_synchronous_functions() -> None:
assert outer_time.start_time < inner_time.start_time
assert outer_time.end_time >= inner_time.end_time


async def test_timing_sychronous_function_nested_inside_async_function() -> None:
"""Tests that the FunctionTimer correctly times a synchronous function inside an asynchronous context manager."""
async with FunctionTimer() as async_tracker:
Expand Down Expand Up @@ -206,17 +208,30 @@ async def test_function_timer_with_async_contexts() -> None:
assert f1_time.start_time < f2_time.start_time
assert f1_time.end_time >= f2_time.end_time

def test_direct_use_without_context_manager():

def test_direct_use_without_context_manager() -> None:
"""Tests the behavior of FunctionTimer when used directly without a context manager block.
Verifies that the start and end times are not set and that an appropriate assertion is raised when attempting to access them.
"""
timer = FunctionTimer()
assert timer._start_time is None
assert timer._end_time is None

assert (
timer._start_time is None
), "Start time should be None when not used within a context manager"
assert (
timer._end_time is None
), "End time should be None when not used within a context manager"

with pytest.raises(AssertionError):
timer.get_time()

def test_calling_get_time_before_context_manager_finishes():

def test_calling_get_time_before_context_manager_finishes() -> None:
"""Tests that attempting to call get_time before the context manager has properly finished (exited) results in an assertion error.
This simulates the scenario where get_time is called prematurely, ensuring the timer enforces correct usage patterns.
"""
with pytest.raises(AssertionError):
with FunctionTimer() as timer:
synchronous_function()
timer.get_time()

0 comments on commit ece5598

Please sign in to comment.