mirror of
https://github.com/apple/pkl.git
synced 2026-07-12 08:02:40 +02:00
Add command to generate shell completion (#1052)
Co-authored-by: Daniel Chao <daniel.h.chao@gmail.com> Co-authored-by: Islon Scherer <islonscherer@gmail.com>
This commit is contained in:
@@ -651,6 +651,22 @@ Same meaning as <<output-path>> in <<command-eval>>.
|
|||||||
|
|
||||||
This command also takes <<common-options,common options>>.
|
This command also takes <<common-options,common options>>.
|
||||||
|
|
||||||
|
[[command-shell-completion]]
|
||||||
|
=== `pkl shell-completion`
|
||||||
|
|
||||||
|
*Synopsis*: `pkl shell-completion <shell>`
|
||||||
|
|
||||||
|
Generate shell completion script. Supported shells are: `bash`, `zsh`, `fish`.
|
||||||
|
|
||||||
|
[source,shell]
|
||||||
|
----
|
||||||
|
# Generate shell completion script for bash
|
||||||
|
pkl shell-completion bash
|
||||||
|
|
||||||
|
# Generate shell completion script for zsh
|
||||||
|
pkl shell-completion zsh
|
||||||
|
----
|
||||||
|
|
||||||
[[common-options]]
|
[[common-options]]
|
||||||
=== Common options
|
=== Common options
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.pkl.cli.commands
|
package org.pkl.cli.commands
|
||||||
|
|
||||||
|
import com.github.ajalt.clikt.completion.CompletionCommand
|
||||||
import com.github.ajalt.clikt.core.Context
|
import com.github.ajalt.clikt.core.Context
|
||||||
import com.github.ajalt.clikt.core.NoOpCliktCommand
|
import com.github.ajalt.clikt.core.NoOpCliktCommand
|
||||||
import com.github.ajalt.clikt.core.context
|
import com.github.ajalt.clikt.core.context
|
||||||
@@ -48,6 +49,11 @@ class RootCommand : NoOpCliktCommand(name = "pkl") {
|
|||||||
ProjectCommand(),
|
ProjectCommand(),
|
||||||
DownloadPackageCommand(),
|
DownloadPackageCommand(),
|
||||||
AnalyzeCommand(),
|
AnalyzeCommand(),
|
||||||
|
CompletionCommand(
|
||||||
|
name = "shell-completion",
|
||||||
|
help = "Generate a completion script for the given shell",
|
||||||
|
epilog = "For more information, visit $helpLink",
|
||||||
|
),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
* Copyright © 2024-2025 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||||
|
*
|
||||||
|
* 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.pkl.cli
|
||||||
|
|
||||||
|
import com.github.ajalt.clikt.testing.test
|
||||||
|
import org.assertj.core.api.Assertions.assertThat
|
||||||
|
import org.junit.jupiter.api.Test
|
||||||
|
import org.pkl.cli.commands.RootCommand
|
||||||
|
|
||||||
|
class CliShellCompletionTest {
|
||||||
|
@Test
|
||||||
|
fun `shell completion command supports required shells`() {
|
||||||
|
val shellList = listOf("bash", "zsh", "fish")
|
||||||
|
|
||||||
|
for (shell in shellList) {
|
||||||
|
val result = RootCommand().test("shell-completion $shell")
|
||||||
|
|
||||||
|
assertThat(result.stdout).contains("Command completion for pkl")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user