mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-24 19:42:04 +01:00
4de909747b
go-require lint is ignored for now Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4535 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
88 lines
1.9 KiB
Go
88 lines
1.9 KiB
Go
// Copyright The Forgejo Authors.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package forgejo
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/services/context"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func TestActions_getLabels(t *testing.T) {
|
|
type testCase struct {
|
|
args []string
|
|
hasLabels bool
|
|
hasError bool
|
|
labels []string
|
|
}
|
|
type resultType struct {
|
|
labels *[]string
|
|
err error
|
|
}
|
|
|
|
cases := []testCase{
|
|
{
|
|
args: []string{"x"},
|
|
hasLabels: true,
|
|
hasError: false,
|
|
labels: []string{""},
|
|
}, {
|
|
args: []string{"x", "--labels", "a,b"},
|
|
hasLabels: true,
|
|
hasError: false,
|
|
labels: []string{"a", "b"},
|
|
}, {
|
|
args: []string{"x", "--keep-labels"},
|
|
hasLabels: false,
|
|
hasError: false,
|
|
}, {
|
|
args: []string{"x", "--keep-labels", "--labels", "a,b"},
|
|
hasLabels: false,
|
|
hasError: true,
|
|
}, {
|
|
// this edge-case exists because that's what actually happens
|
|
// when no '--labels ...' options are present
|
|
args: []string{"x", "--keep-labels", "--labels", ""},
|
|
hasLabels: false,
|
|
hasError: false,
|
|
},
|
|
}
|
|
|
|
flags := SubcmdActionsRegister(context.Context{}).Flags
|
|
for _, c := range cases {
|
|
t.Run(fmt.Sprintf("args: %v", c.args), func(t *testing.T) {
|
|
// Create a copy of command to test
|
|
var result *resultType
|
|
app := cli.NewApp()
|
|
app.Flags = flags
|
|
app.Action = func(ctx *cli.Context) error {
|
|
labels, err := getLabels(ctx)
|
|
result = &resultType{labels, err}
|
|
return nil
|
|
}
|
|
|
|
// Run it
|
|
_ = app.Run(c.args)
|
|
|
|
// Test the results
|
|
require.NotNil(t, result)
|
|
if c.hasLabels {
|
|
assert.NotNil(t, result.labels)
|
|
assert.Equal(t, c.labels, *result.labels)
|
|
} else {
|
|
assert.Nil(t, result.labels)
|
|
}
|
|
if c.hasError {
|
|
require.Error(t, result.err)
|
|
} else {
|
|
assert.NoError(t, result.err)
|
|
}
|
|
})
|
|
}
|
|
}
|