mirror of
https://github.com/rclone/rclone.git
synced 2025-07-18 13:04:41 +02:00
33 lines
839 B
Go
33 lines
839 B
Go
package authorize
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func TestAuthorizeCommand(t *testing.T) {
|
|
// Test that the Use string is correctly formatted
|
|
if commandDefinition.Use != "authorize <fs name> [base64_json_blob | client_id client_secret]" {
|
|
t.Errorf("Command Use string doesn't match expected format: %s", commandDefinition.Use)
|
|
}
|
|
|
|
// Test that help output contains the argument information
|
|
buf := &bytes.Buffer{}
|
|
cmd := &cobra.Command{}
|
|
cmd.AddCommand(commandDefinition)
|
|
cmd.SetOut(buf)
|
|
cmd.SetArgs([]string{"authorize", "--help"})
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
t.Fatalf("Failed to execute help command: %v", err)
|
|
}
|
|
|
|
helpOutput := buf.String()
|
|
if !strings.Contains(helpOutput, "authorize <fs name>") {
|
|
t.Errorf("Help output doesn't contain correct usage information")
|
|
}
|
|
}
|