簡體   English   中英

Java插件-SonarQube添加自定義規則

[英]Java plugin - SonarQube Add Custom Rule

如本問題所述 ,我已經按照所有步驟操作,並在/ checks文件夾中添加了TestRule.java。

但是,當我編譯此插件代碼時,出現以下錯誤:

17:02:52.614 [main] INFO  o.s.s.j.c.SecurityAnnotationMandatoryCheck - implements Interface : Second
Interface
17:02:52.614 [main] INFO  o.s.s.j.c.SecurityAnnotationMandatoryCheck - Method Name MySecurityAnnotat
ion
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.073 sec - in org.sonar.samples.jav
a.checks.SecurityAnnotationMandatoryCheckTest
Running org.sonar.samples.java.checks.TestRuleTests
17:02:52.617 [Report about progress of Java AST analyzer] INFO  org.sonar.squidbridge.ProgressReport
 - 1/1 source files have been analyzed
Executing *****************************TestRULE...........17:02:52.673 [main] INFO  org.sonar.squidb
ridge.ProgressReport - 1 source files to be analyzed
17:02:52.679 [main] DEBUG o.s.java.bytecode.ClassLoaderBuilder - ----- Classpath analyzed by Squid:
17:02:52.680 [main] DEBUG o.s.java.bytecode.ClassLoaderBuilder - C:\Users\dev\JavaPlugin\sonar-examples-master\sonar-examples-master\plugins\java-custom-rules\target\test-jars\commo
ns-collections4-4.0.jar
17:02:52.680 [main] DEBUG o.s.java.bytecode.ClassLoaderBuilder - C:\Users\dev\Jav
aPlugin\sonar-examples-master\sonar-examples-master\plugins\java-custom-rules\target\test-classes
17:02:52.680 [main] DEBUG o.s.java.bytecode.ClassLoaderBuilder - -----
17:02:52.688 [main] DEBUG o.s.java.resolve.BytecodeCompleter - Completing symbol : Object
17:02:52.691 [Report about progress of Java AST analyzer] INFO  org.sonar.squidbridge.ProgressReport
 - 1/1 source files have been analyzed
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.04 sec <<< FAILURE! - in org.sonar
.samples.java.checks.TestRuleTests
detected(org.sonar.samples.java.checks.TestRuleTests)  Time elapsed: 0.033 sec  <<< ERROR!
java.lang.IllegalStateException: At least one issue expected
        at org.sonar.samples.java.checks.TestRuleTests.detected(TestRuleTests.java:19)


Results :

Tests in error:
  TestRuleTests.detected:19 ╗ IllegalState At least one issue expected

Tests run: 8, Failures: 0, Errors: 1, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.750 s
[INFO] Finished at: 2015-12-04T17:02:53+05:30
[INFO] Final Memory: 28M/313M
[INFO] ------------------------------------------------------------------------

org.sonar.samples.java.checks.TestRuleTests.detected(TestRuleTests.java:19)上的代碼如下:

import org.junit.Test;
import org.sonar.java.checks.verifier.JavaCheckVerifier;

import java.lang.System;

public class TestRuleTests {

    TestRule check = new TestRule();
    //check.max=100;

    @Test
    public void detected() {
        // Verifies that the check will raise the adequate issues with the expected message.
        // In the test file, lines which should raise an issue have been commented out
        // by using the following syntax: "// Noncompliant {{EXPECTED_MESSAGE}}"
        System.out.print("Executing *****************************TestRULE...........");
        JavaCheckVerifier.verify("src/test/files/TestRule.java", check); //Line number 19,this line is indicated in error
        System.out.print("After Executing *****************************TestRULE...........");
    }
}

如何添加問題?

如果您讀取錯誤:正在測試的文件中可能存在問題。

因此,在“ src / test / files / TestRule.java”中,您的規則應引發一個問題,並使用注釋進行檢查://不符合測試類的注釋中指定的條件。

如果檢查絕對沒有問題,則應使用verifyNoIssue方法來避免錯誤。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM