a849c26509
The v0.1.0 tag pipeline failed at the package step: build-rpm.sh was committed mode 100644, so CI's ./scripts/build-rpm.sh invocation died with permission denied before any completions were generated. - Restore the executable bit on scripts/build-rpm.sh (mode 100755, matching node-lookup) - Add TestCompletionAllEntrypointsAndShells covering bash/zsh/fish completion generation through the argv[0] dispatch for all four entrypoints (chlog/chcat/chtail/chgrep)
124 lines
3.3 KiB
Go
124 lines
3.3 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestParseFields(t *testing.T) {
|
|
m, err := parseFields([]string{"a=1", "b=x=y"})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if m["a"] != "1" || m["b"] != "x=y" {
|
|
t.Errorf("m = %v", m)
|
|
}
|
|
for _, bad := range []string{"noequals", "=v"} {
|
|
if _, err := parseFields([]string{bad}); err == nil {
|
|
t.Errorf("%q: expected error", bad)
|
|
}
|
|
}
|
|
if m, _ := parseFields(nil); m != nil {
|
|
t.Error("nil input should give nil map")
|
|
}
|
|
}
|
|
|
|
func TestCommonFlagsFilterDefaults(t *testing.T) {
|
|
cf := &commonFlags{since: "1h", format: "text"}
|
|
now := time.Date(2026, 8, 23, 12, 0, 0, 0, time.UTC)
|
|
f, err := cf.filter(now)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !f.Since.Equal(now.Add(-time.Hour)) {
|
|
t.Errorf("since = %s", f.Since)
|
|
}
|
|
if !f.Until.Equal(now) {
|
|
t.Errorf("until = %s", f.Until)
|
|
}
|
|
}
|
|
|
|
func TestGrepGuardBlocksWideUnfilteredSearch(t *testing.T) {
|
|
cmd := newGrepCmd("chgrep")
|
|
cmd.SetArgs([]string{"--since", "24h", "needle"})
|
|
var out strings.Builder
|
|
cmd.SetOut(&out)
|
|
cmd.SetErr(&out)
|
|
err := cmd.Execute()
|
|
if err == nil || !strings.Contains(err.Error(), "--force") {
|
|
t.Fatalf("expected guard error mentioning --force, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestGrepGuardAllowsFilteredSearch(t *testing.T) {
|
|
// A namespace filter disables the guard; the query then fails on the
|
|
// unreachable server rather than the guard, proving the guard passed.
|
|
t.Setenv("CH_URL", "http://127.0.0.1:1")
|
|
cmd := newGrepCmd("chgrep")
|
|
cmd.SetArgs([]string{"--since", "24h", "--namespace", "logging", "needle"})
|
|
var out strings.Builder
|
|
cmd.SetOut(&out)
|
|
cmd.SetErr(&out)
|
|
err := cmd.Execute()
|
|
if err == nil {
|
|
t.Fatal("expected connection error")
|
|
}
|
|
if strings.Contains(err.Error(), "--force") {
|
|
t.Fatalf("guard should not trigger with a namespace filter: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestGrepGuardAllowsShortWindow(t *testing.T) {
|
|
t.Setenv("CH_URL", "http://127.0.0.1:1")
|
|
cmd := newGrepCmd("chgrep")
|
|
cmd.SetArgs([]string{"--since", "1h", "needle"})
|
|
err := cmd.Execute()
|
|
if err == nil {
|
|
t.Fatal("expected connection error")
|
|
}
|
|
if strings.Contains(err.Error(), "--force") {
|
|
t.Fatalf("guard should not trigger for 1h window: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestCompletionAllEntrypointsAndShells(t *testing.T) {
|
|
// scripts/build-rpm.sh runs "<name> completion <shell>" for every
|
|
// entrypoint; guard that each argv[0]-dispatched command tree exposes a
|
|
// working completion subcommand for all three packaged shells.
|
|
for _, name := range []string{"chlog", "chcat", "chtail", "chgrep"} {
|
|
for _, shell := range []string{"bash", "zsh", "fish"} {
|
|
t.Run(name+"/"+shell, func(t *testing.T) {
|
|
orig := os.Args
|
|
os.Args = []string{name}
|
|
defer func() { os.Args = orig }()
|
|
cmd := entrypoint()
|
|
var out strings.Builder
|
|
cmd.SetOut(&out)
|
|
cmd.SetErr(&out)
|
|
cmd.SetArgs([]string{"completion", shell})
|
|
if err := cmd.Execute(); err != nil {
|
|
t.Fatalf("%s completion %s: %v", name, shell, err)
|
|
}
|
|
if !strings.Contains(out.String(), name) {
|
|
t.Fatalf("%s completion %s output does not mention %q", name, shell, name)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestEntrypointDispatch(t *testing.T) {
|
|
root := newRootCmd()
|
|
names := map[string]bool{}
|
|
for _, c := range root.Commands() {
|
|
names[c.Name()] = true
|
|
}
|
|
for _, want := range []string{"cat", "tail", "grep"} {
|
|
if !names[want] {
|
|
t.Errorf("chlog missing subcommand %q", want)
|
|
}
|
|
}
|
|
}
|