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

Add WARNING for schema/schematron version mismatch #634

Merged
merged 5 commits into from
May 5, 2023
Merged

Conversation

al-niessner
Copy link
Contributor

🗒️ Summary

Added a function to check the schema versions against the schematron versions. It only works if the same naming convention for the files themselves (not the paths to them) are the same. Warnings are given if they do not match

⚙️ Test Data and/or Report

See unit tests

♻️ Related Issues

Closes #629
Closes #628

@al-niessner al-niessner marked this pull request as ready for review April 27, 2023 16:18
Copy link
Member

@nutjob4life nutjob4life left a comment

Choose a reason for hiding this comment

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

👍

@nutjob4life
Copy link
Member

@al-niessner approved and ready to go, but I haven't merged this since there might be a jparser dependency. I'll let you go ahead and hit the big green button!

@jordanpadams jordanpadams changed the title Issue 628: check schema/schematron versions Add WARNING for schema/schematron version mismatch May 5, 2023
@jordanpadams jordanpadams merged commit 2e63567 into main May 5, 2023
@jordanpadams jordanpadams deleted the issue_628 branch May 5, 2023 22:18
try {
URL schematronURL = new URL(modelHREF);
String schematronName =
Paths.get(schematronURL.getPath()).getFileName().toString().toLowerCase();
Copy link
Contributor

Choose a reason for hiding this comment

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

9% of developers fix this issue

PATH_TRAVERSAL_IN: This API (java/nio/file/Paths.get(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;) reads a file whose location might be specified by user input


ℹ️ Expand to see all @sonatype-lift commands

You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.

Command Usage
@sonatype-lift ignore Leave out the above finding from this PR
@sonatype-lift ignoreall Leave out all the existing findings from this PR
@sonatype-lift exclude <file|issue|path|tool> Exclude specified file|issue|path|tool from Lift findings by updating your config.toml file

Note: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.

try {
URL schemaURL = new URL(schema);
String schemaName =
Paths.get(schemaURL.getPath()).getFileName().toString().toLowerCase();
Copy link
Contributor

Choose a reason for hiding this comment

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

9% of developers fix this issue

PATH_TRAVERSAL_IN: This API (java/nio/file/Paths.get(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;) reads a file whose location might be specified by user input


ℹ️ Expand to see all @sonatype-lift commands

You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.

Command Usage
@sonatype-lift ignore Leave out the above finding from this PR
@sonatype-lift ignoreall Leave out all the existing findings from this PR
@sonatype-lift exclude <file|issue|path|tool> Exclude specified file|issue|path|tool from Lift findings by updating your config.toml file

Note: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants