1

我有以下规则:

[[junit4:C_TestMethodWithoutAssertion]]
.All Unit Tests must either use a expected Exception or call an Assert Method.
[source,cypher,role=constraint,requiresConcepts="junit4:TestClass,junit4:AssertMethod,junit4:TestMethod",severity=blocker]
----
MATCH
  (testType:Type)-[:DECLARES]->(testMethod:Test:Method)
  -[:ANNOTATED_BY]-(annotation:Annotation)-[:OF_TYPE]->(atype:Type)
WHERE
atype.fqn="org.junit.Test"
AND NOT testMethod.abstract
AND NOT (annotation)-[:HAS]->(:Value{name:"expected"})
AND NOT (testMethod)-[:INVOKES*..3]->(:Method:Assert)
RETURN
  testType AS DeclaringType,
  testMethod AS Method
----

如果我在 neo4j 浏览器中使用它,则该规则可以完美运行。但是,如果我将它用于 adoc 文件中的报告,我会得到很多“FalsePositives”。有没有人有想法。

LG克里斯

4

2 回答 2

1

最后一个查询没有返回结果,因为抽象部分过滤太多。这是一个固定的和稍微重组的版本:

MATCH (testType:Type)-[:DECLARES]->(testMethod:Test:Method) -[:ANNOTATED_BY]-(annotation:Annotation)-[:OF_TYPE]->(atype:Type) WHERE atype.fqn="org.junit.Test" AND NOT (has(testMethod.abstract) AND testMethod.abstract) AND NOT ( (annotation)-[:HAS]->(:Value{name:"expected"}) OR (testMethod)-[:INVOKES*..3]->(:Method:Assert) ) RETURN testType AS DeclaringType, testMethod AS Method

于 2016-11-30T13:18:31.810 回答
0

好的,现在我将“()”括在 NOT 语句中,因此它可以工作:

[[junit4:C_TestMethodWithoutAssertion]]
.All Unit Tests must either use a expected Exception or call an Assert Method.
[source,cypher,role=constraint,requiresConcepts="junit4:TestClass,junit4:AssertMethod,junit4:TestMethod",severity=blocker]
----
MATCH
  (testType:Type)-[:DECLARES]->(testMethod:Test:Method)
  -[:ANNOTATED_BY]-(annotation:Annotation)-[:OF_TYPE]->(atype:Type)
WHERE
atype.fqn="org.junit.Test"
AND NOT (testMethod.abstract)
AND NOT ((annotation)-[:HAS]->(:Value{name:"expected"}))
AND NOT ((testMethod)-[:INVOKES*..3]->(:Method:Assert))
RETURN
  testType AS DeclaringType,
  testMethod AS Method
----
于 2016-11-29T16:12:42.130 回答