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

TestServer: Server, but partial'd to run on a test socket #565

Merged
merged 5 commits into from
Feb 15, 2025
Merged

Conversation

tony
Copy link
Member

@tony tony commented Feb 15, 2025

Problem

It's tricky to doctest the Server object in server.py docstrings since Server runs outside the sockets we want.

Make a TestServer that can be served to doctest_namespace as Server

Summary by Sourcery

Introduce the TempServer fixture to facilitate testing with multiple tmux servers. Add on_init and socket_name_factory callbacks to the Server class. Update documentation and tests accordingly.

Enhancements:

  • Add on_init and socket_name_factory parameters to the Server class to allow for custom initialization and socket name generation.
  • Implement TempServer fixture to create temporary, uniquely named tmux servers for testing, automatically cleaning up after each test.
  • Add tests for the TempServer fixture, covering server creation, cleanup, configuration loading, and multiple server coexistence.
  • Modify doctest_namespace to use TempServer to provide a partial'd Server object, enabling doctesting of the Server class within docstrings

Documentation:

  • Document the TempServer fixture and its usage with and without custom configuration files.
  • Update the doctest namespace to include the Server fixture from TempServer for use in docstrings

Copy link

sourcery-ai bot commented Feb 15, 2025

Reviewer's Guide by Sourcery

This pull request introduces a TempServer fixture for easier testing of libtmux's Server object. It also adds on_init and socket_name_factory callbacks to the Server class for greater flexibility. The TempServer fixture creates temporary, uniquely named tmux servers for testing, and automatically cleans them up after the test completes. It also allows multiple TempServer instances to coexist by generating unique socket names, and supports custom configuration files. Finally, it makes Server importable from doctest namespace using the TempServer fixture.

Sequence diagram for TempServer creation and cleanup

sequenceDiagram
    participant Test Function
    participant TempServer Fixture
    participant Server
    participant tmux Server Process

    Test Function->>TempServer Fixture: Request TempServer
    activate TempServer Fixture
    TempServer Fixture->>Server: functools.partial(Server, on_init, socket_name_factory)
    activate Server
    Server->>tmux Server Process: Create tmux server with unique socket name
    Server-->>TempServer Fixture: Server instance
    deactivate Server
    TempServer Fixture-->>Test Function: Server factory (partial)
    deactivate TempServer Fixture
    Test Function->>Server: Call Server()
    activate Server
    Server->>tmux Server Process: Create tmux server with unique socket name
    Server-->>Test Function: Server instance
    deactivate Server

    loop For each created socket
        Test Function->>TempServer Fixture: Test completes, finalizer called
        activate TempServer Fixture
        TempServer Fixture->>Server: Server(socket_name)
        activate Server
        Server->>tmux Server Process: Kill tmux server
        deactivate Server
        TempServer Fixture-->>Test Function: Cleanup complete
        deactivate TempServer Fixture
    end
Loading

Updated class diagram for the Server class

classDiagram
    class Server {
        -socket_name: str
        -socket_path: str
        -config_file: str
        -colors: str
        -on_init: callable
        -socket_name_factory: callable
        +__init__(
          socket_name: str | None,
          socket_path: str | pathlib.Path | None,
          config_file: str | None,
          colors: int | None,
          on_init: t.Callable[[Server], None] | None,
          socket_name_factory: t.Callable[[], str] | None
        )
        +is_alive() bool
    }
    note for Server "Added on_init and socket_name_factory attributes and parameters to the constructor"
Loading

File-Level Changes

Change Details Files
Introduces a TempServer fixture for creating temporary tmux servers in tests.
  • Adds a TempServer fixture factory that creates temporary, uniquely named tmux servers for testing.
  • Implements automatic cleanup of temporary servers after test completion using request.addfinalizer.
  • Allows multiple TempServer instances to coexist by generating unique socket names.
  • Supports custom configuration files with TempServer similar to the existing server fixture.
tests/test_pytest_plugin.py
src/libtmux/pytest_plugin.py
docs/pytest-plugin/index.md
conftest.py
Adds on_init and socket_name_factory callbacks to the Server class for greater flexibility.
  • Adds on_init and socket_name_factory parameters to the Server class.
  • Adds tests for on_init callback functionality.
  • Adds tests for socket_name_factory for custom socket name generation.
  • Adds tests for socket name precedence when both socket_name and socket_name_factory are provided.
tests/test_server.py
src/libtmux/server.py
Makes Server importable from doctest namespace using the TempServer fixture
  • Adds Server to the doctest_namespace using the TempServer fixture.
conftest.py

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 15, 2025

Codecov Report

Attention: Patch coverage is 88.67925% with 12 lines in your changes missing coverage. Please review.

Project coverage is 88.72%. Comparing base (44fe656) to head (f79993a).
Report is 6 commits behind head on master.

Files with missing lines Patch % Lines
tests/test_server.py 71.42% 6 Missing and 6 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #565      +/-   ##
==========================================
+ Coverage   88.67%   88.72%   +0.04%     
==========================================
  Files          36       36              
  Lines        3921     4027     +106     
  Branches      362      372      +10     
==========================================
+ Hits         3477     3573      +96     
- Misses        307      312       +5     
- Partials      137      142       +5     

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

@tony tony force-pushed the TestServer branch 3 times, most recently from a7aaa3e to f4bf7fb Compare February 15, 2025 13:20
@tony
Copy link
Member Author

tony commented Feb 15, 2025

@sourcery-ai review

@tony tony changed the title TestServer: Server, but partial'd to run on a test socket TempServer: Server, but partial'd to run on a test socket Feb 15, 2025
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:

  • The TempServer fixture is a great addition for testing, ensuring isolated tmux environments.
  • Consider adding a brief explanation of why time.sleep(0.1) is necessary in test_temp_server_cleanup.
Here's what I looked at during the review
  • 🟡 General issues: 1 issue found
  • 🟢 Security: all looks good
  • 🟡 Testing: 1 issue found
  • 🟡 Complexity: 1 issue found
  • 🟢 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 15, 2025

@sourcery-ai review

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:

  • The tests for TempServer use assert server.is_alive() is False which seems redundant - assert not server.is_alive() is more concise.
  • Consider adding a helper function to encapsulate the server cleanup logic to avoid repetition in the tests.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟡 Testing: 1 issue found
  • 🟡 Complexity: 1 issue found
  • 🟢 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 tony force-pushed the TestServer branch 2 times, most recently from 1c41120 to 45873b9 Compare February 15, 2025 15:05
Add two new optional parameters to Server constructor:

- socket_name_factory: Callable[[], str]
  Generates unique socket names for new servers. Used when socket_name
  is not provided. Useful for creating multiple servers with unique names.

- on_init: Callable[[Server], None]
  Callback that runs after server initialization. Useful for tracking
  server instances and performing cleanup in tests.

The socket_name_factory is tried after socket_name, maintaining backward
compatibility while adding flexibility for dynamic socket name generation.

Example:

def socket_name_factory() -> str:
    return f"tmux_{next(counter)}"
    server = Server(socket_name_factory=socket_name_factory)

This enables better testing patterns and more flexible server creation,
particularly in test environments where unique socket names are needed.
@tony tony marked this pull request as ready for review February 15, 2025 15:31
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:

  • The addition of on_init and socket_name_factory to the Server class seems like a useful extension.
  • The TempServer fixture looks like a great way to improve testing, especially for docstrings.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟡 Testing: 2 issues found
  • 🟡 Complexity: 1 issue found
  • 🟢 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 added 4 commits February 15, 2025 09:33
Adds a new pytest fixture TestServer that returns a factory for creating
tmux servers with unique socket names. Each server is automatically cleaned
up when the test completes.

The fixture provides:
- Factory function returning partial'd Server instances
- Unique socket names for each server instance
- Automatic cleanup through pytest's addfinalizer
- Support for custom tmux configs in tests

Example usage:

def test_example(TestServer):
    Server = TestServer() # Get partial'd Server
    server = Server() # Create server instance
    server.new_session()
@tony tony changed the title TempServer: Server, but partial'd to run on a test socket TestServer: Server, but partial'd to run on a test socket Feb 15, 2025
@tony
Copy link
Member Author

tony commented Feb 15, 2025

@sourcery-ai review

@tony
Copy link
Member Author

tony commented Feb 15, 2025

@sourcery-ai dismiss

@tony tony merged commit 4a08aa1 into master Feb 15, 2025
27 checks passed
@tony tony deleted the TestServer branch February 15, 2025 15:58
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