-
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
Remove nested violations #180
Conversation
# Conflicts: # dependencies.md # pom.xml # version.gradle.kts
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #180 +/- ##
============================================
+ Coverage 31.53% 31.76% +0.23%
Complexity 329 329
============================================
Files 142 142
Lines 2838 2814 -24
Branches 235 229 -6
============================================
- Hits 895 894 -1
+ Misses 1876 1855 -21
+ Partials 67 65 -2 |
# Conflicts: # buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt # dependencies.md
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 please see my comments.
@External @Where(field = OPTION_NAME, equals = IF_INVALID) e: FieldOptionDiscovered | ||
) = super.onErrorMessage(e) | ||
override fun extractErrorMessage(option: Option): String = error( | ||
"Can not extract custom error message for `($VALIDATE)` option using `$option`. " + |
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.
"Cannot".
@@ -30,11 +30,8 @@ message ValidatedField { | |||
|
|||
FieldId id = 1; | |||
|
|||
// Message appearing when this field is not valid. | |||
string error_message = 2; |
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.
Given this is a part of the public API, I would deprecate the field first.
val violations = error.get().constraintViolationList | ||
|
||
// We should have 2 violations instead of 1. | ||
// We should have 3 violations instead of 2. |
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.
But below the code says violations.size shouldBe 2
. Who's right?
* A view of a field that is marked with `(validate)`. | ||
* | ||
* Note: this option [does not have][NO_ERROR_MESSAGE] an error message. It triggers | ||
* in-depth validation and, in case of errors, propagates only the initial cause. |
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.
"...propagates only the first one occurred."
) = super.onErrorMessage(e) | ||
override fun extractErrorMessage(option: Option): String = error( | ||
"Can not extract custom error message for `($VALIDATE)` option using `$option`. " + | ||
"`($VALIDATE)` does not support custom error message." |
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.
"... does not support custom error messages". Alternatively, if left singular, you will need an article.
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.
Please see my comments.
@@ -104,5 +104,5 @@ message ConstraintViolation { | |||
// This field is not populated, if fields of the corresponding message type do not have | |||
// validation constraints, and simply non-default value was required in the parent message. | |||
// | |||
repeated ConstraintViolation violation = 5; | |||
repeated ConstraintViolation violation = 5 [deprecated = true]; |
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.
Please document the deprecation.
@@ -46,14 +46,10 @@ public fun SimpleRule( | |||
field: FieldName, | |||
customFeature: Message, | |||
description: String, | |||
errorMessage: String, | |||
errorMessage: String = "", |
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.
Please document the case when the error message could be empty, and why this is the default case.
} | ||
} | ||
|
||
private const val NO_ERROR_MESSAGE = "" |
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.
Please move it into a companion object.
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.
LGTM
This PR does the following:
(if_invalid)
option. There's no error message for(validate)
anymore.(validate)
.I haven't introduced a nullable error message in
BoolFieldOptionView
for two reasons:(valiate)
has its ownCodeGenerator
.Rule
's framework, which is quite useless becauseRule
s are Protobuf messages, whereno string
remains anempty string
.