导入 vault/builtin/credential/aws 将测试标志添加到命令行应用程序
Importing vault/builtin/credential/aws adds testing flags to command-line app
我正在创建一个快速而肮脏的 Go 应用程序以从 Vault 中提取应用程序机密,并使用 Vault 代码本身进行身份验证。作为其中的一部分,我正在从 github.com/hashicorp/vault/builtin/credential/aws
导入 aws 凭证模块。这一切都很好。
然而,当 运行 我的应用程序时,我注意到来自 Go "testing" 模块的命令行标志出现在标志中。
这可以通过编译和 运行 以下示例脚本来复制:
package main
import (
"flag"
_ "github.com/hashicorp/vault/builtin/credential/aws"
// Note: this import is masked only to make this demo script compile.
// In my actual code I need to use it, and it is not masked.
)
var myFlag string
func main() {
flag.StringVar(
&myFlag, "myFlag", "", "Test flag",
)
flag.Parse()
flag.Usage()
}
调用二进制文件时,标志如下所示:
Usage of poc:
-myFlag string
Test flag
-test.bench regexp
run only benchmarks matching regexp
-test.benchmem
print memory allocations for benchmarks
-test.benchtime d
run each benchmark for duration d (default 1s)
-test.blockprofile file
write a goroutine blocking profile to file
-test.blockprofilerate rate
set blocking profile rate (see runtime.SetBlockProfileRate) (default 1)
-test.count n
run tests and benchmarks n times (default 1)
[... more flags from the go testing module ...]
我是 Go 的新手,所以我完全有可能正在做一些我不应该在这里做的事情,但乍一看,为命令行工具导入这个模块似乎是合理的。
据我所知,模块中没有任何内容使用测试库(backend_test.go除外),所以我对这些标志的出现方式感到有点困惑,尤其是当它们不出现时它不会出现在 Vault 命令行界面本身中。
是否可以在不包含这些标志的情况下导入和使用 Vault 的 credential/aws 模块?或者在定义我自己的之前以某种方式清除测试标志?
那是因为即使您使用 _
来屏蔽 github.com/hashicorp/vault/builtin/credential/aws
,导入也确实发生了。并且导入的包 testing
,生成所有这些标志。
您可以使用新的 FlagSet 摆脱 testing
标志。
func main() {
f:=flag.NewFlagSet("Your app name",flag.ExitOnError)
f.StringVar(
&myFlag, "myFlag", "", "Test flag",
)
f.Parse(os.Args)
f.Usage()
}
我正在创建一个快速而肮脏的 Go 应用程序以从 Vault 中提取应用程序机密,并使用 Vault 代码本身进行身份验证。作为其中的一部分,我正在从 github.com/hashicorp/vault/builtin/credential/aws
导入 aws 凭证模块。这一切都很好。
然而,当 运行 我的应用程序时,我注意到来自 Go "testing" 模块的命令行标志出现在标志中。
这可以通过编译和 运行 以下示例脚本来复制:
package main
import (
"flag"
_ "github.com/hashicorp/vault/builtin/credential/aws"
// Note: this import is masked only to make this demo script compile.
// In my actual code I need to use it, and it is not masked.
)
var myFlag string
func main() {
flag.StringVar(
&myFlag, "myFlag", "", "Test flag",
)
flag.Parse()
flag.Usage()
}
调用二进制文件时,标志如下所示:
Usage of poc:
-myFlag string
Test flag
-test.bench regexp
run only benchmarks matching regexp
-test.benchmem
print memory allocations for benchmarks
-test.benchtime d
run each benchmark for duration d (default 1s)
-test.blockprofile file
write a goroutine blocking profile to file
-test.blockprofilerate rate
set blocking profile rate (see runtime.SetBlockProfileRate) (default 1)
-test.count n
run tests and benchmarks n times (default 1)
[... more flags from the go testing module ...]
我是 Go 的新手,所以我完全有可能正在做一些我不应该在这里做的事情,但乍一看,为命令行工具导入这个模块似乎是合理的。
据我所知,模块中没有任何内容使用测试库(backend_test.go除外),所以我对这些标志的出现方式感到有点困惑,尤其是当它们不出现时它不会出现在 Vault 命令行界面本身中。
是否可以在不包含这些标志的情况下导入和使用 Vault 的 credential/aws 模块?或者在定义我自己的之前以某种方式清除测试标志?
那是因为即使您使用 _
来屏蔽 github.com/hashicorp/vault/builtin/credential/aws
,导入也确实发生了。并且导入的包 testing
,生成所有这些标志。
您可以使用新的 FlagSet 摆脱 testing
标志。
func main() {
f:=flag.NewFlagSet("Your app name",flag.ExitOnError)
f.StringVar(
&myFlag, "myFlag", "", "Test flag",
)
f.Parse(os.Args)
f.Usage()
}