-
Notifications
You must be signed in to change notification settings - Fork 857
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add javax.tools.Tool implementation for google-java-format.
PiperOrigin-RevId: 586765411
- Loading branch information
1 parent
53390d9
commit 205b85f
Showing
5 changed files
with
138 additions
and
10 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
core/src/main/java/com/google/googlejavaformat/java/GoogleJavaFormatTool.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright 2021 Google Inc. | ||
* | ||
* 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.google.googlejavaformat.java; | ||
|
||
import static com.google.common.collect.Sets.toImmutableEnumSet; | ||
|
||
import com.google.auto.service.AutoService; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.io.PrintStream; | ||
import java.util.Arrays; | ||
import java.util.Set; | ||
import javax.lang.model.SourceVersion; | ||
import javax.tools.Tool; | ||
|
||
/** Provide a way to be invoked without necessarily starting a new VM. */ | ||
@AutoService(Tool.class) | ||
public class GoogleJavaFormatTool implements Tool { | ||
@Override | ||
public String name() { | ||
return "google-java-format"; | ||
} | ||
|
||
@Override | ||
public Set<SourceVersion> getSourceVersions() { | ||
return Arrays.stream(SourceVersion.values()).collect(toImmutableEnumSet()); | ||
} | ||
|
||
@Override | ||
public int run(InputStream in, OutputStream out, OutputStream err, String... args) { | ||
PrintStream outStream = new PrintStream(out); | ||
PrintStream errStream = new PrintStream(err); | ||
try { | ||
return Main.main(in, outStream, errStream, args); | ||
} catch (RuntimeException e) { | ||
errStream.print(e.getMessage()); | ||
errStream.flush(); | ||
return 1; // pass non-zero value back indicating an error has happened | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
core/src/test/java/com/google/googlejavaformat/java/GoogleJavaFormatToolTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright 2021 Google Inc. | ||
* | ||
* 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.google.googlejavaformat.java; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
import static com.google.common.truth.Truth8.assertThat; | ||
import static java.nio.charset.StandardCharsets.UTF_8; | ||
|
||
import java.io.ByteArrayInputStream; | ||
import java.io.ByteArrayOutputStream; | ||
import java.io.InputStream; | ||
import java.util.ServiceLoader; | ||
import javax.tools.Tool; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.JUnit4; | ||
|
||
/** Tests for {@link GoogleJavaFormatToolProvider}. */ | ||
@RunWith(JUnit4.class) | ||
public class GoogleJavaFormatToolTest { | ||
|
||
@Test | ||
public void testUsageOutputAfterLoadingViaToolName() { | ||
String name = "google-java-format"; | ||
|
||
assertThat( | ||
ServiceLoader.load(Tool.class).stream() | ||
.map(ServiceLoader.Provider::get) | ||
.map(Tool::name)) | ||
.contains(name); | ||
|
||
Tool format = | ||
ServiceLoader.load(Tool.class).stream() | ||
.filter(provider -> name.equals(provider.get().name())) | ||
.findFirst() | ||
.get() | ||
.get(); | ||
|
||
InputStream in = new ByteArrayInputStream(new byte[0]); | ||
ByteArrayOutputStream out = new ByteArrayOutputStream(); | ||
ByteArrayOutputStream err = new ByteArrayOutputStream(); | ||
|
||
int result = format.run(in, out, err, "--help"); | ||
|
||
assertThat(result).isNotEqualTo(0); | ||
|
||
String usage = new String(err.toByteArray(), UTF_8); | ||
|
||
// Check that doc links are included. | ||
assertThat(usage).containsMatch("http.*/google-java-format"); | ||
assertThat(usage).contains("Usage: google-java-format"); | ||
} | ||
} |