-
Notifications
You must be signed in to change notification settings - Fork 108
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
test.py
: Split into test/
#578
Conversation
Reviewer's Guide by SourceryThis PR refactors the test helper functionality by splitting the monolithic Updated class diagram for test helpersclassDiagram
class pytest_plugin {
-from libtmux.test.constants import TEST_SESSION_PREFIX
-from libtmux.test.random import get_test_session_name, namer
}
class test_constants {
+TEST_SESSION_PREFIX
+RETRY_TIMEOUT_SECONDS
+RETRY_INTERVAL_SECONDS
}
class test_random {
+get_test_session_name()
+namer()
}
class test_environment {
+EnvironmentVarGuard
}
class test_temporary {
+temp_session()
+temp_window()
}
note for test_constants "New module for test constants"
note for test_random "New module for random string generation"
note for test_environment "New module for environment variable mocking"
note for test_temporary "New module for temporary session/window management"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #578 +/- ##
==========================================
+ Coverage 78.65% 78.89% +0.24%
==========================================
Files 18 23 +5
Lines 1916 1938 +22
Branches 291 291
==========================================
+ Hits 1507 1529 +22
Misses 284 284
Partials 125 125 ☔ View full report in Codecov by Sentry. |
eb7613c
to
417ea8c
Compare
src/libtmux/test/random.py:1:1: A005 Module `random` shadows a Python standard-library module See also: https://docs.astral.sh/ruff/settings/#lint_flake8-builtins_builtins-allowed-modules
There was a problem hiding this 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 brief explanation or example usage for each function/class in the newly created modules to improve discoverability.
- Since you've split the test helpers into modules, consider renaming
test_test.py
to something more descriptive, liketest_retry.py
.
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
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
This PR completes the refactoring of test helpers started in PR #578 by removing direct imports from the `libtmux.test` root module. Users must now import from specific submodules like `libtmux.test.named` and `libtmux.test.constants`. Improvements include: - Enhanced `EnvironmentVarGuard` for more reliable environment variable handling - Added comprehensive test suites for constants and environment utilities - Improved code coverage with proper exclusion markers for type checking blocks - Better docstrings and examples in the random module These changes improve maintainability and robustness of test helpers that are used both internally and by downstream packages that depend on libtmux.
This PR refactors the test helper functionality from a monolithic
test/__init__.py
into separate, focused modules. The changes improve code organization, maintainability, and make the test utilities more modular.Changes
1. Module Reorganization
test/__init__.py
into specialized modules:test/constants.py
: Test-related constantstest/random.py
: Random string generation utilitiestest/environment.py
: Environment variable mockingtest/temporary.py
: Temporary session/window managementtest/__init__.py
: Now serves as a lightweight entry point2. New Modules
Created
test/constants.py
containing:TEST_SESSION_PREFIX
RETRY_TIMEOUT_SECONDS
RETRY_INTERVAL_SECONDS
Created
test/environment.py
containing:EnvironmentVarGuard
class for mocking environment variablesCreated
temp.py
containing context managers:temp_session()
for temporary tmux sessionstemp_window()
for temporary tmux windows3. Dependencies
random
to allowed builtin modules inpyproject.toml
pytest_plugin.py
to reflect new module structureBenefits
Testing
All existing tests continue to pass. The refactoring is purely organizational and doesn't change any functionality.
Migration
No migration steps are needed as all public APIs remain unchanged. Internal imports have been updated to reflect the new structure.
Summary by Sourcery
Chores: