-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: Explicitly add a Help command to accept the early args after it
The default clap's help command doesn't have the ability to accept flags (e.g --no-pager). The recommended way[1] to solve this is to manually implement it. [1]: clap-rs/clap#5332 Fixes: #4501
- Loading branch information
Showing
7 changed files
with
152 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2024 The Jujutsu 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. | ||
|
||
use tracing::instrument; | ||
|
||
use crate::cli_util::CommandHelper; | ||
use crate::command_error; | ||
use crate::command_error::CommandError; | ||
use crate::ui::Ui; | ||
|
||
/// Print this message or the help of the given subcommand(s) | ||
#[derive(clap::Args, Clone, Debug)] | ||
pub(crate) struct HelpArgs { | ||
/// Print help for the subcommand(s) | ||
pub(crate) command: Vec<String>, | ||
} | ||
|
||
#[instrument(skip_all)] | ||
pub(crate) fn cmd_help( | ||
_ui: &mut Ui, | ||
command: &CommandHelper, | ||
args: &HelpArgs, | ||
) -> Result<(), CommandError> { | ||
let mut args_to_show_help = vec![command.app().get_name()]; | ||
args_to_show_help.extend(args.command.iter().map(|s| s.as_str())); | ||
args_to_show_help.push("--help"); | ||
|
||
let help_err = command | ||
.app() | ||
.clone() | ||
.subcommand_required(true) | ||
.try_get_matches_from(args_to_show_help) | ||
.expect_err("Clap library should return a DisplayHelp error in this context"); | ||
|
||
Err(command_error::cli_error(help_err)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright 2024 The Jujutsu 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. | ||
|
||
use crate::common::TestEnvironment; | ||
|
||
#[test] | ||
fn test_help() { | ||
let test_env = TestEnvironment::default(); | ||
|
||
let help_cmd_stdout = test_env.jj_cmd_success(test_env.env_root(), &["help"]); | ||
// The help command output should be equal to the long --help flag | ||
let help_flag_stdout = test_env.jj_cmd_success(test_env.env_root(), &["--help"]); | ||
assert_eq!(help_cmd_stdout, help_flag_stdout); | ||
|
||
// Help command should work with commands | ||
let help_cmd_stdout = test_env.jj_cmd_success(test_env.env_root(), &["help", "log"]); | ||
let help_flag_stdout = test_env.jj_cmd_success(test_env.env_root(), &["log", "--help"]); | ||
assert_eq!(help_cmd_stdout, help_flag_stdout); | ||
|
||
// Help command should work with subcommands | ||
let help_cmd_stdout = | ||
test_env.jj_cmd_success(test_env.env_root(), &["help", "workspace", "root"]); | ||
let help_flag_stdout = | ||
test_env.jj_cmd_success(test_env.env_root(), &["workspace", "root", "--help"]); | ||
assert_eq!(help_cmd_stdout, help_flag_stdout); | ||
|
||
// Help command should not work recursively | ||
let stderr = test_env.jj_cmd_cli_error(test_env.env_root(), &["workspace", "help", "root"]); | ||
insta::assert_snapshot!(stderr, @r#" | ||
error: unrecognized subcommand 'help' | ||
Usage: jj workspace [OPTIONS] <COMMAND> | ||
For more information, try '--help'. | ||
"#); | ||
|
||
let stderr = test_env.jj_cmd_failure(test_env.env_root(), &["workspace", "add", "help"]); | ||
insta::assert_snapshot!(stderr, @r#" | ||
Error: There is no jj repo in "." | ||
"#); | ||
|
||
let stderr = test_env.jj_cmd_failure(test_env.env_root(), &["new", "help", "main"]); | ||
insta::assert_snapshot!(stderr, @r#" | ||
Error: There is no jj repo in "." | ||
"#); | ||
|
||
// Help command should output the same as --help for nonexistent commands | ||
let help_cmd_stderr = test_env.jj_cmd_cli_error(test_env.env_root(), &["help", "nonexistent"]); | ||
let help_flag_stderr = | ||
test_env.jj_cmd_cli_error(test_env.env_root(), &["nonexistent", "--help"]); | ||
assert_eq!(help_cmd_stderr, help_flag_stderr); | ||
|
||
// Some edge cases | ||
let help_cmd_stdout = test_env.jj_cmd_success(test_env.env_root(), &["help", "help"]); | ||
let help_flag_stdout = test_env.jj_cmd_success(test_env.env_root(), &["help", "--help"]); | ||
assert_eq!(help_cmd_stdout, help_flag_stdout); | ||
|
||
let stderr = test_env.jj_cmd_cli_error(test_env.env_root(), &["help", "unknown"]); | ||
insta::assert_snapshot!(stderr, @r#" | ||
error: unrecognized subcommand 'unknown' | ||
tip: a similar subcommand exists: 'undo' | ||
Usage: jj [OPTIONS] <COMMAND> | ||
For more information, try '--help'. | ||
"#); | ||
} |