1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #3876 from dotcloud/fix_panic_mflag

fix panic in mflag
This commit is contained in:
Victor Vieux 2014-01-31 14:43:16 -08:00
commit 78189c9bcf
3 changed files with 29 additions and 5 deletions

View file

@ -6,13 +6,14 @@ import (
)
var (
i int
str string
b, h bool
i int
str string
b, b2, h bool
)
func init() {
flag.BoolVar(&b, []string{"b"}, false, "a simple bool")
flag.BoolVar(&b2, []string{"-bool"}, false, "a simple bool")
flag.IntVar(&i, []string{"#integer", "-integer"}, -1, "a simple integer")
flag.StringVar(&str, []string{"s", "#hidden", "-string"}, "", "a simple string") //-s -hidden and --string will work, but -hidden won't be in the usage
flag.BoolVar(&h, []string{"h", "#help", "-help"}, false, "display the help")
@ -22,6 +23,8 @@ func main() {
if h {
flag.PrintDefaults()
}
fmt.Printf("%s\n", str)
fmt.Printf("%s\n", flag.Lookup("s").Value.String())
fmt.Printf("s/#hidden/-string: %s\n", str)
fmt.Printf("b: %b\n", b)
fmt.Printf("-bool: %b\n", b2)
fmt.Printf("s/#hidden/-string(via lookup): %s\n", flag.Lookup("s").Value.String())
}

View file

@ -287,6 +287,11 @@ type Flag struct {
func sortFlags(flags map[string]*Flag) []*Flag {
var list sort.StringSlice
for _, f := range flags {
if len(f.Names) == 1 {
list = append(list, f.Names[0])
continue
}
found := false
fName := strings.TrimPrefix(strings.TrimPrefix(f.Names[0], "#"), "-")
for _, name := range list {

View file

@ -228,6 +228,22 @@ func testParse(f *FlagSet, t *testing.T) {
}
}
func testPanic(f *FlagSet, t *testing.T) {
f.Int([]string{"-int"}, 0, "int value")
if f.Parsed() {
t.Error("f.Parse() = true before Parse")
}
args := []string{
"-int", "21",
}
f.Parse(args)
}
func TestParsePanic(t *testing.T) {
ResetForTesting(func() {})
testPanic(CommandLine, t)
}
func TestParse(t *testing.T) {
ResetForTesting(func() { t.Error("bad parse") })
testParse(CommandLine, t)