This repository was archived by the owner on Feb 20, 2026. It is now read-only.
test: Mock server for testing#1213
Merged
kevkim-codes merged 10 commits intogoogleapis:mainfrom Nov 18, 2024
Merged
Conversation
This will be useful for debugging grpc issues.
This mock server will be super useful for ensuring that the right data gets transmitted in private preview so that we can confirm the client library is working correctly.
We use the ts file instead.
kevkim-codes
approved these changes
Nov 18, 2024
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
This PR introduces a mock server that can be used with tests to debug grpc errors.
Changes
mock-server/README.mdcontains instructions for using the mock server.mock-server/datastore-server.tscontains the code for setting up the grpc server.mock-server/package.jsoncontains other packages that are needed for the mock server test.test/try-server.tscontains an example of a test that uses the mock server.