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

Coverage: Test helpers #580

Merged
merged 26 commits into from
Feb 25, 2025
Merged

Coverage: Test helpers #580

merged 26 commits into from
Feb 25, 2025

Conversation

tony
Copy link
Member

@tony tony commented Feb 24, 2025

Changes

Breaking Changes

  • Removed ability to import directly from libtmux.test root module
    • Users must now import from specific submodules like libtmux.test.named, libtmux.test.constants, etc.
    • This completes the refactoring started in PR test.py: Split into test/ #578

Improvements

  • Enhanced EnvironmentVarGuard in libtmux.test.environment to better handle variable cleanup:

    • Fixed edge cases when unsetting variables that were previously set in the same context
    • Added protection against accidentally deleting variables that were reset
    • Improved internal tracking of environment variable state
  • Added comprehensive test suites:

    • New tests for constants module (tests/test/test_constants.py)
    • New tests for environment utilities (tests/test/test_environment.py)
    • Tests for environment variable configuration through env vars
  • Improved code quality:

    • Added proper coverage markers with pragma: no cover for type checking blocks
    • Updated .coveragerc patterns in pyproject.toml to exclude type checking imports
    • Improved docstrings and examples in random module
  • Documentation and maintainability:

    • Updated CHANGES to document breaking changes and improvements
    • Added more explicit docstring examples in test utilities

Test plan

Coverage

uv run py.test --cov=libtmux.test tests/test -v

Summary by Sourcery

This pull request introduces test helpers for creating temporary sessions and windows, and for generating random names for sessions and windows. These helpers are intended to simplify and improve the reliability of tests that require creating and destroying tmux objects.

Summary by Sourcery

Introduce test helpers for creating temporary sessions and windows, and for generating random names for sessions and windows. Enhance EnvironmentVarGuard to better handle variable cleanup. Remove ability to import directly from libtmux.test root module. Add comprehensive test suites for constants module and environment utilities. Improve code quality by adding proper coverage markers and updating .coveragerc patterns.

New Features:

  • Introduce test helpers for creating temporary sessions and windows, and for generating random names for sessions and windows.

Bug Fixes:

  • Fix edge cases in EnvironmentVarGuard when unsetting environment variables that were previously set in the same context, and add protection against accidentally deleting variables that were reset.

Documentation:

  • Update CHANGES to document breaking changes and improvements, and add more explicit docstring examples in test utilities.

Tests:

  • Add comprehensive test suites for constants module and environment utilities, and add tests for environment variable configuration through env vars.

Copy link

sourcery-ai bot commented Feb 24, 2025

Reviewer's Guide by Sourcery

This pull request refactors and improves the test helpers in libtmux. It removes the ability to import directly from the libtmux.test root module, enhances the EnvironmentVarGuard, adds comprehensive test suites, improves code quality with coverage markers, and provides test helpers for creating temporary sessions and windows. The changes also include updates to documentation and the changelog.

Updated class diagram for EnvironmentVarGuard

classDiagram
    class EnvironmentVarGuard {
        - env: dict
        - active: bool
        + __init__(env: dict = None)
        + __enter__(): EnvironmentVarGuard
        + __exit__(exc_type, exc_value, traceback)
        + set(varname: str, value: str)
        + unset(varname: str)
    }
    note for EnvironmentVarGuard "Handles environment variables, setting and unsetting them, and restoring previous values upon exit."
Loading

File-Level Changes

Change Details Files
Refactored test helpers by removing the ability to import directly from the libtmux.test root module. Users must now import from specific submodules.
  • Removed the __init__.py file.
  • Adjusted imports in other test files to reflect the new submodule structure.
src/libtmux/test/__init__.py
Enhanced EnvironmentVarGuard to improve handling of environment variables.
  • Fixed edge cases when unsetting variables that were previously set in the same context.
  • Added protection against accidentally deleting variables that were reset.
  • Improved internal tracking of environment variable state.
src/libtmux/test/environment.py
Added comprehensive test suites for constants and environment utilities.
  • Created new tests for the constants module.
  • Created new tests for the environment utilities.
  • Added tests for environment variable configuration through env vars.
tests/test/test_constants.py
tests/test/test_environment.py
Improved code quality by adding coverage markers and updating coverage patterns.
  • Added pragma: no cover for type checking blocks.
  • Updated .coveragerc patterns in pyproject.toml to exclude type checking imports.
src/libtmux/test/random.py
pyproject.toml
Added test helpers for creating temporary sessions and windows, and for generating random names for sessions and windows.
  • Created temp_session and temp_window context managers for creating temporary tmux sessions and windows.
  • Added get_test_session_name and get_test_window_name functions for generating random names for sessions and windows.
  • Added RandomStrSequence class for generating random strings.
  • Added tests for the new test helpers.
src/libtmux/test/random.py
tests/test/test_random.py
tests/test/test_temporary.py
Updated retry tests to improve timing accuracy.
  • Added sleeps to simulate work.
  • Adjusted assertions to allow for small timing variations.
tests/test/test_retry.py
Updated documentation and changelog to reflect the changes.
  • Updated CHANGES to document breaking changes and improvements.
  • Added more explicit docstring examples in test utilities.
CHANGES

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

codecov bot commented Feb 24, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 79.83%. Comparing base (0c9231c) to head (a4658c9).
Report is 27 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #580      +/-   ##
==========================================
+ Coverage   78.89%   79.83%   +0.93%     
==========================================
  Files          23       22       -1     
  Lines        1938     1914      -24     
  Branches      291      294       +3     
==========================================
- Hits         1529     1528       -1     
+ Misses        284      266      -18     
+ Partials      125      120       -5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@tony tony force-pushed the test-helpers-coverage branch 9 times, most recently from 926d744 to d254201 Compare February 25, 2025 13:27
tony added 19 commits February 25, 2025 09:43
why: Ensure test utilities for random string generation and naming work correctly

what:
- Add tests for RandomStrSequence with default and custom characters
- Test iterator protocol and uniqueness guarantees
- Test session/window name generation with real tmux server
- Use string.ascii_uppercase for predictable character set
- Verify prefix requirements and name collisions

refs: Uses global server/session fixtures for real tmux testing
why: Ensure temporary tmux objects are properly created and cleaned up

what:
- Test session creation and automatic cleanup
- Verify custom session names are respected
- Test window creation and automatic cleanup
- Ensure cleanup happens even during exceptions
- Verify window counts and IDs before/after operations

refs: Uses global server/session fixtures for real tmux testing
why: Ensure test utilities handle name collisions correctly

what:
- Fix mocking of RandomStrSequence.__next__
- Add doctest examples coverage
- Test name collision handling in both session and window names

refs: Coverage improved from 52% to 58%
why: Ensure test constants are correctly defined and configurable

what:
- Test default values for retry timeouts
- Test environment variable configuration
- Test session prefix constant

refs: Coverage for constants.py now at 100%
- Add new test file for environment variable management
- Test setting and unsetting environment variables
- Test context manager functionality
- Test cleanup on normal exit and exceptions
- Improve EnvironmentVarGuard to properly handle unset variables
- Ensure variables are restored to original state
- Add test for default character set
- Add test for custom character sets
- Add test for string uniqueness
- Add test for iterator protocol
- Add test for doctest examples
- Improve test coverage and maintainability
- Add realistic sleep durations to simulate work
- Add timing assertions with reasonable tolerances
- Test both success and timeout scenarios
- Test behavior with raises=False option
- Improve test readability with clear timing expectations
- Remove duplicate logger definition
- Add proper Self type hint for Python 3.11+
- Clean up redundant type checking imports
- Improve code organization
- Add test for logger configuration
- Add tests for multiple collisions in name generation
- Add test for Self type annotation (Python 3.11+)
- Add test for global namer instance
- Add doctest example coverage
- Use a single with statement with multiple contexts
- Fix SIM117 ruff linting issue
- Add pragma: no cover to type checking imports

- Add pragma: no cover to future annotations

- Add pragma: no cover to Self type imports
- Add pragma: no cover to doctest examples

- Fix Self type imports for Python 3.11+

- Improve coverage reporting accuracy
- Add test for unsetting previously set variables

- Add test for __exit__ with exception parameters

- Fix line length issues in random.py

- Fix Self type imports in random.py
- Remove unused pytest import from test_environment.py
why: The doctest examples were using line continuation with backslash followed by ellipsis which caused syntax errors during doctest execution.

what: Replace multiline examples with simpler single-line assertions and use intermediate variables to make the examples more readable
- Add test_random_str_sequence_small_character_set to verify behavior with exactly 8 characters
- Add test_random_str_sequence_insufficient_characters to verify proper error handling
- Add test_logger_configured to verify logger configuration using caplog fixture
- Improve assertion messages for better test diagnostics
- Use pytest.LogCaptureFixture for proper logger testing
tony added 5 commits February 25, 2025 09:43
- Add test_temp_session_outside_context to test handling of manually killed sessions
- Add test_temp_window_outside_context to verify cleanup behavior for windows
- Improve comments and assertions for better test clarity
- Fix formatting and line length issues

test: remove mocked session test in favor of real implementation
why: Ensure test utilities are properly tested and typed

what: - Add proper type annotations for monkeypatch in test functions - Improve test coverage for RandomStrSequence iterator protocol - Add tests for collision handling with actual tmux objects - Add tests for import coverage and return statements - Fix formatting to comply with linting rules
@tony tony force-pushed the test-helpers-coverage branch from d254201 to a02e05a Compare February 25, 2025 15:43
@tony tony marked this pull request as ready for review February 25, 2025 22:07
Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @tony - I've reviewed your changes - here's some feedback:

Overall Comments:

  • Consider adding a helper function to encapsulate the logic for creating and cleaning up temporary tmux objects, reducing code duplication in tests.
  • The changes to EnvironmentVarGuard look good, but consider adding a test case that specifically verifies the scenario where a variable is unset and then reset within the same context.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟢 Testing: all looks good
  • 🟢 Complexity: all looks good
  • 🟢 Documentation: all looks good

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@tony
Copy link
Member Author

tony commented Feb 25, 2025

@sourcery-ai resolve

@tony tony merged commit aefef02 into master Feb 25, 2025
27 checks passed
@tony tony deleted the test-helpers-coverage branch February 25, 2025 22:12
tony added a commit that referenced this pull request Feb 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant