René's URL Explorer Experiment


Title: tests: resolve TOCTOU port race conditions for streamable-HTTP/SSE tests by Ar-maan05 · Pull Request #2705 · modelcontextprotocol/python-sdk · GitHub

Open Graph Title: tests: resolve TOCTOU port race conditions for streamable-HTTP/SSE tests by Ar-maan05 · Pull Request #2705 · modelcontextprotocol/python-sdk

X Title: tests: resolve TOCTOU port race conditions for streamable-HTTP/SSE tests by Ar-maan05 · Pull Request #2705 · modelcontextprotocol/python-sdk

Description: This PR resolves intermittent test failures and flakiness in the CI matrix (specifically under pytest -n auto parallelism) caused by a time-of-check/time-of-use (TOCTOU) port race when allocating ports for test servers. Closes #2704 Root Cause Previously, test server port fixtures bound to 127.0.0.1:0 to find a free port, then closed the socket immediately to return the port number. Between this allocation and the server starting in a separate multiprocessing.Process to bind that port, another parallel worker could be assigned the same port. This caused two primary issues: OSError: [Errno 98] Address already in use (failing to start the server) Crossed/interleaved connections where a client connects to the wrong test server instance. Solution I converted the server processes to bind their socket ephemerally (127.0.0.1:0) and called listen() inside the child process itself. The socket remains open and in a listening state throughout the process lifecycle. The child process reports its dynamically allocated port back to the parent process using a unidirectional multiprocessing.Pipe. • This fully closes the TOCTOU gap because the socket is never closed between check and use. • It removes the need for wait_for_server polling (since the socket is already listening before the fixture yields). • It remains fully cross-platform compatible as it does not require inheriting or pickling socket descriptors across process boundaries (only the pipe connection and integers are sent across process boundaries). Affected Files Migrated • tests/shared/test_streamable_http.py • tests/shared/test_sse.py • tests/server/test_sse_security.py • tests/server/test_streamable_http_security.py • tests/client/test_http_unicode.py Other Cleanups • Added a reusable running_server context manager in tests/test_helpers.py. • Removed the unused wait_for_server helper from tests/test_helpers.py to maintain 100% test coverage. • Updated affected test cases to consume these fixtures directly as URL strings, avoiding unnecessary server startups. Verification Automated Tests uv run --frozen --no-default-groups --group dev pytest • Result: 1271 passed (1172 passed, 98 skipped, 1 xfailed). Linting & Formatting uv run --frozen --no-default-groups --group dev ruff check . uv run --frozen --no-default-groups --group dev pyright • Result: 0 errors, 0 warnings. Test Coverage uv run --frozen --no-default-groups --group dev coverage report • Result: 100.00% Coverage (19,675 statements, 0 missed).

Open Graph Description: This PR resolves intermittent test failures and flakiness in the CI matrix (specifically under pytest -n auto parallelism) caused by a time-of-check/time-of-use (TOCTOU) port race when allocating p...

X Description: This PR resolves intermittent test failures and flakiness in the CI matrix (specifically under pytest -n auto parallelism) caused by a time-of-check/time-of-use (TOCTOU) port race when allocating p...

Opengraph URL: https://github.com/modelcontextprotocol/python-sdk/pull/2705

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:beef0516-e56f-e9ed-61ca-affbebc25a64
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id952A:30B305:B3F086:F3351E:6A5A91FD
html-safe-nonce3dbbce2e5c1b38b7d0f900f951778a277dac662e51b9bdf689d17571be550b48
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTJBOjMwQjMwNTpCM0YwODY6RjMzNTFFOjZBNUE5MUZEIiwidmlzaXRvcl9pZCI6Ijg3ODE4ODA0NzQ2OTg2ODI4NzciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3fb9e39fb6edb45101d0f272083aed4db47950cb03f21ab1d3f20acd1231f113
hovercard-subject-tagpull_request:3760832237
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/modelcontextprotocol/python-sdk/pull/2705/files
twitter:imagehttps://avatars.githubusercontent.com/u/74664101?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/74664101?s=400&v=4
og:image:altThis PR resolves intermittent test failures and flakiness in the CI matrix (specifically under pytest -n auto parallelism) caused by a time-of-check/time-of-use (TOCTOU) port race when allocating p...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None9989a1a1d89aa5a38a19e5d0c7ee88a8ffde84acde90048990492aae52f235db
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/modelcontextprotocol/python-sdk git https://github.com/modelcontextprotocol/python-sdk.git
octolytics-dimension-user_id182288589
octolytics-dimension-user_loginmodelcontextprotocol
octolytics-dimension-repository_id862584018
octolytics-dimension-repository_nwomodelcontextprotocol/python-sdk
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id862584018
octolytics-dimension-repository_network_root_nwomodelcontextprotocol/python-sdk
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseba6769fbf719c56dbf7bed650ce454dafc5b1528
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fpull%2F2705%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmodelcontextprotocol%2Fpython-sdk%2Fpull%2F2705%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=modelcontextprotocol%2Fpython-sdk
Reloadhttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Reloadhttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Reloadhttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
modelcontextprotocol https://github.com/modelcontextprotocol
python-sdkhttps://github.com/modelcontextprotocol/python-sdk
Notifications https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Fork 3.7k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Star 23.6k https://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk
Code https://github.com/modelcontextprotocol/python-sdk
Issues 256 https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests 303 https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality 6 https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
Code https://github.com/modelcontextprotocol/python-sdk
Issues https://github.com/modelcontextprotocol/python-sdk/issues
Pull requests https://github.com/modelcontextprotocol/python-sdk/pulls
Actions https://github.com/modelcontextprotocol/python-sdk/actions
Projects https://github.com/modelcontextprotocol/python-sdk/projects
Models https://github.com/modelcontextprotocol/python-sdk/models
Security and quality https://github.com/modelcontextprotocol/python-sdk/security
Insights https://github.com/modelcontextprotocol/python-sdk/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmodelcontextprotocol%2Fpython-sdk%2Fissues%2Fnew%2Fchoose
Ar-maan05https://github.com/Ar-maan05
modelcontextprotocol:mainhttps://github.com/modelcontextprotocol/python-sdk/tree/main
Ar-maan05:deterministic-test-portshttps://github.com/Ar-maan05/python-sdk/tree/deterministic-test-ports
Conversation 1 https://github.com/modelcontextprotocol/python-sdk/pull/2705
Commits 1 https://github.com/modelcontextprotocol/python-sdk/pull/2705/commits
Checks 27 https://github.com/modelcontextprotocol/python-sdk/pull/2705/checks
Files changed https://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
tests: resolve TOCTOU port race conditions for streamable-HTTP/SSE tests https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#top
Show all changes 1 commit https://github.com/modelcontextprotocol/python-sdk/pull/2705/files
d764062 tests: resolve TOCTOU port race conditions for streamable-HTTP/SSE tests Ar-maan05 May 28, 2026 https://github.com/modelcontextprotocol/python-sdk/pull/2705/commits/d764062cb68b7cd31e657906bb69589d20598d7a
Clear filters https://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
test_http_unicode.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
test_sse_security.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
test_streamable_http_security.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-99641f6cbe257be62af18938eeaacc6b089a42a859dac58486fe17506a9de558
test_sse.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-a2934f5f6ec610dff6774352c41b8c697b539614667643d69fd67f6fc6d7765e
test_streamable_http.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-57d1f3c64af36960aa61b1d77387fb6201b90fbc2f3d606bf2761315ce618cc5
test_helpers.py https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-08a6944653efc734f4c8cb856fc854b9f21d655ca69796af2b170c53bff7919e
tests/client/test_http_unicode.pyhttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
View file https://github.com/Ar-maan05/python-sdk/blob/d764062cb68b7cd31e657906bb69589d20598d7a/tests/client/test_http_unicode.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/python-sdk/pull/2705/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-1abfe619fb6ecef0087c7e77c14530625aee85ec1dc1db958de2f341769c21c9
tests/server/test_sse_security.pyhttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
View file https://github.com/Ar-maan05/python-sdk/blob/d764062cb68b7cd31e657906bb69589d20598d7a/tests/server/test_sse_security.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/modelcontextprotocol/python-sdk/pull/2705/{{ revealButtonHref }}
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
https://github.com/modelcontextprotocol/python-sdk/pull/2705/files#diff-c4352f0bf263a51087a1f9dbd97e778a2fa4bf3fc0eced12e4bb84af262b7d8e
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
Please reload this pagehttps://github.com/modelcontextprotocol/python-sdk/pull/2705/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.