GH-1 - Update Maven artifact coordinates, package and directory structure.
Original pull request: GH-7.
This commit is contained in:
committed by
Oliver Drotbohm
parent
6c444769d7
commit
417e215993
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* Copyright 2020 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.docs;
|
||||
|
||||
import static org.assertj.core.api.Assertions.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.modulith.model.Modules;
|
||||
import org.springframework.modulith.model.SpringBean;
|
||||
|
||||
import com.acme.myproject.Application;
|
||||
import com.acme.myproject.stereotypes.Stereotypes;
|
||||
import com.tngtech.archunit.core.domain.JavaClass;
|
||||
|
||||
/**
|
||||
* Unit tests for {@link Documenter}.
|
||||
*
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
class DocumenterUnitTests {
|
||||
|
||||
Modules modules = Modules.of(Application.class);
|
||||
|
||||
@Test
|
||||
void groupsSpringBeansByArchitecturallyEvidentType() {
|
||||
|
||||
Documenter.CanvasOptions.Groupings result = Documenter.CanvasOptions.defaults()
|
||||
.groupingBy(Documenter.CanvasOptions.Grouping.of("Representations", Documenter.CanvasOptions.Grouping.nameMatching(".*Representations")))
|
||||
.groupingBy(Documenter.CanvasOptions.Grouping.of("Interface implementations", Documenter.CanvasOptions.Grouping.subtypeOf(Stereotypes.SomeAppInterface.class)))
|
||||
.groupBeans(modules.getModuleByName("stereotypes").orElseThrow(RuntimeException::new));
|
||||
|
||||
assertThat(result.keySet())
|
||||
.extracting(Documenter.CanvasOptions.Grouping::getName)
|
||||
.containsExactlyInAnyOrder("Controllers", "Services", "Repositories", "Event listeners",
|
||||
"Configuration properties", "Representations", "Interface implementations", "Others");
|
||||
|
||||
List<SpringBean> impls = result.byGroupName("Interface implementations");
|
||||
|
||||
assertThat(impls).hasSize(1) //
|
||||
.extracting(it -> it.getType()) //
|
||||
.extracting(JavaClass::getSimpleName) //
|
||||
.containsExactly("SomeAppInterfaceImplementation");
|
||||
|
||||
List<SpringBean> listeners = result.byGroupName("Event listeners");
|
||||
|
||||
assertThat(listeners).hasSize(2) //
|
||||
.extracting(it -> it.getType()) //
|
||||
.extracting(JavaClass::getSimpleName) //
|
||||
.containsOnly("SomeEventListener", "SomeTxEventListener");
|
||||
}
|
||||
|
||||
@Test
|
||||
void playWithOutput() {
|
||||
|
||||
Documenter documenter = new Documenter(modules);
|
||||
|
||||
Documenter.CanvasOptions options = Documenter.CanvasOptions.defaults() //
|
||||
.groupingBy(Documenter.CanvasOptions.Grouping.of("Representations", Documenter.CanvasOptions.Grouping.nameMatching(".*Representations")));
|
||||
|
||||
assertThatNoException().isThrownBy(() -> {
|
||||
modules.forEach(it -> documenter.toModuleCanvas(it, options));
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright 2019 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.model;
|
||||
|
||||
import static org.assertj.core.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import com.tngtech.archunit.core.domain.JavaClasses;
|
||||
import com.tngtech.archunit.core.importer.ClassFileImporter;
|
||||
import com.tngtech.archunit.core.importer.ImportOption;
|
||||
import com.tngtech.archunit.core.importer.ImportOptions;
|
||||
|
||||
/**
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
class JavaPackageUnitTests {
|
||||
|
||||
static final ImportOptions NO_TESTS = new ImportOptions().with(new ImportOption.DoNotIncludeTests());
|
||||
static final JavaClasses ALL_CLASSES = new ClassFileImporter(NO_TESTS) //
|
||||
.importPackages("com.acme.myproject");
|
||||
|
||||
@Test
|
||||
void testName() throws Exception {
|
||||
|
||||
Classes classes = Classes.of(ALL_CLASSES);
|
||||
JavaPackage pkg = JavaPackage.of(classes, "com.acme.myproject.complex");
|
||||
|
||||
assertThat(pkg.getLocalName()).isEqualTo("complex");
|
||||
assertThat(pkg.getDirectSubPackages()) //
|
||||
.extracting(JavaPackage::getLocalName) //
|
||||
.contains("api", "internal", "spi");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
/*
|
||||
* Copyright 2018-2020 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
|
||||
*
|
||||
* 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 org.springframework.modulith.model;
|
||||
|
||||
import static org.assertj.core.api.Assertions.*;
|
||||
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.modulith.model.Module.DependencyType;
|
||||
|
||||
import com.acme.myproject.Application;
|
||||
import com.acme.myproject.complex.internal.FirstTypeBasedPort;
|
||||
import com.acme.myproject.complex.internal.SecondTypeBasePort;
|
||||
import com.acme.myproject.moduleA.SomeConfigurationA.SomeAtBeanComponentA;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Peter Gafert
|
||||
*/
|
||||
class ModulesIntegrationTest {
|
||||
|
||||
Modules modules = Modules.of(Application.class);
|
||||
|
||||
@Test
|
||||
void moduleDetectionUsesStrategyDefinedInSpringFactories() {
|
||||
assertThat(TestModuleDetectionStrategy.used).isTrue();
|
||||
}
|
||||
|
||||
@Test
|
||||
void exposesModulesForPrimaryPackages() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("moduleB");
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
assertThat(it.getBootstrapDependencies(modules)).anySatisfy(dep -> {
|
||||
assertThat(dep.getName()).isEqualTo("moduleA");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void usesExplicitlyAnnotatedDisplayName() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("moduleC");
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
assertThat(it.getDisplayName()).isEqualTo("MyModule C");
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void rejectsDependencyIntoInternalPackage() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("invalid");
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
assertThatExceptionOfType(Violations.class) //
|
||||
.isThrownBy(() -> it.verifyDependencies(modules));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void complexModuleExposesNamedInterfaces() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("complex");
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
|
||||
NamedInterfaces interfaces = it.getNamedInterfaces();
|
||||
|
||||
assertThat(interfaces.stream().map(NamedInterface::getName)) //
|
||||
.containsExactlyInAnyOrder("API", "SPI", "Port 1", "Port 2", "Port 3");
|
||||
|
||||
verifyNamedInterfaces(interfaces, "Port 1", FirstTypeBasedPort.class, SecondTypeBasePort.class);
|
||||
verifyNamedInterfaces(interfaces, "Port 2", FirstTypeBasedPort.class, SecondTypeBasePort.class);
|
||||
verifyNamedInterfaces(interfaces, "Port 3", FirstTypeBasedPort.class, SecondTypeBasePort.class);
|
||||
});
|
||||
}
|
||||
|
||||
private static void verifyNamedInterfaces(NamedInterfaces interfaces, String name, Class<?>... types) {
|
||||
|
||||
Optional<NamedInterface> byName = interfaces.getByName(name);
|
||||
|
||||
Stream.of(types).forEach(type -> {
|
||||
assertThat(byName).hasValueSatisfying(named -> named.contains(type));
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void discoversAtBeanComponent() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("moduleA");
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
assertThat(it.getSpringBeansInternal().contains(SomeAtBeanComponentA.class.getName())).isTrue();
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void moduleBListensToModuleA() {
|
||||
|
||||
Optional<Module> module = modules.getModuleByName("moduleB");
|
||||
Module moduleA = modules.getModuleByName("moduleA").orElseThrow(IllegalStateException::new);
|
||||
|
||||
assertThat(module).hasValueSatisfying(it -> {
|
||||
assertThat(it.getDependencies(modules, DependencyType.EVENT_LISTENER)) //
|
||||
.contains(moduleA);
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void rejectsNotExplicitlyListedDependency() {
|
||||
|
||||
Optional<Module> moduleByName = modules.getModuleByName("invalid2");
|
||||
|
||||
assertThat(moduleByName).hasValueSatisfying(it -> {
|
||||
|
||||
assertThatExceptionOfType(Violations.class) //
|
||||
.isThrownBy(() -> it.verifyDependencies(modules)) //
|
||||
.withMessageContaining(it.getName());
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
void findsModuleBySubPackage() {
|
||||
|
||||
assertThat(modules.getModuleForPackage("com.acme.myproject.moduleA.sub.package")) //
|
||||
.isEqualTo(modules.getModuleByName("moduleA"));
|
||||
}
|
||||
|
||||
@Test
|
||||
void createsModulesFromJavaPackage() {
|
||||
|
||||
Modules fromPackage = Modules.of(Application.class.getPackage().getName());
|
||||
|
||||
assertThat(fromPackage.stream().map(Module::getName)) //
|
||||
.containsExactlyInAnyOrderElementsOf(modules.stream().map(Module::getName).collect(Collectors.toList()));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright 2020 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.model;
|
||||
|
||||
import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
class TestModuleDetectionStrategy implements ModuleDetectionStrategy {
|
||||
|
||||
private final ModuleDetectionStrategy delegate = ModuleDetectionStrategy.directSubPackage();
|
||||
|
||||
static boolean used;
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.springframework.modulith.model.ModuleDetectionStrategy#getModuleBasePackages(org.springframework.modulith.model.JavaPackage)
|
||||
*/
|
||||
@Override
|
||||
public Stream<JavaPackage> getModuleBasePackages(JavaPackage basePackage) {
|
||||
|
||||
TestModuleDetectionStrategy.used = true;
|
||||
|
||||
return delegate.getModuleBasePackages(basePackage);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user