2019-12-15 09:11:31 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-15 09:11:31 +01:00
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
package integration
|
2019-12-15 09:11:31 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-12-17 02:49:07 +01:00
|
|
|
"net/url"
|
2019-12-15 09:11:31 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/cmd"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-09-29 03:16:52 +02:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-12-15 09:11:31 +01:00
|
|
|
|
2023-07-21 11:28:19 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/urfave/cli/v2"
|
2019-12-15 09:11:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_CmdKeys(t *testing.T) {
|
2019-12-17 02:49:07 +01:00
|
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args []string
|
|
|
|
wantErr bool
|
|
|
|
expectedOutput string
|
|
|
|
}{
|
|
|
|
{"test_empty_1", []string{"keys", "--username=git", "--type=test", "--content=test"}, true, ""},
|
|
|
|
{"test_empty_2", []string{"keys", "-e", "git", "-u", "git", "-t", "test", "-k", "test"}, true, ""},
|
2022-01-20 18:46:10 +01:00
|
|
|
{
|
|
|
|
"with_key",
|
2019-12-17 02:49:07 +01:00
|
|
|
[]string{"keys", "-e", "git", "-u", "git", "-t", "ssh-rsa", "-k", "AAAAB3NzaC1yc2EAAAADAQABAAABgQDWVj0fQ5N8wNc0LVNA41wDLYJ89ZIbejrPfg/avyj3u/ZohAKsQclxG4Ju0VirduBFF9EOiuxoiFBRr3xRpqzpsZtnMPkWVWb+akZwBFAx8p+jKdy4QXR/SZqbVobrGwip2UjSrri1CtBxpJikojRIZfCnDaMOyd9Jp6KkujvniFzUWdLmCPxUE9zhTaPu0JsEP7MW0m6yx7ZUhHyfss+NtqmFTaDO+QlMR7L2QkDliN2Jl3Xa3PhuWnKJfWhdAq1Cw4oraKUOmIgXLkuiuxVQ6mD3AiFupkmfqdHq6h+uHHmyQqv3gU+/sD8GbGAhf6ftqhTsXjnv1Aj4R8NoDf9BS6KRkzkeun5UisSzgtfQzjOMEiJtmrep2ZQrMGahrXa+q4VKr0aKJfm+KlLfwm/JztfsBcqQWNcTURiCFqz+fgZw0Ey/de0eyMzldYTdXXNRYCKjs9bvBK+6SSXRM7AhftfQ0ZuoW5+gtinPrnmoOaSCEJbAiEiTO/BzOHgowiM="},
|
|
|
|
false,
|
2021-11-23 09:12:02 +01:00
|
|
|
"# gitea public key\ncommand=\"" + setting.AppPath + " --config=" + util.ShellEscape(setting.CustomConf) + " serv key-1\",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty,no-user-rc,restrict ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDWVj0fQ5N8wNc0LVNA41wDLYJ89ZIbejrPfg/avyj3u/ZohAKsQclxG4Ju0VirduBFF9EOiuxoiFBRr3xRpqzpsZtnMPkWVWb+akZwBFAx8p+jKdy4QXR/SZqbVobrGwip2UjSrri1CtBxpJikojRIZfCnDaMOyd9Jp6KkujvniFzUWdLmCPxUE9zhTaPu0JsEP7MW0m6yx7ZUhHyfss+NtqmFTaDO+QlMR7L2QkDliN2Jl3Xa3PhuWnKJfWhdAq1Cw4oraKUOmIgXLkuiuxVQ6mD3AiFupkmfqdHq6h+uHHmyQqv3gU+/sD8GbGAhf6ftqhTsXjnv1Aj4R8NoDf9BS6KRkzkeun5UisSzgtfQzjOMEiJtmrep2ZQrMGahrXa+q4VKr0aKJfm+KlLfwm/JztfsBcqQWNcTURiCFqz+fgZw0Ey/de0eyMzldYTdXXNRYCKjs9bvBK+6SSXRM7AhftfQ0ZuoW5+gtinPrnmoOaSCEJbAiEiTO/BzOHgowiM= user2@localhost\n",
|
2019-12-17 02:49:07 +01:00
|
|
|
},
|
|
|
|
{"invalid", []string{"keys", "--not-a-flag=git"}, true, "Incorrect Usage: flag provided but not defined: -not-a-flag\n\n"},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2023-07-21 11:28:19 +02:00
|
|
|
out := new(bytes.Buffer)
|
|
|
|
app := cli.NewApp()
|
|
|
|
app.Writer = out
|
|
|
|
app.Commands = []*cli.Command{cmd.CmdKeys}
|
|
|
|
cmd.CmdKeys.HideHelp = true
|
|
|
|
err := app.Run(append([]string{"prog"}, tt.args...))
|
|
|
|
if tt.wantErr {
|
|
|
|
assert.Error(t, err)
|
|
|
|
} else {
|
|
|
|
assert.NoError(t, err)
|
2019-12-17 02:49:07 +01:00
|
|
|
}
|
2023-07-21 11:28:19 +02:00
|
|
|
assert.Equal(t, tt.expectedOutput, out.String())
|
2019-12-17 02:49:07 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2019-12-15 09:11:31 +01:00
|
|
|
}
|