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

Disable FallThrough on Java 14 for switch expressions #1442

Merged
merged 3 commits into from
Jul 1, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* (c) Copyright 2020 Palantir Technologies Inc. All rights reserved.
*
* 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.
*/
package com.palantir.baseline.errorprone;

import com.google.common.collect.ImmutableList;
import com.google.errorprone.CompilationTestHelper;
import com.google.errorprone.bugpatterns.FallThrough;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledForJreRange;
import org.junit.jupiter.api.condition.JRE;

public class FallThroughTest {

@Test
@DisabledForJreRange(max = JRE.JAVA_13)
public void testSwitchExpression() {
CompilationTestHelper compilationHelper = CompilationTestHelper.newInstance(FallThrough.class, getClass())
.setArgs(ImmutableList.of("--enable-preview", "--release", "14"));

compilationHelper
.addSourceLines(
"Test.java",
"class Test {",
" static void foo(int value) {",
" switch (value) {",
" case 42 -> {}",
" // BUG: Diagnostic matches: X",
" default -> {}",
" };",
" }",
"}")
.expectErrorMessage("X", input -> input.contains("Execution may fall through from the previous case"))
Copy link
Member Author

Choose a reason for hiding this comment

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

I had to use Diagnostic matches and expectErrorMessage because otherwise the diagnostic message matches the magic comment that will suppress the check.
https://github.com/google/error-prone/blob/v2.4.0/core/src/main/java/com/google/errorprone/bugpatterns/FallThrough.java#L45-L46

.doTest();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,14 @@ private static void configureErrorProneOptions(
"%s%s(build|src%sgenerated.*)%s.*",
Pattern.quote(projectPath), separator, separator, separator));

// FallThrough does not currently work with switch expressions
// See https://github.com/google/error-prone/issues/1649
errorProneOptions.check("FallThrough", project.provider(() -> {
JavaPluginExtension ext = project.getExtensions().getByType(JavaPluginExtension.class);
return ext.getSourceCompatibility().compareTo(JavaVersion.toVersion(14)) < 0
? CheckSeverity.DEFAULT
: CheckSeverity.OFF;
}));
// UnnecessaryParentheses does not currently work with switch expressions
errorProneOptions.check("UnnecessaryParentheses", project.provider(() -> {
JavaPluginExtension ext = project.getExtensions().getByType(JavaPluginExtension.class);
Expand Down