Merge branch '3.2.x'
Closes gh-41107
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2023 the original author or authors.
|
||||
* Copyright 2012-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.
|
||||
@@ -21,6 +21,7 @@ import java.lang.reflect.Method;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.boot.loader.launch.FakeJarLauncher;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
@@ -64,6 +65,15 @@ class MainMethodTests {
|
||||
assertThat(method.getDeclaringClassName()).isEqualTo(nestedMain.getDeclaringClass().getName());
|
||||
}
|
||||
|
||||
@Test // gh-39733
|
||||
void vaiJarLauncher() throws Exception {
|
||||
FakeJarLauncher.action = (args) -> Valid.main(args);
|
||||
MainMethod method = new TestThread(FakeJarLauncher::main).test();
|
||||
Method expectedMain = Valid.class.getMethod("main", String[].class);
|
||||
assertThat(method.getMethod()).isEqualTo(expectedMain);
|
||||
assertThat(method.getDeclaringClassName()).isEqualTo(expectedMain.getDeclaringClass().getName());
|
||||
}
|
||||
|
||||
@Test
|
||||
void missingArgsMainMethod() {
|
||||
assertThatIllegalStateException().isThrownBy(() -> new TestThread(MissingArgs::main).test())
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright 2012-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.boot.loader.launch;
|
||||
|
||||
import java.util.function.Consumer;
|
||||
|
||||
/**
|
||||
* Fake launcher in the {@code org.springframework.boot.loader.launch} package used in
|
||||
* {@code MainMethodTests}.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public final class FakeJarLauncher {
|
||||
|
||||
public static Consumer<String[]> action;
|
||||
|
||||
private FakeJarLauncher() {
|
||||
}
|
||||
|
||||
public static void main(String... args) {
|
||||
action.accept(args);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user