mirror of https://github.com/hyperledger/besu
Fix experimental cli option must be hidden (#1316)
Signed-off-by: Karim TAAM <karim.t2am@gmail.com>pull/1315/head
parent
dc20e62a2f
commit
3fd7a40dfb
@ -0,0 +1,69 @@ |
||||
/* |
||||
* Copyright ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.besu.cli.options; |
||||
|
||||
import org.hyperledger.besu.ethstats.util.NetstatsUrl; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.List; |
||||
|
||||
import picocli.CommandLine; |
||||
|
||||
public class EthstatsOptions implements CLIOptions<NetstatsUrl> { |
||||
|
||||
private static final String ETHSTATS = "--Xethstats"; |
||||
private static final String ETHSTATS_CONTACT = "--Xethstats-contact"; |
||||
|
||||
@SuppressWarnings({"FieldCanBeFinal", "FieldMayBeFinal"}) |
||||
@CommandLine.Option( |
||||
hidden = true, |
||||
names = {ETHSTATS}, |
||||
paramLabel = "<nodename:secret@host:port>", |
||||
description = "Reporting URL of a ethstats server", |
||||
arity = "1") |
||||
private String ethstatsUrl = ""; |
||||
|
||||
@SuppressWarnings({"FieldCanBeFinal", "FieldMayBeFinal"}) |
||||
@CommandLine.Option( |
||||
hidden = true, |
||||
names = {ETHSTATS_CONTACT}, |
||||
description = "Contact address to send to ethstats server", |
||||
arity = "1") |
||||
private String ethstatsContact = ""; |
||||
|
||||
private EthstatsOptions() {} |
||||
|
||||
public static EthstatsOptions create() { |
||||
return new EthstatsOptions(); |
||||
} |
||||
|
||||
@Override |
||||
public NetstatsUrl toDomainObject() { |
||||
return NetstatsUrl.fromParams(ethstatsUrl, ethstatsContact); |
||||
} |
||||
|
||||
public String getEthstatsUrl() { |
||||
return ethstatsUrl; |
||||
} |
||||
|
||||
public String getEthstatsContact() { |
||||
return ethstatsContact; |
||||
} |
||||
|
||||
@Override |
||||
public List<String> getCLIOptions() { |
||||
return Arrays.asList(ETHSTATS + "=" + ethstatsUrl, ETHSTATS_CONTACT + "=" + ethstatsContact); |
||||
} |
||||
} |
@ -0,0 +1,70 @@ |
||||
/* |
||||
* Copyright ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.errorpronechecks; |
||||
|
||||
import static com.google.errorprone.BugPattern.SeverityLevel.WARNING; |
||||
|
||||
import java.util.Map; |
||||
import java.util.Optional; |
||||
import javax.lang.model.element.AnnotationMirror; |
||||
import javax.lang.model.element.AnnotationValue; |
||||
import javax.lang.model.element.ExecutableElement; |
||||
|
||||
import com.google.auto.service.AutoService; |
||||
import com.google.errorprone.BugPattern; |
||||
import com.google.errorprone.VisitorState; |
||||
import com.google.errorprone.bugpatterns.BugChecker; |
||||
import com.google.errorprone.bugpatterns.BugChecker.AnnotationTreeMatcher; |
||||
import com.google.errorprone.matchers.Description; |
||||
import com.google.errorprone.util.ASTHelpers; |
||||
import com.sun.source.tree.AnnotationTree; |
||||
|
||||
@AutoService(BugChecker.class) |
||||
@BugPattern( |
||||
name = "ExperimentalCliOptionMustBeHidden", |
||||
summary = "Experimental options must be hidden.", |
||||
severity = WARNING, |
||||
linkType = BugPattern.LinkType.NONE) |
||||
public class ExperimentalCliOptionMustBeHidden extends BugChecker implements AnnotationTreeMatcher { |
||||
|
||||
@Override |
||||
public Description matchAnnotation(AnnotationTree tree, VisitorState state) { |
||||
final AnnotationMirror annotationMirror = ASTHelpers.getAnnotationMirror(tree); |
||||
if (annotationMirror.getAnnotationType().toString().equals("picocli.CommandLine.Option")) { |
||||
final Optional<? extends AnnotationValue> names = |
||||
getAnnotationValue(annotationMirror, "names"); |
||||
if (names.isPresent() && names.get().getValue().toString().contains("--X")) { |
||||
final Optional<? extends AnnotationValue> isHidden = |
||||
getAnnotationValue(annotationMirror, "hidden"); |
||||
if (isHidden.isEmpty() || !((boolean) isHidden.get().getValue())) { |
||||
return describeMatch(tree); |
||||
} |
||||
} |
||||
} |
||||
return Description.NO_MATCH; |
||||
} |
||||
|
||||
private Optional<? extends AnnotationValue> getAnnotationValue( |
||||
final AnnotationMirror annotationMirror, final String name) { |
||||
final Map<? extends ExecutableElement, ? extends AnnotationValue> elementValues = |
||||
annotationMirror.getElementValues(); |
||||
final Optional<? extends AnnotationValue> retValue = |
||||
elementValues.keySet().stream() |
||||
.filter(k -> k.getSimpleName().toString().equals(name)) |
||||
.map(elementValues::get) |
||||
.findAny(); |
||||
return retValue; |
||||
} |
||||
} |
@ -0,0 +1,52 @@ |
||||
/* |
||||
* Copyright ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
package org.hyperledger.errorpronechecks; |
||||
|
||||
import com.google.errorprone.CompilationTestHelper; |
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
|
||||
public class ExperimentalCliOptionMustBeHiddenTest { |
||||
|
||||
private CompilationTestHelper compilationHelper; |
||||
|
||||
@Before |
||||
public void setup() { |
||||
compilationHelper = |
||||
CompilationTestHelper.newInstance(ExperimentalCliOptionMustBeHidden.class, getClass()); |
||||
} |
||||
|
||||
@Test |
||||
public void experimentalCliOptionMustBeHiddenPositiveCases() { |
||||
compilationHelper.addSourceFile("ExperimentalCliOptionNotHiddenPositiveCases.java").doTest(); |
||||
} |
||||
|
||||
@Test |
||||
public void experimentalCliOptionMustBeHiddenNegativeCases() { |
||||
compilationHelper.addSourceFile("ExperimentalCliOptionNotHiddenNegativeCases.java").doTest(); |
||||
} |
||||
|
||||
@Test |
||||
public void methodInputParametersMustBeFinalNegativeCases() { |
||||
compilationHelper.addSourceFile("MethodInputParametersMustBeFinalNegativeCases.java").doTest(); |
||||
} |
||||
|
||||
@Test |
||||
public void methodInputParametersMustBeFinalInterfaceNegativeCases() { |
||||
compilationHelper |
||||
.addSourceFile("MethodInputParametersMustBeFinalInterfaceNegativeCases.java") |
||||
.doTest(); |
||||
} |
||||
} |
@ -0,0 +1,37 @@ |
||||
/* |
||||
* Copyright ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
package org.hyperledger.errorpronechecks; |
||||
|
||||
import picocli.CommandLine; |
||||
|
||||
import java.util.Objects; |
||||
|
||||
public class ExperimentalCliOptionNotHiddenNegativeCases { |
||||
|
||||
@CommandLine.Option( |
||||
hidden = true, |
||||
names = {"--Xexperimental"}) |
||||
private String experimental = ""; |
||||
|
||||
@CommandLine.Option( |
||||
hidden = false, |
||||
names = {"--notExperimental"}) |
||||
private String notExperimental = ""; |
||||
|
||||
@CommandLine.Option( |
||||
names = {"--notExperimental2"}) |
||||
private String notExperimental2 = ""; |
||||
} |
@ -0,0 +1,34 @@ |
||||
/* |
||||
* Copyright ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
* |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
package org.hyperledger.errorpronechecks; |
||||
|
||||
import picocli.CommandLine; |
||||
|
||||
import java.util.Objects; |
||||
|
||||
public class ExperimentalCliOptionNotHiddenPositiveCases { |
||||
|
||||
// BUG: Diagnostic contains: Experimental options must be hidden.
|
||||
@CommandLine.Option( |
||||
hidden = false, |
||||
names = {"--Xexperimental"}) |
||||
private String experimental = ""; |
||||
|
||||
// BUG: Diagnostic contains: Experimental options must be hidden.
|
||||
@CommandLine.Option( |
||||
names = {"--Xexperimental2"}) |
||||
private String experimental2 = ""; |
||||
} |
Loading…
Reference in new issue