bf9395e022
CI / results (push) Blocked by required conditions
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / e2e-live (push) Waiting to run
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / deadcode (push) Waiting to run
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmdutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func TestSetTipsAndGetTips(t *testing.T) {
|
|
cmd := &cobra.Command{Use: "test"}
|
|
tips := []string{"tip one", "tip two"}
|
|
SetTips(cmd, tips)
|
|
|
|
got := GetTips(cmd)
|
|
if len(got) != 2 || got[0] != "tip one" || got[1] != "tip two" {
|
|
t.Fatalf("expected %v, got %v", tips, got)
|
|
}
|
|
}
|
|
|
|
func TestSetTipsEmpty(t *testing.T) {
|
|
cmd := &cobra.Command{Use: "test"}
|
|
SetTips(cmd, nil)
|
|
|
|
if cmd.Annotations != nil {
|
|
t.Fatal("expected nil annotations for empty tips")
|
|
}
|
|
}
|
|
|
|
func TestGetTipsNoAnnotations(t *testing.T) {
|
|
cmd := &cobra.Command{Use: "test"}
|
|
got := GetTips(cmd)
|
|
if got != nil {
|
|
t.Fatalf("expected nil, got %v", got)
|
|
}
|
|
}
|
|
|
|
func TestAddTips(t *testing.T) {
|
|
cmd := &cobra.Command{Use: "test"}
|
|
SetTips(cmd, []string{"first"})
|
|
AddTips(cmd, "second", "third")
|
|
|
|
got := GetTips(cmd)
|
|
if len(got) != 3 || got[0] != "first" || got[1] != "second" || got[2] != "third" {
|
|
t.Fatalf("expected [first second third], got %v", got)
|
|
}
|
|
}
|
|
|
|
func TestAddTipsToEmpty(t *testing.T) {
|
|
cmd := &cobra.Command{Use: "test"}
|
|
AddTips(cmd, "only")
|
|
|
|
got := GetTips(cmd)
|
|
if len(got) != 1 || got[0] != "only" {
|
|
t.Fatalf("expected [only], got %v", got)
|
|
}
|
|
}
|