Add SSE polling Phase 2 and Phase 3 tests (SEP-1699)#73
Open
Add SSE polling Phase 2 and Phase 3 tests (SEP-1699)#73
Conversation
commit: |
5d68a29 to
43ff945
Compare
Add two new test phases to the SSE polling scenario: Phase 2: Event Replay Test (test_event_replay) - Tests that server properly stores and replays events sent during disconnect - Server sends notification1, closes stream, sends notification2 and notification3 - Client should receive all notifications via event replay Phase 3: Multiple Reconnections Test (test_multiple_reconnections) - Tests that server can close stream multiple times during single tool call - Validates proper event store management across multiple reconnections Also adds corresponding tools to everything-server.ts.
43ff945 to
e5786e1
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.
Summary
Adds two new test phases to the SSE polling scenario for SEP-1699:
Phase 2: Event Replay Test
test_event_replaytoolPhase 3: Multiple Reconnections Test
test_multiple_reconnectionstoolChanges
src/scenarios/server/sse-polling.ts: Add Phase 2 and Phase 3 test methodsexamples/servers/typescript/everything-server.ts: Add corresponding toolsTest plan