Fix alias usage in help command

- Add info about aliases into model structure used by help
  command templating.
- Add some tests to models.
- Change help commands list to group command and its aliases together.
- Change help command to show aliases.
- Fixes #458
- Fixes #426
This commit is contained in:
Janne Valkealahti
2022-07-14 16:31:14 +01:00
parent d88849dfa9
commit 06d9fd51b2
10 changed files with 265 additions and 13 deletions

View File

@@ -0,0 +1,34 @@
/*
* Copyright 2022 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.shell.standard.commands;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
public class CommandAvailabilityInfoModelTests {
@Test
void hasDefaults() {
CommandAvailabilityInfoModel caim = CommandAvailabilityInfoModel.of(true, null);
assertThat(caim.getAvailable()).isTrue();
assertThat(caim.getReason()).isNull();
caim = CommandAvailabilityInfoModel.of(false, "fakereason");
assertThat(caim.getAvailable()).isFalse();
assertThat(caim.getReason()).isEqualTo("fakereason");
}
}

View File

@@ -0,0 +1,103 @@
/*
* Copyright 2022 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.shell.standard.commands;
import org.junit.jupiter.api.Test;
import org.springframework.shell.command.CommandRegistration;
import static org.assertj.core.api.Assertions.assertThat;
public class CommandInfoModelTests {
@Test
void hasGivenName() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getName()).isEqualTo("main1");
}
@Test
void hasGivenDescription() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.description("desc1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getDescription()).isEqualTo("desc1");
}
@Test
void hasNoParameters() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getParameters()).isEmpty();
}
@Test
void hasExpectedDefaultAvailability() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getAvailability()).isNotNull();
assertThat(cim.getAvailability().getAvailable()).isTrue();
assertThat(cim.getAvailability().getReason()).isNull();
}
@Test
void hasNoAliases() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getAliases()).isEmpty();
}
@Test
void hasAliases() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withAlias()
.command("alias1")
.and()
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandInfoModel cim = CommandInfoModel.of("main1", r1);
assertThat(cim.getAliases()).containsExactly("alias1");
}
}

View File

@@ -0,0 +1,89 @@
/*
* Copyright 2022 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.shell.standard.commands;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.shell.command.CommandCatalog;
import org.springframework.shell.command.CommandRegistration;
import static org.assertj.core.api.Assertions.assertThat;
public class GroupsInfoModelTests {
private CommandCatalog commandCatalog;
@BeforeEach
void setup() {
this.commandCatalog = CommandCatalog.of();
}
@Test
void showGroupsIsSet() {
GroupsInfoModel gim = buildGIM(true);
assertThat(gim.getShowGroups()).isTrue();
gim = buildGIM(false);
assertThat(gim.getShowGroups()).isFalse();
}
@Test
void simpleCommandsAreSeparated() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
CommandRegistration r2 = CommandRegistration.builder()
.command("main2")
.withTarget()
.consumer(ctx -> {})
.and()
.build();
this.commandCatalog.register(r1, r2);
GroupsInfoModel gim = buildGIM();
assertThat(gim.getCommands()).hasSize(2);
assertThat(gim.getGroups()).hasSize(1);
}
@Test
void aliasNotAddedToTopModel() {
CommandRegistration r1 = CommandRegistration.builder()
.command("main1")
.withAlias()
.command("alias1")
.and()
.withTarget()
.consumer(ctx -> {})
.and()
.build();
this.commandCatalog.register(r1);
GroupsInfoModel gim = buildGIM();
assertThat(gim.getCommands()).hasSize(1);
}
private GroupsInfoModel buildGIM(boolean showGroups) {
return GroupsInfoModel.of(showGroups, this.commandCatalog.getRegistrations());
}
private GroupsInfoModel buildGIM() {
return buildGIM(true);
}
}

View File

@@ -1,11 +1,9 @@
AVAILABLE COMMANDS
Default
1st-command: A rather extensive description of some command.
yet-another-command: The second command. This one is known under several aliases as well.
third-command: The last command.
second-command: The second command. This one is known under several aliases as well.
first-command: A rather extensive description of some command.
second-command, yet-another-command: The second command. This one is known under several aliases as well.
first-command, 1st-command: A rather extensive description of some command.
Example Group
second-group-command: The second command in a separate group.

View File

@@ -1,10 +1,8 @@
AVAILABLE COMMANDS
1st-command: A rather extensive description of some command.
yet-another-command: The second command. This one is known under several aliases as well.
third-command: The last command.
second-command: The second command. This one is known under several aliases as well.
first-command: A rather extensive description of some command.
second-command, yet-another-command: The second command. This one is known under several aliases as well.
first-command, 1st-command: A rather extensive description of some command.
second-group-command: The second command in a separate group.
first-group-command: The first command in a separate group.