-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added unit tests for the test execution conditions. Add JUnit module to the BOM. Moved the jGit version into a managed property in the root pom.xml.
- Loading branch information
Showing
29 changed files
with
1,052 additions
and
369 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
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
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
96 changes: 96 additions & 0 deletions
96
...est/src/test/java/org/springframework/modulith/junit/TestExecutionConditionUnitTests.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,96 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* 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 | ||
* | ||
* https://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 org.springframework.modulith.junit; | ||
|
||
import static org.assertj.core.api.Assertions.*; | ||
|
||
import java.util.Arrays; | ||
import java.util.stream.Stream; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ConditionEvaluationResult; | ||
import org.springframework.modulith.junit.TestExecutionCondition.ConditionContext; | ||
import org.springframework.modulith.junit.diff.ModifiedFile; | ||
|
||
import com.acme.myproject.ModulithTest; | ||
import com.acme.myproject.moduleD.ModuleDTest; | ||
|
||
/** | ||
* Unit tests for {@link TestExecutionCondition}. | ||
* | ||
* @author Oliver Drotbohm | ||
*/ | ||
class TestExecutionConditionUnitTests { | ||
|
||
TestExecutionCondition condition = new TestExecutionCondition(); | ||
|
||
@Test // GH-31 | ||
void enablesForSourceChangeInSameModulen() { | ||
assertEnabled(ModuleDTest.class, "moduleD/SomeConfigurationD.java"); | ||
} | ||
|
||
@Test // GH-31 | ||
void enablesForSourceChangeInModuleDirectlyDependedOn() { | ||
assertEnabled(ModuleDTest.class, "moduleC/ServiceComponentC.java"); | ||
} | ||
|
||
@Test // GH-31 | ||
void enablesForSourceChangeInModuleIndirectlyDependedOn() { | ||
assertEnabled(ModuleDTest.class, "moduleB/ServiceComponentB.java"); | ||
} | ||
|
||
@Test // GH-31 | ||
void disablesForChangesInUnrelatedModule() { | ||
assertDisabled(ModuleDTest.class, "moduleB/ServiceComponentE.java"); | ||
} | ||
|
||
@Test // GH-31 | ||
void enablesTestInRootModule() { | ||
assertEnabled(ModulithTest.class); | ||
} | ||
|
||
@Test // GH-31 | ||
void enablesForClasspathFileChange() { | ||
|
||
var pomXml = new ModifiedFile("pom.xml"); | ||
|
||
assertEnabled(ModuleDTest.class, true, Stream.of(pomXml)); | ||
} | ||
|
||
private void assertEnabled(Class<?> type, String... files) { | ||
assertEnabled(type, true, files); | ||
} | ||
|
||
private void assertDisabled(Class<?> type, String... files) { | ||
assertEnabled(type, false, files); | ||
} | ||
|
||
private void assertEnabled(Class<?> type, boolean expected, String... files) { | ||
|
||
var modifiedFiles = Arrays.stream(files) | ||
.map("src/main/java/com/acme/myproject/"::concat) | ||
.map(ModifiedFile::new); | ||
|
||
assertEnabled(type, expected, modifiedFiles); | ||
} | ||
|
||
private void assertEnabled(Class<?> type, boolean expected, Stream<ModifiedFile> files) { | ||
|
||
assertThat(condition.evaluate(new ConditionContext(type, Changes.of(files)))) | ||
.extracting(ConditionEvaluationResult::isDisabled) | ||
.isNotEqualTo(expected); | ||
} | ||
} |
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
9 changes: 0 additions & 9 deletions
9
spring-modulith-junit/src/main/java/org/springframework/modulith/junit/Change.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.