-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
190 additions
and
0 deletions.
There are no files selected for viewing
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
83 changes: 83 additions & 0 deletions
83
plugin-maven/src/main/java/com/diffplug/spotless/maven/IdeHook.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,83 @@ | ||
/* | ||
* Copyright 2016-2023 DiffPlug | ||
* | ||
* 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.diffplug.spotless.maven; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
|
||
import com.diffplug.common.base.Errors; | ||
import com.diffplug.common.io.ByteStreams; | ||
import com.diffplug.spotless.Formatter; | ||
import com.diffplug.spotless.PaddedCell; | ||
|
||
class IdeHook { | ||
|
||
private static void dumpIsClean() { | ||
System.err.println("IS CLEAN"); | ||
} | ||
|
||
//No need to check ratchet (using isClean()) as it is performed in Gradle's IDE hook, since we have already gathered the available git files from ratchet. | ||
static void performHook(Iterable<File> projectFiles, Formatter formatter, String path, boolean spotlessIdeHookUseStdIn, boolean spotlessIdeHookUseStdOut) { | ||
File file = new File(path); | ||
if (!file.isAbsolute()) { | ||
System.err.println("Argument passed to spotlessIdeHook must be an absolute path"); | ||
return; | ||
} | ||
|
||
if (!projectContainsFile(projectFiles, file)) { | ||
return; | ||
} | ||
|
||
try { | ||
byte[] bytes; | ||
if (spotlessIdeHookUseStdIn) { | ||
bytes = ByteStreams.toByteArray(System.in); | ||
} else { | ||
bytes = Files.readAllBytes(file.toPath()); | ||
} | ||
PaddedCell.DirtyState dirty = PaddedCell.calculateDirtyState(formatter, file, bytes); | ||
if (dirty.isClean()) { | ||
dumpIsClean(); | ||
} else if (dirty.didNotConverge()) { | ||
System.err.println("DID NOT CONVERGE"); | ||
System.err.println("See details https://github.com/diffplug/spotless/blob/main/PADDEDCELL.md"); | ||
} else { | ||
System.err.println("IS DIRTY"); | ||
if (spotlessIdeHookUseStdOut) { | ||
dirty.writeCanonicalTo(System.out); | ||
} else { | ||
dirty.writeCanonicalTo(file); | ||
} | ||
} | ||
} catch (IOException e) { | ||
e.printStackTrace(System.err); | ||
throw Errors.asRuntime(e); | ||
} finally { | ||
System.err.close(); | ||
System.out.close(); | ||
} | ||
} | ||
|
||
private static boolean projectContainsFile(Iterable<File> projectFiles, File file) { | ||
for (File projectFile : projectFiles) { | ||
if (projectFile.equals(file)) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
} |
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
85 changes: 85 additions & 0 deletions
85
plugin-maven/src/test/java/com/diffplug/spotless/maven/IdeHookTest.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,85 @@ | ||
/* | ||
* Copyright 2016-2023 DiffPlug | ||
* | ||
* 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.diffplug.spotless.maven; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
import org.assertj.core.api.Assertions; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import com.diffplug.spotless.ProcessRunner; | ||
|
||
class IdeHookTest extends MavenIntegrationHarness { | ||
private String output, error; | ||
private File dirty, clean, diverge, outofbounds; | ||
|
||
@BeforeEach | ||
void before() throws IOException { | ||
writePomWithFormatSteps("<includes>\n" + | ||
" <include>DIRTY.md</include>\n" + | ||
" <include>CLEAN.md</include>\n" + | ||
" </includes>\n" + | ||
" <replace>\n" + | ||
" <name>Greetings to Mars</name>\n" + | ||
" <search>World</search>\n" + | ||
" <replacement>Mars</replacement>\n" + | ||
" </replace>"); | ||
|
||
dirty = setFile("DIRTY.md").toContent("World"); | ||
clean = setFile("CLEAN.md").toContent("Mars"); | ||
outofbounds = setFile("OUTOFBOUNDS.md").toContent("Mars"); | ||
; | ||
} | ||
|
||
private void runWith(String... arguments) throws IOException, InterruptedException { | ||
ProcessRunner.Result result = mavenRunner() | ||
.withArguments(arguments) | ||
.runNoError(); | ||
|
||
this.output = result.stdOutUtf8(); | ||
this.error = result.stdErrUtf8(); | ||
} | ||
|
||
@Test | ||
void dirty() throws IOException, InterruptedException { | ||
runWith("spotless:apply", "--quiet", "-DspotlessIdeHook=\"" + dirty.getAbsolutePath() + "\"", "-DspotlessIdeHookUseStdOut=true"); | ||
Assertions.assertThat(output).isEqualTo("Mars"); | ||
Assertions.assertThat(error).startsWith("IS DIRTY"); | ||
} | ||
|
||
@Test | ||
void clean() throws IOException, InterruptedException { | ||
runWith("spotless:apply", "--quiet", "-DspotlessIdeHook=" + clean.getAbsolutePath(), "-DspotlessIdeHookUseStdOut=true"); | ||
Assertions.assertThat(output).isEmpty(); | ||
Assertions.assertThat(error).startsWith("IS CLEAN"); | ||
} | ||
|
||
@Test | ||
void outofbounds() throws IOException, InterruptedException { | ||
runWith("spotless:apply", "--quiet", "-DspotlessIdeHook=" + outofbounds.getAbsolutePath(), "-DspotlessIdeHookUseStdOut=true"); | ||
Assertions.assertThat(output).isEmpty(); | ||
Assertions.assertThat(error).isEmpty(); | ||
} | ||
|
||
@Test | ||
void notAbsolute() throws IOException, InterruptedException { | ||
runWith("spotless:apply", "--quiet", "-DspotlessIdeHook=\"pom.xml\"", "-DspotlessIdeHookUseStdOut=true"); | ||
Assertions.assertThat(output).isEmpty(); | ||
Assertions.assertThat(error).contains("Argument passed to spotlessIdeHook must be an absolute path"); | ||
} | ||
} |