mirror of
https://github.com/thegeeklab/drone-matrix.git
synced 2024-11-01 01:00:41 +00:00
337 lines
9.4 KiB
Go
337 lines
9.4 KiB
Go
|
package altsrc
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"strings"
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"gopkg.in/urfave/cli.v1"
|
||
|
)
|
||
|
|
||
|
type testApplyInputSource struct {
|
||
|
Flag FlagInputSourceExtension
|
||
|
FlagName string
|
||
|
FlagSetName string
|
||
|
Expected string
|
||
|
ContextValueString string
|
||
|
ContextValue flag.Value
|
||
|
EnvVarValue string
|
||
|
EnvVarName string
|
||
|
MapValue interface{}
|
||
|
}
|
||
|
|
||
|
func TestGenericApplyInputSourceValue(t *testing.T) {
|
||
|
v := &Parser{"abc", "def"}
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewGenericFlag(cli.GenericFlag{Name: "test", Value: &Parser{}}),
|
||
|
FlagName: "test",
|
||
|
MapValue: v,
|
||
|
})
|
||
|
expect(t, v, c.Generic("test"))
|
||
|
}
|
||
|
|
||
|
func TestGenericApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
p := &Parser{"abc", "def"}
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewGenericFlag(cli.GenericFlag{Name: "test", Value: &Parser{}}),
|
||
|
FlagName: "test",
|
||
|
MapValue: &Parser{"efg", "hig"},
|
||
|
ContextValueString: p.String(),
|
||
|
})
|
||
|
expect(t, p, c.Generic("test"))
|
||
|
}
|
||
|
|
||
|
func TestGenericApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewGenericFlag(cli.GenericFlag{Name: "test", Value: &Parser{}, EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: &Parser{"efg", "hij"},
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "abc,def",
|
||
|
})
|
||
|
expect(t, &Parser{"abc", "def"}, c.Generic("test"))
|
||
|
}
|
||
|
|
||
|
func TestStringSliceApplyInputSourceValue(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringSliceFlag(cli.StringSliceFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{"hello", "world"},
|
||
|
})
|
||
|
expect(t, c.StringSlice("test"), []string{"hello", "world"})
|
||
|
}
|
||
|
|
||
|
func TestStringSliceApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringSliceFlag(cli.StringSliceFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{"hello", "world"},
|
||
|
ContextValueString: "ohno",
|
||
|
})
|
||
|
expect(t, c.StringSlice("test"), []string{"ohno"})
|
||
|
}
|
||
|
|
||
|
func TestStringSliceApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringSliceFlag(cli.StringSliceFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{"hello", "world"},
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "oh,no",
|
||
|
})
|
||
|
expect(t, c.StringSlice("test"), []string{"oh", "no"})
|
||
|
}
|
||
|
|
||
|
func TestIntSliceApplyInputSourceValue(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntSliceFlag(cli.IntSliceFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{1, 2},
|
||
|
})
|
||
|
expect(t, c.IntSlice("test"), []int{1, 2})
|
||
|
}
|
||
|
|
||
|
func TestIntSliceApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntSliceFlag(cli.IntSliceFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{1, 2},
|
||
|
ContextValueString: "3",
|
||
|
})
|
||
|
expect(t, c.IntSlice("test"), []int{3})
|
||
|
}
|
||
|
|
||
|
func TestIntSliceApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntSliceFlag(cli.IntSliceFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: []interface{}{1, 2},
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "3,4",
|
||
|
})
|
||
|
expect(t, c.IntSlice("test"), []int{3, 4})
|
||
|
}
|
||
|
|
||
|
func TestBoolApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolFlag(cli.BoolFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: true,
|
||
|
})
|
||
|
expect(t, true, c.Bool("test"))
|
||
|
}
|
||
|
|
||
|
func TestBoolApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolFlag(cli.BoolFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: false,
|
||
|
ContextValueString: "true",
|
||
|
})
|
||
|
expect(t, true, c.Bool("test"))
|
||
|
}
|
||
|
|
||
|
func TestBoolApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolFlag(cli.BoolFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: false,
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "true",
|
||
|
})
|
||
|
expect(t, true, c.Bool("test"))
|
||
|
}
|
||
|
|
||
|
func TestBoolTApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolTFlag(cli.BoolTFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: false,
|
||
|
})
|
||
|
expect(t, false, c.BoolT("test"))
|
||
|
}
|
||
|
|
||
|
func TestBoolTApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolTFlag(cli.BoolTFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: true,
|
||
|
ContextValueString: "false",
|
||
|
})
|
||
|
expect(t, false, c.BoolT("test"))
|
||
|
}
|
||
|
|
||
|
func TestBoolTApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewBoolTFlag(cli.BoolTFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: true,
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "false",
|
||
|
})
|
||
|
expect(t, false, c.BoolT("test"))
|
||
|
}
|
||
|
|
||
|
func TestStringApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringFlag(cli.StringFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: "hello",
|
||
|
})
|
||
|
expect(t, "hello", c.String("test"))
|
||
|
}
|
||
|
|
||
|
func TestStringApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringFlag(cli.StringFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: "hello",
|
||
|
ContextValueString: "goodbye",
|
||
|
})
|
||
|
expect(t, "goodbye", c.String("test"))
|
||
|
}
|
||
|
|
||
|
func TestStringApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewStringFlag(cli.StringFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: "hello",
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "goodbye",
|
||
|
})
|
||
|
expect(t, "goodbye", c.String("test"))
|
||
|
}
|
||
|
|
||
|
func TestIntApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntFlag(cli.IntFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 15,
|
||
|
})
|
||
|
expect(t, 15, c.Int("test"))
|
||
|
}
|
||
|
|
||
|
func TestIntApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntFlag(cli.IntFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 15,
|
||
|
ContextValueString: "7",
|
||
|
})
|
||
|
expect(t, 7, c.Int("test"))
|
||
|
}
|
||
|
|
||
|
func TestIntApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewIntFlag(cli.IntFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 15,
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: "12",
|
||
|
})
|
||
|
expect(t, 12, c.Int("test"))
|
||
|
}
|
||
|
|
||
|
func TestDurationApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewDurationFlag(cli.DurationFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: time.Duration(30 * time.Second),
|
||
|
})
|
||
|
expect(t, time.Duration(30*time.Second), c.Duration("test"))
|
||
|
}
|
||
|
|
||
|
func TestDurationApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewDurationFlag(cli.DurationFlag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: time.Duration(30 * time.Second),
|
||
|
ContextValueString: time.Duration(15 * time.Second).String(),
|
||
|
})
|
||
|
expect(t, time.Duration(15*time.Second), c.Duration("test"))
|
||
|
}
|
||
|
|
||
|
func TestDurationApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewDurationFlag(cli.DurationFlag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: time.Duration(30 * time.Second),
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: time.Duration(15 * time.Second).String(),
|
||
|
})
|
||
|
expect(t, time.Duration(15*time.Second), c.Duration("test"))
|
||
|
}
|
||
|
|
||
|
func TestFloat64ApplyInputSourceMethodSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewFloat64Flag(cli.Float64Flag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 1.3,
|
||
|
})
|
||
|
expect(t, 1.3, c.Float64("test"))
|
||
|
}
|
||
|
|
||
|
func TestFloat64ApplyInputSourceMethodContextSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewFloat64Flag(cli.Float64Flag{Name: "test"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 1.3,
|
||
|
ContextValueString: fmt.Sprintf("%v", 1.4),
|
||
|
})
|
||
|
expect(t, 1.4, c.Float64("test"))
|
||
|
}
|
||
|
|
||
|
func TestFloat64ApplyInputSourceMethodEnvVarSet(t *testing.T) {
|
||
|
c := runTest(t, testApplyInputSource{
|
||
|
Flag: NewFloat64Flag(cli.Float64Flag{Name: "test", EnvVar: "TEST"}),
|
||
|
FlagName: "test",
|
||
|
MapValue: 1.3,
|
||
|
EnvVarName: "TEST",
|
||
|
EnvVarValue: fmt.Sprintf("%v", 1.4),
|
||
|
})
|
||
|
expect(t, 1.4, c.Float64("test"))
|
||
|
}
|
||
|
|
||
|
func runTest(t *testing.T, test testApplyInputSource) *cli.Context {
|
||
|
inputSource := &MapInputSource{valueMap: map[interface{}]interface{}{test.FlagName: test.MapValue}}
|
||
|
set := flag.NewFlagSet(test.FlagSetName, flag.ContinueOnError)
|
||
|
c := cli.NewContext(nil, set, nil)
|
||
|
if test.EnvVarName != "" && test.EnvVarValue != "" {
|
||
|
os.Setenv(test.EnvVarName, test.EnvVarValue)
|
||
|
defer os.Setenv(test.EnvVarName, "")
|
||
|
}
|
||
|
|
||
|
test.Flag.Apply(set)
|
||
|
if test.ContextValue != nil {
|
||
|
flag := set.Lookup(test.FlagName)
|
||
|
flag.Value = test.ContextValue
|
||
|
}
|
||
|
if test.ContextValueString != "" {
|
||
|
set.Set(test.FlagName, test.ContextValueString)
|
||
|
}
|
||
|
test.Flag.ApplyInputSourceValue(c, inputSource)
|
||
|
|
||
|
return c
|
||
|
}
|
||
|
|
||
|
type Parser [2]string
|
||
|
|
||
|
func (p *Parser) Set(value string) error {
|
||
|
parts := strings.Split(value, ",")
|
||
|
if len(parts) != 2 {
|
||
|
return fmt.Errorf("invalid format")
|
||
|
}
|
||
|
|
||
|
(*p)[0] = parts[0]
|
||
|
(*p)[1] = parts[1]
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (p *Parser) String() string {
|
||
|
return fmt.Sprintf("%s,%s", p[0], p[1])
|
||
|
}
|