mirror of
https://gitea.com/gitea/tea.git
synced 2026-04-06 00:13:30 +02:00
* Use stdlib encoders * Reduce some duplication * Remove global pagination state * Dedupe JSON detail types * Bump golangci-lint Reviewed-on: https://gitea.com/gitea/tea/pulls/941 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
99 lines
2.2 KiB
Go
99 lines
2.2 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package variables
|
|
|
|
import (
|
|
stdctx "context"
|
|
"os"
|
|
"testing"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
func TestVariablesListFlags(t *testing.T) {
|
|
cmd := CmdVariablesList
|
|
|
|
// Test that required flags exist
|
|
expectedFlags := []string{"output", "remote", "login", "repo"}
|
|
|
|
for _, flagName := range expectedFlags {
|
|
found := false
|
|
for _, flag := range cmd.Flags {
|
|
if flag.Names()[0] == flagName {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if !found {
|
|
t.Errorf("Expected flag %s not found in CmdVariablesList", flagName)
|
|
}
|
|
}
|
|
|
|
// Test command properties
|
|
if cmd.Name != "list" {
|
|
t.Errorf("Expected command name 'list', got %s", cmd.Name)
|
|
}
|
|
|
|
if len(cmd.Aliases) == 0 || cmd.Aliases[0] != "ls" {
|
|
t.Errorf("Expected alias 'ls' for list command")
|
|
}
|
|
|
|
if cmd.Usage == "" {
|
|
t.Error("List command should have usage text")
|
|
}
|
|
|
|
if cmd.Description == "" {
|
|
t.Error("List command should have description")
|
|
}
|
|
}
|
|
|
|
func TestVariablesListValidation(t *testing.T) {
|
|
// Basic validation that the command accepts the expected arguments
|
|
// More detailed testing would require mocking the Gitea client
|
|
|
|
// Test that list command doesn't require arguments
|
|
args := []string{}
|
|
if len(args) > 0 {
|
|
t.Error("List command should not require arguments")
|
|
}
|
|
|
|
// Test that extra arguments are ignored
|
|
extraArgs := []string{"extra", "args"}
|
|
if len(extraArgs) > 0 {
|
|
// This is fine - list commands typically ignore extra args
|
|
}
|
|
}
|
|
|
|
func TestRunVariablesListRequiresRepoContext(t *testing.T) {
|
|
oldWd, err := os.Getwd()
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, os.Chdir(t.TempDir()))
|
|
t.Cleanup(func() {
|
|
require.NoError(t, os.Chdir(oldWd))
|
|
})
|
|
|
|
config.SetConfigForTesting(config.LocalConfig{
|
|
Logins: []config.Login{{
|
|
Name: "test",
|
|
URL: "https://gitea.example.com",
|
|
Token: "token",
|
|
User: "tester",
|
|
Default: true,
|
|
}},
|
|
})
|
|
|
|
cmd := &cli.Command{
|
|
Name: CmdVariablesList.Name,
|
|
Flags: CmdVariablesList.Flags,
|
|
}
|
|
require.NoError(t, cmd.Set("login", "test"))
|
|
|
|
err = RunVariablesList(stdctx.Background(), cmd)
|
|
require.ErrorContains(t, err, "remote repository required")
|
|
}
|