fix: allows --version to work (#24161)

closes #23783
This commit is contained in:
Steven Hawkins 2023-10-20 05:17:38 -04:00 committed by GitHub
parent 17389e6e29
commit 1f77476281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 0 deletions

View file

@ -135,6 +135,9 @@ public final class Picocli {
}
public static boolean requiresReAugmentation(CommandLine cmdCommand) {
if (cmdCommand == null) {
return false; // possible if using --version or the user made a mistake
}
if (hasConfigChanges(cmdCommand)) {
if (!ConfigArgsConfigSource.getAllCliArgs().contains(StartDev.NAME) && "dev".equals(getConfig().getOptionalValue("kc.profile", String.class).orElse(null))) {
return false;

View file

@ -0,0 +1,38 @@
/*
* Copyright 2021 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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.keycloak.it.cli.dist;
import io.quarkus.test.junit.main.Launch;
import io.quarkus.test.junit.main.LaunchResult;
import org.junit.jupiter.api.Test;
import org.keycloak.it.junit5.extension.DistributionTest;
import static org.junit.jupiter.api.Assertions.assertTrue;
@DistributionTest
public class VersionDistTest {
@Test
@Launch({ "--version" })
void failNoTls(LaunchResult result) {
assertTrue(result.getOutput().contains("Keycloak ") && result.getOutput().contains("JVM: "),
() -> "The Output:\n" + result.getOutput() + "doesn't contains the expected string.");
}
}