-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[apex] Summit-AST Apex module - Part 6 Passing testsuite #4251
[apex] Summit-AST Apex module - Part 6 Passing testsuite #4251
Conversation
Fix an unexpected `RuntimeException` from `AbstractApexNodeBase.getBeginColumn` in instances where a `Node` had a start column of `0`.
Set `ASTMethod.getImage` to name of type for constructors
Change-Id: I033160534044936ac2ec416428662024b63e8c5f
- Don't build the `exceptionVariable` property of `CatchBlock` nodes. Some rules (e.g. `LocalVariableNamingConventionsRule`) expect the parent of every `ASTVariableDeclaration` to be an `ASTVariableDeclarationStatements`. - Fix `LocalVariableNamingConventionsRule` crash.
Make updates related to new VariableDeclarationGroup. Translate SOQL and SOSL expressions and bindings. Change-Id: I18995800e292cabe9f61176fa7aefedfc9729def
Change-Id: I6fb29b07e3679f333cae37fe28dfd8b14c8d4a20
Change-Id: Iec7c8335b966b243a63243ad631193b82598808b
Change-Id: I662171da66517235ce30a701ed84b687edfdb3a3
Change-Id: I06a3bc7afce01d2050c46aa2ca674a7a91fc4c5a
* Case normalize primitive types (e.g. Integer) * Use type-erased names for super classes and interfaces * Include type arguments for all other uses Add documentation. Change-Id: I9edf979c58a5fcf6f251e93013be85fea22a8be1
…ecessarily) disabled code. Change-Id: I45fab6872f5a69910452b6ac2429716b677bd93a
Change-Id: I232b8e7ad0ffc5f9ac8beab741e48d90b24063d4
Change-Id: I92b456c124c50ceb20416d69b1d88d0b5405dd89
…etOperator. Change-Id: I1fdfc314ede7ccfcfe3e169acaef309ba07c17c1
Update code to remove reference to deleted MODULO operator. Change-Id: I39d9f7adc0407aafa9af31d3b2253c6c37c735b1
…erences. Re-enable some tests that were disabled due to Jorje limitations. Change-Id: Id81582231afcc3b2e9f13ac52860ac0de538f41b
Change-Id: Id580cdfa39b4288c239a496ed4a61afb123b0b2f
…tic "invoke" method inside triggers. Change-Id: I21344a36c9795deffd9c62aa0e768eb6f6742796
Generated by 🚫 Danger |
…ue node. Change-Id: I1542cdd3da3675a04f36c0b0627ea837e2005ac3
Change-Id: I3371e80418e11766657e7f461d26f440fcd78e79
Change-Id: I6c371bdecaf08d306bee7308e94f2f1bc5ef0e4c
…sting behavior. Change-Id: I7b3406a60bbc18dc2b1e441b8c0122452f709404
Change-Id: Ib8d4a2d5941b47c47cbd469c1af5ab5f405b120f
…tactic type name. Change-Id: I6ea22b890e60f24c2684f85753223f240e33509a
…t were previous satisfied by copy inside Jorje JAR. Change-Id: Iebbc77d4f1ece8ec4712f749356d877858c14d21
e5678e8
to
626aec5
Compare
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.
Thanks!
I'm really happy, that the rules are basically untouched - which is a good sign for code compatibility.
I've now also made our regression tester working for this branch, so the report is now available: https://chunk.io/pmd/69b8157066734c538c40dd3e8dbe6a82/diff1/index.html
It seems, that most rules work as before. There are some, that don't find issues anymore (ApexDoc), and some that relied on jorje actually resolving the types (AvoidNonExistingAnnotations), which we don't do. Maybe in that case, it would be better to rewrite the rule to have an explicit list of allowed annotations... (and we should then deprecated ASTAnnotation::isResolved on master as well).
Delete deprecated Jorje code from pmd-visualforce.
Not sure, maybe that's too early. It depends on where this branch will land and how this branch will be distributed.
If we decide to merge this branch into master(pmd6), then we'd need to restore these deprecated methods.
pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/ast/ASTLiteralExpression.java
Outdated
Show resolved
Hide resolved
pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/ast/ApexCommentBuilder.java
Outdated
Show resolved
Hide resolved
pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/AbstractApexUnitTestRule.java
Outdated
Show resolved
Hide resolved
@@ -36,7 +35,7 @@ public void understandsSimpleFile() { | |||
|
|||
// Verify | |||
List<ASTMethod> methods = rootNode.findDescendantsOfType(ASTMethod.class); | |||
assertEquals(4, methods.size()); | |||
assertEquals(1, methods.size()); |
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 guess, this difference is because of the synthetic "<clinit>" and "<init>" methods. I checked it on the master branch: it these two methods plus "clone", which apparently jorje also generates.
Should we aim to mimic this behavior (and thus add a TODO here), or not? I think, we have several places, where we actually filter out these synthetic methods in rules... So, it would actually make more sense to not have these methods in the AST. But that would be a change to the current apex impl...
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.
Right. A user very likely wouldn't want to see any static analysis issue in synthetic code. These are difficult to present meaningfully and generally are not actionable for them to fix. +1 to suppressing them.
Thinking more generally... Is there any mechanism to mark and skip synthetic AST blocks? I'm imagining some sort of opt-in mechanism, where rules wouldn't visit synthetic nodes unless they pass a special flag or such. Right now I see a few conditions like !node.getImage().matches("<clinit>|<init>|clone")
inconsistently dispersed in the code.
Representing these methods would have value in the future to resolve calls, build a callgraph, or some other higher-level abstractions. (FYI we're discussing a separate representation for symbol objects, but this is in the very early stages. Happy to discuss if you'd like.)
But this is a bit speculative at the moment. If you don't have any objection, I think it should be fine/easier to leave them out for now and note it somewhere.
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.
Representing these methods would have value in the future to resolve calls, build a callgraph, or some other higher-level abstractions.
That's a good point. However, I'd also remove these synthetic methods for now completely to keep it simple. If we need them, we can add them later again (and maybe mark the AST nodes somehow as "synthethic", e.g. by a simple boolean flag).
public void testOldOperatorProperty() { | ||
Report report = apex.executeRuleOnResource(makeXPath("//BooleanExpression[@Operator='&&']"), | ||
"BooleanExpressions.cls"); | ||
assertSize(report, 0); // retired |
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.
👍 for creating a separate test case.
But: Shouldn't this xpath query with the deprecated attribute Operator
still work? It seems, it doesn't find any nodes...
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.
The deprecated getOperator
method was fully removed in this branch. The method returned a Jorje type and would block the above-mentioned goal to compile without the Jorje JAR... or faking some of its classes.
Since I updated some xpath tests, I added an old variant to investigate and capture the xpath behavior after removal.
This is another case where the merge back into pmd6 or 7 should preserve the deprecated method. (And it would also need a summit-to-jorje conversion to behave correctly.)
pmd-apex/src/test/resources/net/sourceforge/pmd/lang/apex/ast/SafeNavigationOperator.txt
Show resolved
Hide resolved
…teralExpression.java Co-authored-by: Andreas Dangel <[email protected]>
Thank you much! I will start investigating some of these issues.
Our team is eager to prototype a copy with the Jorje code actually removed (as opposed to present but deprecated), so it's useful if it could be this experimental branch. (Maybe others would find that useful?) I be happy to resolve the merge into master or pmd 7 to restore and keep this code deprecated as long as you see fit. Is that ok on your end? |
The deprecation was proposed for master/pmd6.
…ately after modifiers. This matches one observed property in the way that Jorje ordered nodes. Update the dump test.
That sounds fine. I'm currently thinking about how we can release PMD 7 sooner (see #4284). So, thinking ahead: Maybe we can just deprecate the removed methods/classes for PMD 6 (I think, this is already the case) and plan to merge this experimental branch eventually into PMD 7. |
I'm going to merge this PR now. The rule related fixes can come in further PRs. |
@aaronhurst-google I've merged also master into experimental-apex-parser. I've fixed the problem around the rule "AvoidNonExistentAnnotations" (I think): a9cbe7e However, there is now a new change in - it's about #4146 . Could you take care of this? Thanks! I've left the tests activated, so the build is failing now again. Interestingly, jorje also doesn't support all the latest language features: Lines 1802 to 1824 in d73095a
|
Describe the PR
Fix all issues to pass full testsuite. (Note that a few tests were previously disabled with TODOs. These fixes are still outstanding.)
Quick summary:
test
tocompile
scope dependency. It has been a dependency for some non-test cases (e.g. running ast-dump) and these were only succeeding due to the copy of guava bundled inside the apex-jorje.jar.ASTMethod
with equivalent details, allowing PMD AST nodes to be created for synthetic methods that don't correspond to parsed code. A triggerinvoke
method is one such example.invoke
methods.ASTFormalComments
, comments in blocks, and suppression comments. Utilized existing code to the extent possible, which now lives inApexCommentBuilder.java
.ASTField
nodes) and VariableDeclarationGroup. (This completes all syntax, AFAIK)getOperator
withgetOp
.pmd-visualforce
.Related issues
Issue #3766