Skip to content

Commit

Permalink
GH-765 - Prevent ApplicationModuleInformation from picking up info fr…
Browse files Browse the repository at this point in the history
…om nested packages.
  • Loading branch information
odrotbohm committed Aug 13, 2024
1 parent 41bd816 commit 2cd51c8
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
import org.jmolecules.ddd.annotation.Module;
import org.springframework.modulith.ApplicationModule;
import org.springframework.modulith.ApplicationModule.Type;
import org.springframework.modulith.core.Types.JMoleculesTypes;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils;

import com.tngtech.archunit.core.domain.JavaClass;
Expand All @@ -48,15 +48,11 @@ interface ApplicationModuleInformation {
*/
public static ApplicationModuleInformation of(JavaPackage javaPackage) {

var lookup = AnnotationLookup.of(javaPackage, __ -> true);
var lookup = AnnotationLookup.of(javaPackage.toSingle(), __ -> true);

if (ClassUtils.isPresent("org.jmolecules.ddd.annotation.Module",
ApplicationModuleInformation.class.getClassLoader())
&& JMoleculesModule.supports(lookup)) {
return new JMoleculesModule(lookup);
}

return new SpringModulithModule(lookup);
return JMoleculesTypes.isPresent() && JMoleculesModule.supports(lookup)
? new JMoleculesModule(lookup)
: new SpringModulithModule(lookup);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ static class JMoleculesTypes {
private static final String ARCHUNIT_RULES = BASE_PACKAGE + ".archunit.JMoleculesDddRules";
private static final String MODULE = ANNOTATION_PACKAGE + ".Module";

private static final boolean PRESENT = ClassUtils.isPresent(AT_ENTITY, JMoleculesTypes.class.getClassLoader());

static final String AT_DOMAIN_EVENT_HANDLER = BASE_PACKAGE + ".event.annotation.DomainEventHandler";
static final String AT_DOMAIN_EVENT = BASE_PACKAGE + ".event.annotation.DomainEvent";
static final String DOMAIN_EVENT = BASE_PACKAGE + ".event.types.DomainEvent";

public static boolean isPresent() {
return ClassUtils.isPresent(AT_ENTITY, JMoleculesTypes.class.getClassLoader());
return PRESENT;
}

@Nullable
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* 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.core;

import static org.assertj.core.api.Assertions.*;

import reproducers.gh764.Entry;

import org.junit.jupiter.api.Test;

/**
* Unit tests for {@link ApplicationModuleInformation}.
*
* @author Oliver Drotbohm
*/
class ApplicationModuleInformationUnitTests {

@Test // GH-764
void doesNotConsiderAnnotationOnNestedPackageInfos() {

var pkg = TestUtils.getPackage(Entry.class);
var info = ApplicationModuleInformation.of(pkg);

assertThat(info.getDisplayName()).isEmpty();
}
}
21 changes: 21 additions & 0 deletions spring-modulith-core/src/test/java/reproducers/gh764/Entry.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* 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 reproducers.gh764;

/**
* @author Oliver Drotbohm
*/
public class Entry {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@org.springframework.modulith.ApplicationModule(displayName = "Nested")
package reproducers.gh764.nested;

0 comments on commit 2cd51c8

Please sign in to comment.