Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3cd1fde

Browse files
committedMar 13, 2025·
use Cobra's functionality to validate arguments
Closes #1125
1 parent 0b9bc69 commit 3cd1fde

File tree

4 files changed

+16
-44
lines changed

4 files changed

+16
-44
lines changed
 

‎cli/cmd/aeon.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,13 @@ func newAeonConnectCmd() *cobra.Command {
3737
tt aeon connect http://localhost:50051
3838
tt aeon connect unix://<socket-path>
3939
tt aeon connect /path/to/config INSTANCE_NAME>`,
40-
PreRunE: func(cmd *cobra.Command, args []string) error {
41-
err := aeonConnectValidateArgs(cmd, args)
42-
util.HandleCmdErr(cmd, err)
43-
return err
44-
},
4540
Run: func(cmd *cobra.Command, args []string) {
4641
cmdCtx.CommandName = cmd.Name()
4742
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
4843
internalAeonConnect, args)
4944
util.HandleCmdErr(cmd, err)
5045
},
51-
Args: cobra.RangeArgs(1, 2),
46+
Args: cobra.MatchAll(cobra.RangeArgs(1, 2), aeonConnectValidateArgs),
5247
}
5348

5449
aeonCmd.Flags().StringVar(&connectCtx.Ssl.KeyFile, "sslkeyfile", "",

‎cli/cmd/daemon.go

+4-16
Original file line numberDiff line numberDiff line change
@@ -22,56 +22,44 @@ func NewDaemonCmd() *cobra.Command {
2222
Use: "start",
2323
Short: "start tt daemon",
2424
Run: func(cmd *cobra.Command, args []string) {
25-
if len(args) != 0 {
26-
log.Fatalf("Wrong number of arguments")
27-
}
28-
2925
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
3026
internalDaemonStartModule, args)
3127
util.HandleCmdErr(cmd, err)
3228
},
29+
Args: cobra.ExactArgs(0),
3330
}
3431

3532
var stopCmd = &cobra.Command{
3633
Use: "stop",
3734
Short: "stop tt daemon",
3835
Run: func(cmd *cobra.Command, args []string) {
39-
if len(args) != 0 {
40-
log.Fatalf("Wrong number of arguments")
41-
}
42-
4336
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
4437
internalDaemonStopModule, args)
4538
util.HandleCmdErr(cmd, err)
4639
},
40+
Args: cobra.ExactArgs(0),
4741
}
4842

4943
var statusCmd = &cobra.Command{
5044
Use: "status",
5145
Short: "status of tt daemon",
5246
Run: func(cmd *cobra.Command, args []string) {
53-
if len(args) != 0 {
54-
log.Fatalf("Wrong number of arguments")
55-
}
56-
5747
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
5848
internalDaemonStatusModule, args)
5949
util.HandleCmdErr(cmd, err)
6050
},
51+
Args: cobra.ExactArgs(0),
6152
}
6253

6354
var restartCmd = &cobra.Command{
6455
Use: "restart",
6556
Short: "restart tt daemon",
6657
Run: func(cmd *cobra.Command, args []string) {
67-
if len(args) != 0 {
68-
log.Fatalf("Wrong number of arguments")
69-
}
70-
7158
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
7259
internalDaemonRestartModule, args)
7360
util.HandleCmdErr(cmd, err)
7461
},
62+
Args: cobra.ExactArgs(0),
7563
}
7664

7765
daemonSubCommands := []*cobra.Command{

‎cli/cmd/pack.go

+10-20
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,12 @@ func NewPackCmd() *cobra.Command {
2424
The supported types are: tgz, deb, rpm`,
2525
ValidArgs: []string{"tgz", "deb", "rpm"},
2626
Run: func(cmd *cobra.Command, args []string) {
27-
err := cobra.ExactArgs(1)(cmd, args)
28-
if err != nil {
29-
err = fmt.Errorf("incorrect combination of command parameters: %s", err.Error())
30-
log.Fatalf(err.Error())
31-
}
32-
err = cobra.OnlyValidArgs(cmd, args)
33-
if err != nil {
34-
err = fmt.Errorf("incorrect combination of command parameters: %s", err.Error())
35-
log.Fatalf(err.Error())
36-
}
37-
if packCtx.CartridgeCompat && args[0] != "tgz" {
38-
err = fmt.Errorf("cartridge-compat flag can only be used while packing tgz bundle")
39-
log.Fatalf(err.Error())
40-
}
41-
if packCtx.TarantoolVersion != "" && !packCtx.UseDocker {
42-
err = fmt.Errorf("tarantool-version argument can only be " +
43-
"used while packing in docker")
44-
log.Fatalf(err.Error())
45-
}
4627
cmdCtx.CommandName = cmd.Name()
47-
err = modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo, internalPackModule, args)
28+
err := modules.RunCmd(&cmdCtx, cmd.CommandPath(), &modulesInfo,
29+
internalPackModule, args)
4830
util.HandleCmdErr(cmd, err)
4931
},
32+
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
5033
}
5134

5235
// Common flags.
@@ -150,12 +133,19 @@ func checkFlags(packCtx *pack.PackCtx) error {
150133
log.Warnf("You specified the --all flag," +
151134
" but you are not packaging a tarball. Flag will be ignored")
152135
}
136+
if packCtx.CartridgeCompat {
137+
return fmt.Errorf("cartridge-compat flag can only be used while packing tgz bundle")
138+
}
153139
}
154140
// Check if --with-integrity-check and --without-binaries flags are provided
155141
// simultaneously. If this is the case, return an error for safety reasons.
156142
if packCtx.IntegrityPrivateKey != "" && packCtx.WithoutBinaries {
157143
return fmt.Errorf("impossible combination of --with-integrity-check" +
158144
" and --without-binaries flags")
159145
}
146+
if packCtx.TarantoolVersion != "" && !packCtx.UseDocker {
147+
return fmt.Errorf("tarantool-version argument can only be " +
148+
"used while packing in docker")
149+
}
160150
return nil
161151
}

‎test/integration/pack/test_pack.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1031,8 +1031,7 @@ def test_pack_incorrect_pack_type(tt_cmd, tmp_path):
10311031
copy_function=shutil.copy2, ignore_dangling_symlinks=True,
10321032
dirs_exist_ok=True)
10331033

1034-
expected_output = "incorrect combination of command parameters: " \
1035-
"invalid argument \"de\" for \"tt pack\""
1034+
expected_output = "invalid argument \"de\" for \"tt pack\""
10361035

10371036
rc, output = run_command_and_get_output(
10381037
[tt_cmd, "pack", "de"],

0 commit comments

Comments
 (0)
Please sign in to comment.