Skip to content
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

Merged
merged 22 commits into from
Jan 10, 2025
Merged

Conversation

yevhenii-nadtochii
Copy link
Contributor

@yevhenii-nadtochii yevhenii-nadtochii commented Jan 7, 2025

This PR does the following:

  1. Removes usages of the deprecated (if_invalid) option. There's no error message for (validate) anymore.
  2. Deprecates nested violations and removes its usages. We no longer create an umbrella violation for (validate).

I haven't introduced a nullable error message in BoolFieldOptionView for two reasons:

  1. An empty error message can not be misused. (valiate) has its own CodeGenerator.
  2. We would have to tackle with nullability down the Rule's framework, which is quite useless because Rules are Protobuf messages, where no string remains an empty string.

@yevhenii-nadtochii yevhenii-nadtochii self-assigned this Jan 7, 2025
Copy link

codecov bot commented Jan 8, 2025

Codecov Report

Attention: Patch coverage is 33.33333% with 12 lines in your changes missing coverage. Please review.

Project coverage is 31.76%. Comparing base (6049654) to head (ab9112a).
Report is 23 commits behind head on master.

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     

@yevhenii-nadtochii yevhenii-nadtochii marked this pull request as ready for review January 9, 2025 09:38
@yevhenii-nadtochii
Copy link
Contributor Author

@armiol @alexander-yevsyukov PTAL

Copy link
Collaborator

@armiol armiol left a 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`. " +
Copy link
Collaborator

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;
Copy link
Collaborator

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.
Copy link
Collaborator

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.
Copy link
Collaborator

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."
Copy link
Collaborator

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.

Copy link
Collaborator

@alexander-yevsyukov alexander-yevsyukov left a 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];
Copy link
Collaborator

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 = "",
Copy link
Collaborator

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 = ""
Copy link
Collaborator

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.

@yevhenii-nadtochii
Copy link
Contributor Author

@armiol @alexander-yevsyukov PTAL

Copy link
Collaborator

@alexander-yevsyukov alexander-yevsyukov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@yevhenii-nadtochii yevhenii-nadtochii merged commit d681c35 into master Jan 10, 2025
7 checks passed
@yevhenii-nadtochii yevhenii-nadtochii deleted the remove-nested-violations branch January 10, 2025 11:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants