-
-
Notifications
You must be signed in to change notification settings - Fork 90
GRPc: tests and refactor #3306
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
Merged
GRPc: tests and refactor #3306
Changes from all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
1c7f261
docs: add grpcw module test coverage design
robfrank c036418
docs: add detailed grpcw test implementation plan
robfrank a1ac302
build(grpcw): add test dependencies for gRPC testing
robfrank fc98953
test(grpcw): add GrpcAdminServiceIT with ping tests
robfrank ce4bd34
test(grpcw): add server info and database listing tests
robfrank 3479369
test(grpcw): add database create/drop and info tests
robfrank f521650
test(grpcw): add GrpcServerIT with query tests
robfrank 08c3445
test(grpcw): add executeCommand tests
robfrank 88e4c5b
test(grpcw): add CRUD operation tests
robfrank 2ad027d
test(grpcw): add transaction tests
robfrank 3b19e9a
test(grpcw): add streaming query tests
robfrank e131e15
test(grpcw): add bulk insert tests
robfrank 8cdb509
test(grpcw): add GrpcServerPlugin unit tests
robfrank cffa8f5
test(grpcw): add GrpcAuthInterceptor unit tests
robfrank 5538691
docs: add grpcw unit test expansion plan
robfrank ef0a708
test(grpcw): add GrpcLoggingInterceptor unit tests
robfrank 42a277b
test(grpcw): add GrpcMetricsInterceptor unit tests
robfrank b5b8dc7
test(grpcw): add GrpcCompressionInterceptor unit tests
robfrank 6c5d0c4
test(grpcw): add CompressionAwareService unit tests
robfrank d0c8d89
docs: add grpcw code quality analysis and refactoring design
robfrank fb446f1
docs: add implementation plan for extracting GrpcTypeConverter
robfrank 8ca2317
refactor(grpcw): create GrpcTypeConverter with timestamp helpers
robfrank 350c367
refactor(grpcw): add fromGrpcValue to GrpcTypeConverter
robfrank 5f4a970
test(grpcw): add tests for complex type conversions in GrpcTypeConverter
robfrank 90f0aa3
refactor(grpcw): add toGrpcValue to GrpcTypeConverter
robfrank ac168c5
test(grpcw): add round-trip and complex type tests for GrpcTypeConverter
robfrank 53e4100
refactor(grpcw): add convertParameters to GrpcTypeConverter
robfrank f9d8e12
refactor(grpcw): add bytesOf to GrpcTypeConverter
robfrank 2ef44d4
refactor(grpcw): wire GrpcTypeConverter into ArcadeDbGrpcService
robfrank 4fc53d9
final refactor
robfrank b8162f8
refactor(grpcw): address PR review comments
robfrank a7be482
fix(grpcw): address security concerns and remove planning docs
robfrank 52d61d7
docs: add gRPC token authentication design and implementation plan
robfrank 6548295
refactor(grpcw): add HttpAuthSessionManager to GrpcAuthInterceptor co…
robfrank cbd0c8b
feat(grpcw): implement token validation using HttpAuthSessionManager
robfrank d45ee91
feat(grpcw): pass HttpAuthSessionManager to GrpcAuthInterceptor
robfrank 2e05f39
test(grpcw): add integration tests for gRPC token authentication
robfrank 47a745e
docs: add comprehensive gRPC API documentation
robfrank 350872d
chore: remove completed gRPC token auth planning docs
robfrank a4722e1
fix(grpcw): replace reflection with direct API calls, return UNIMPLEM…
robfrank 768f411
fix(grpcw): address PR code quality issues 4, 5, 6
robfrank 6e31ab3
fix fqns: move to imports
robfrank a5d7f97
add transcacion od schema creation
robfrank File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version for the
mockito-coredependency is specified as${mockito-core.version}. Please ensure this property is defined in the parentpom.xml. If it's a typo and should be${mockito.version}(which is a more common property name for Mockito), please correct it. An undefined property will cause build failures.