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

[xml] Add MissingEncoding rule #4592

Merged
merged 6 commits into from
Oct 19, 2023
Merged

[xml] Add MissingEncoding rule #4592

merged 6 commits into from
Oct 19, 2023

Conversation

jsotuyod
Copy link
Member

@jsotuyod jsotuyod commented Jun 6, 2023

Describe the PR

  • Expose XML declaration attributes to the DOM
  • Implement a rule enforcing the XML declaration includes an encoding

This implementation has a few constraints:

  • Since the parser doesn't really expose the declaration, it's not possible to know if the declaration is present or not. The XML version will be declared as "1.0" in such scenarios, and "standalone" be reported as false (the default according to the XML standard)

Related issues

This would allow us to remove the test from #4586 and instead add this rule to the dogfooding ruleset.

Ready?

  • Added unit tests for fixed bug/feature
  • Passing all unit tests
  • Complete build ./mvnw clean verify passes (checked automatically by github actions)
  • Added (in-code) documentation (if needed)

jsotuyod added 3 commits June 5, 2023 23:58
 - Enforce XML files have an encoding set in the XML Declaration
@jsotuyod jsotuyod added this to the 7.0.0 milestone Jun 6, 2023
@jsotuyod jsotuyod marked this pull request as draft June 6, 2023 10:17
@jsotuyod jsotuyod marked this pull request as ready for review June 7, 2023 02:07
@ghost
Copy link

ghost commented Jun 7, 2023

1 Message
📖 No regression tested rules have been changed.

Generated by 🚫 Danger

@jsotuyod jsotuyod added the a:new-rule Proposal to add a new built-in rule label Jun 8, 2023
<property name="xpath">
<value>
<![CDATA[
//document[@XmlEncoding = ""]
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
//document[@XmlEncoding = ""]
/document[@XmlEncoding = ""]

This otherwise looks ok to me, but I think ideally we would expose this through an XPath function, no an attribute. Otherwise it is only accessible through XPathRule, while DomXPathRule is supposed to be preferred for the XML module. /*[pmd-xml:fileEncoding() = ""] would be available in both.

Copy link
Member

Choose a reason for hiding this comment

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

I'll update this PR and merge it. Once this is in a released version, we can update our dogfood ruleset.

ideally we would expose this through an XPath function, no an attribute. Otherwise it is only accessible through XPathRule, while DomXPathRule is supposed to be preferred

I think, that's ok for now. We can improve it, once someone needs it.

@adangel adangel self-assigned this Oct 19, 2023
adangel added a commit that referenced this pull request Oct 19, 2023
@adangel adangel merged commit 7b69ff7 into pmd:master Oct 19, 2023
@jsotuyod jsotuyod deleted the xml-declaration branch October 19, 2023 12:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:new-rule Proposal to add a new built-in rule
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants