Add some missing tests to the test setting of Bazel for Ruby#19870
Closed
y-yagi wants to merge 3 commits intoprotocolbuffers:mainfrom
Closed
Add some missing tests to the test setting of Bazel for Ruby#19870y-yagi wants to merge 3 commits intoprotocolbuffers:mainfrom
y-yagi wants to merge 3 commits intoprotocolbuffers:mainfrom
Conversation
Contributor
|
Seeing new failures that differ across configurations: On Ruby 3.3 FFI (but not when running without FFI): On JRuby (with and without FFI): and |
Contributor
Author
|
@JasonLunn I pushed some commits to fix the tests c451812 、bbfd9a0 、7d8d9d5 Could you review? |
Contributor
Author
|
Hmm. Sorry, tests are sill failing. I will check. |
7d8d9d5 to
586cfbf
Compare
JasonLunn
reviewed
Jan 11, 2025
| end | ||
|
|
||
| def test_service_options_extensions | ||
| omit "JRuby does not support service options extensions" if defined? JRUBY_VERSION && :NATIVE == Google::Protobuf::IMPLEMENTATIO |
586cfbf to
be27833
Compare
Contributor
Author
|
@JasonLunn |
Contributor
Author
|
Hmm, it seems that unrelated tests(Python) have failed. I will rebase withe the latest code. |
I'm not sure why, but it seems that some tests are not running via Bazel. CI uses Bazel. So I think we should add those to test correctly.
These tests are for CRuby native implementation. So this doesn't work with FFI and JRuby. Ref: protocolbuffers#10291
It seems that JRuby doesn't support this so far. And, service options are frozen objects. But, in CRuby FFI, can't get a Message instance if the message is frozen. So this doesn't work. https://github.com/protocolbuffers/protobuf/blob/d406cae0138f4f1f283a22be9474bef1f48bb0dc/ruby/lib/google/protobuf/ffi/message.rb#L419 So the service options extension test only passes in CRuby native.
be27833 to
d51158d
Compare
acozzette
approved these changes
Jan 30, 2025
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.
I'm not sure why, but it seems that some tests are not running via Bazel. CI uses Bazel. So I think we should add those to test correctly.
Also, I fixed some tests to pass.
protobuf/ruby/lib/google/protobuf/ffi/message.rb
Line 419 in d406cae