test: upgrade integration harnesses for dual-server execution#706
Open
anubhav756 wants to merge 1 commit into
Open
test: upgrade integration harnesses for dual-server execution#706anubhav756 wants to merge 1 commit into
anubhav756 wants to merge 1 commit into
Conversation
twishabansal
reviewed
Jul 2, 2026
twishabansal
reviewed
Jul 2, 2026
Contributor
There was a problem hiding this comment.
Would it come under just testing infra change? Should it be moved to another PR?
twishabansal
reviewed
Jul 2, 2026
twishabansal
reviewed
Jul 2, 2026
f81589a to
1b769cf
Compare
1b769cf to
51e553c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR upgrades the integration test harnesses across the SDK (
core,adk,langchain, andllamaindex) to support running integration tests against multiple Toolbox server configurations simultaneously.By parameterizing the
toolbox_server_urlfixture and updating the Cloud Build configurations, the CI will now spin up and test against two server instances:Motivation
This is a pure testing infrastructure change. It lays the groundwork for the upcoming
DRAFT-2026-v1protocol support, ensuring we can test backward compatibility (graceful protocol downgrading) against older servers without breaking any existing test cases.Note
The presubmits fail because in this PR, we configured the test suite to run against both stable (
5000) and draft (5001). It fails because it successfully negotiated the draft spec. This is fixed in the #703 branch (which is stacked on top of this PR).Note
This PR focusses only on parameterizing the tests. The fallback logic is broken at this stage which caused crashes against the stable server, so we added the
if "DRAFT" not in vfilter there temporarily. However, in the upcoming PR #703 that workaround is removed.