-
Notifications
You must be signed in to change notification settings - Fork 0
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
Implement codegen validation for (goes)
option
#168
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #168 +/- ##
============================================
- Coverage 33.14% 31.24% -1.90%
+ Complexity 344 331 -13
============================================
Files 138 139 +1
Lines 2779 2797 +18
Branches 233 229 -4
============================================
- Hits 921 874 -47
- Misses 1795 1867 +72
+ Partials 63 56 -7 |
@armiol @alexander-yevsyukov please confirm specs for The docs fragment from `options.proto`.
In its docs, the option is compared to
The same field types are supported by Numeric and boolean fields are not intended to be either target fields or companions, as it is impossible to determine whether such a field was set or not. The |
@yevhenii-nadtochii Yes, I would consider it to be like a conditional |
@armiol @alexander-yevsyukov PTAL There is one nuance, which I initially overlooked in I suggest either align |
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.
@yevhenii-nadtochii mostly LGTM. See my comments, though.
* Provides data for parameterized [GoesMutualITest]. | ||
*/ | ||
@Suppress("unused") // Data provider for parameterized test. | ||
internal object TestDataMutual { |
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.
I would move it to .given
package and rename to ...Env
.
* Provides data for parameterized [GoesOneWayITest]. | ||
*/ | ||
@Suppress("unused") // Data provider for parameterized test. | ||
internal object TestDataOneWay { |
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.
Same as above.
@armiol PTAL |
This PR implements codegen-based validation of
(goes)
option.In particular, it does the following:
GoesPolicy
, which emits the validation rule for the target field.(goes)
fromWorkaround.kt
file, and the runtime tests for this option.The other aspects of
(goes)
feature are going to be addressed with separate PRs:ConstraintViolation
#167. There is some contradiction with how options treatdefault_messages
and customerror_msg
. It should be discussed and addressed.(set_once)
.