mirror of
https://gitea.com/gitea/tea
synced 2026-05-04 06:00:40 +02:00
9d6ae4bf02
## Summary - Adds `tea ssh-keys` command group (aliases: `ssh-key`, `keys`) under the SETUP category - Mirrors the interface of `gh ssh-key add/list/delete` - Three subcommands: `add <keyfile>`, `list`, `delete <id>` ## Commands \`\`\`sh tea ssh-keys add ~/.ssh/id_ed25519.pub # title defaults to filename stem tea ssh-keys add ~/.ssh/id_rsa.pub --title "work laptop" tea ssh-keys add ~/.ssh/deploy.pub --read-only # authentication-only key tea ssh-keys list tea ssh-keys list --output json tea ssh-keys delete 42 # prompts for confirmation tea ssh-keys delete 42 --force # skip prompt \`\`\` ## Test plan - [x] `make lint` — 0 issues - [x] `make fmt-check` — passes - [x] `go test ./cmd/sshkeys/... -run TestKeyTitle` — unit tests pass (no server needed) - [ ] Integration tests with live Gitea instance: \`\`\`sh GITEA_TEA_TEST_URL=https://your-gitea \ GITEA_TEA_TEST_TOKEN=<token> \ go test ./cmd/sshkeys/... -v -run TestSSHKey \`\`\` Exercises full add → SDK-verify → delete → 404-verify lifecycle. --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Brandon Fryslie <530235+brandon-fryslie@users.noreply.github.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/940 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Brandon Fryslie <186614+brandroid@noreply.gitea.com> Co-committed-by: Brandon Fryslie <186614+brandroid@noreply.gitea.com>
105 lines
2.8 KiB
Go
105 lines
2.8 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
"time"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"code.gitea.io/tea/modules/config"
|
|
"code.gitea.io/tea/modules/task"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var (
|
|
integrationGiteaURL string
|
|
integrationUsername string
|
|
integrationPassword string
|
|
integrationToken string
|
|
integrationTokenID int64
|
|
integrationSetupErr error
|
|
integrationClient *gitea.Client
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
integrationGiteaURL = os.Getenv("GITEA_TEA_TEST_URL")
|
|
integrationUsername = os.Getenv("GITEA_TEA_TEST_USERNAME")
|
|
integrationPassword = os.Getenv("GITEA_TEA_TEST_PASSWORD")
|
|
|
|
if integrationGiteaURL != "" {
|
|
if integrationUsername == "" || integrationPassword == "" {
|
|
integrationSetupErr = fmt.Errorf("GITEA_TEA_TEST_USERNAME and GITEA_TEA_TEST_PASSWORD are required for integration tests")
|
|
} else {
|
|
integrationClient, integrationSetupErr = gitea.NewClient(
|
|
integrationGiteaURL,
|
|
gitea.SetBasicAuth(integrationUsername, integrationPassword),
|
|
gitea.SetGiteaVersion(""),
|
|
)
|
|
if integrationSetupErr == nil {
|
|
tokenName := fmt.Sprintf("tea-integration-%d", time.Now().UnixNano())
|
|
var token *gitea.AccessToken
|
|
token, _, integrationSetupErr = integrationClient.CreateAccessToken(gitea.CreateAccessTokenOption{
|
|
Name: tokenName,
|
|
Scopes: []gitea.AccessTokenScope{gitea.AccessTokenScopeAll},
|
|
})
|
|
if integrationSetupErr == nil {
|
|
integrationToken = token.Token
|
|
integrationTokenID = token.ID
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
exitCode := m.Run()
|
|
|
|
if integrationClient != nil && integrationTokenID != 0 {
|
|
if _, err := integrationClient.DeleteAccessToken(integrationTokenID); err != nil {
|
|
fmt.Fprintf(os.Stderr, "failed to delete integration token %d: %v\n", integrationTokenID, err)
|
|
if exitCode == 0 {
|
|
exitCode = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
os.Exit(exitCode)
|
|
}
|
|
|
|
func useTempConfigPath(t *testing.T) string {
|
|
t.Helper()
|
|
|
|
configPath := filepath.Join(t.TempDir(), "config.yml")
|
|
config.SetConfigPathForTesting(configPath)
|
|
config.SetConfigForTesting(config.LocalConfig{})
|
|
t.Cleanup(func() {
|
|
config.SetConfigForTesting(config.LocalConfig{})
|
|
config.SetConfigPathForTesting("")
|
|
})
|
|
|
|
return configPath
|
|
}
|
|
|
|
func createIntegrationLogin(t *testing.T) *config.Login {
|
|
t.Helper()
|
|
|
|
_ = useTempConfigPath(t)
|
|
if integrationGiteaURL == "" {
|
|
t.Skip("GITEA_TEA_TEST_URL is not set, skipping integration test")
|
|
}
|
|
require.NoError(t, integrationSetupErr)
|
|
|
|
require.NotEmpty(t, integrationToken, "integration token setup failed")
|
|
|
|
require.NoError(t, task.CreateLogin("integration", integrationToken, "", "", "", "", "", integrationGiteaURL, "", "", true, false, false, false))
|
|
|
|
login, err := config.GetLoginByName("integration")
|
|
require.NoError(t, err)
|
|
require.NotNil(t, login)
|
|
|
|
return login
|
|
}
|