1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
|
package flaggy_test
import (
"net"
"os"
"testing"
"time"
"github.com/integrii/flaggy"
)
func TestSCNameExists(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash from double subcommand name use at same position")
}
}()
flaggy.ResetParser()
scA := flaggy.NewSubcommand("test")
scB := flaggy.NewSubcommand("test")
flaggy.AttachSubcommand(scA, 1)
flaggy.AttachSubcommand(scB, 1)
}
func TestFlagExists(t *testing.T) {
sc := flaggy.NewSubcommand("testFlagExists")
e := sc.FlagExists("test")
if e == true {
t.Fatal("Flag exists on subcommand that should not")
}
var testA string
sc.String(&testA, "", "test", "a test flag")
e = sc.FlagExists("test")
if e == false {
t.Fatal("Flag does not exist on a subcommand that should")
}
}
// TestExitOnUnknownFlag tests that when an unknown flag is supplied and the
// ShowHelpOnUnexpected value is set, an error is thrown on unknown flags.
func TestExitOnUnknownFlag(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on unknown flag")
}
}()
flaggy.DebugMode = true
defer debugOff()
var expectedFlag string
var expectedPositional string
flaggy.ResetParser()
flaggy.String(&expectedFlag, "f", "flag", "an expected positonal flag")
flaggy.AddPositionalValue(&expectedPositional, "positionalTest", 1, true, "A test positional value")
flaggy.ParseArgs([]string{"positionalHere", "-f", "flagHere", "unexpectedValue"})
}
// TestExitOnUnknownFlagWithValue tests that when an unknown flag with a value
// is supplied and the ShowHelpOnUnexpected value is set, an error is thrown on
// the unknown flags.
func TestExitOnUnknownFlagWithValue(t *testing.T) {
flaggy.ResetParser()
flaggy.ShowHelpOnUnexpectedEnable()
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on unknown flag with value")
}
}()
flaggy.DebugMode = true
defer debugOff()
var expectedFlag string
var expectedPositional string
flaggy.ResetParser()
flaggy.String(&expectedFlag, "f", "flag", "an expected positonal flag")
flaggy.AddPositionalValue(&expectedPositional, "positionalTest", 1, true, "A test positional value")
flaggy.ParseArgs([]string{"positionalHere", "-f", "flagHere", "--unexpectedValue=true"})
}
// TestDoublePositional tests errors when two positionals are
// specified at the same time
func TestDoublePositional(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on double assignment")
}
}()
// flaggy.DebugMode = true
defer debugOff()
var posTest string
flaggy.ResetParser()
flaggy.AddPositionalValue(&posTest, "posTest", 1, true, "First test positional")
flaggy.AddPositionalValue(&posTest, "posTest2", 1, true, "Second test positional")
}
func TestNextArgDoesNotExist(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash when next arg not specifid")
}
}()
flaggy.ResetParser()
flaggy.PanicInsteadOfExit = true
var test string
flaggy.String(&test, "t", "test", "Description goes here")
flaggy.ParseArgs([]string{"-t"})
}
func TestSubcommandHidden(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash instead of exit. Subcommand id was set to a blank")
}
}()
flaggy.ResetParser()
sc := flaggy.NewSubcommand("")
sc.Hidden = true
sc.ShortName = "sc"
flaggy.AttachSubcommand(sc, 1)
flaggy.ParseArgs([]string{"x"})
}
// TestRequiredPositional tests required positionals
func TestRequiredPositional(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on unused required positional")
}
}()
// flaggy.DebugMode = true
defer debugOff()
var posTest string
flaggy.AddPositionalValue(&posTest, "posTest", 1, true, "First test positional")
flaggy.Parse()
}
// TestTypoSubcommand tests what happens when an invalid subcommand is passed
func TestTypoSubcommand(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on subcommand typo")
}
}()
p := flaggy.NewParser("TestTypoSubcommand")
p.ShowHelpOnUnexpected = true
args := []string{"unexpectedArg"}
newSCA := flaggy.NewSubcommand("TestTypoSubcommandA")
newSCB := flaggy.NewSubcommand("TestTypoSubcommandB")
p.AttachSubcommand(newSCA, 1)
p.AttachSubcommand(newSCB, 1)
p.ParseArgs(args)
}
// TestIgnoreUnexpected tests what happens when an invalid subcommand is passed but should be ignored
func TestIgnoreUnexpected(t *testing.T) {
p := flaggy.NewParser("TestTypoSubcommand")
p.ShowHelpOnUnexpected = false
args := []string{"unexpectedArg"}
newSCA := flaggy.NewSubcommand("TestTypoSubcommandA")
p.AttachSubcommand(newSCA, 1)
p.ParseArgs(args)
}
// TestSubcommandHelp tests displaying of help on unspecified commands
func TestSubcommandHelp(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on subcommand help display")
}
}()
p := flaggy.NewParser("TestSubcommandHelp")
p.ShowHelpOnUnexpected = true
args := []string{"unexpectedArg"}
p.ParseArgs(args)
}
func TestHelpWithHFlagA(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on help flag use")
}
}()
p := flaggy.NewParser("TestHelpWithHFlag")
p.ShowHelpWithHFlag = true
args := []string{"-h"}
p.ParseArgs(args)
}
func TestHelpWithHFlagB(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on help flag use")
}
}()
p := flaggy.NewParser("TestHelpWithHFlag")
p.ShowHelpWithHFlag = true
args := []string{"--help"}
p.ParseArgs(args)
}
func TestVersionWithVFlagB(t *testing.T) {
defer func() {
r := recover()
if r == nil {
t.Fatal("Expected crash on version flag use")
}
}()
p := flaggy.NewParser("TestSubcommandVersion")
p.ShowVersionWithVersionFlag = true
p.Version = "TestVersionWithVFlagB 0.0.0a"
args := []string{"--version"}
p.ParseArgs(args)
}
// TestSubcommandParse tests paring of a single subcommand
func TestSubcommandParse(t *testing.T) {
var positionA string
// create the argument parser
p := flaggy.NewParser("TestSubcommandParse")
// create a subcommand
newSC := flaggy.NewSubcommand("testSubcommand")
// add the subcommand into the parser
p.AttachSubcommand(newSC, 1)
// add a positional arg onto the subcommand at relative position 1
newSC.AddPositionalValue(&positionA, "positionalA", 1, false, "This is a test positional value")
// override os args and parse them
os.Args = []string{"binaryName", "testSubcommand", "testPositional"}
p.Parse()
// ensure subcommand and positional used
if !newSC.Used {
t.Fatal("Subcommand was not used, but it was expected to be")
}
if positionA != "testPositional" {
t.Fatal("Positional argument was not set to testPositional, was:", positionA)
}
}
func TestBadSubcommand(t *testing.T) {
// create the argument parser
p := flaggy.NewParser("TestBadSubcommand")
// create a subcommand
newSC := flaggy.NewSubcommand("testSubcommand")
p.AttachSubcommand(newSC, 1)
// test what happens if you add a bad subcommand
os.Args = []string{"test"}
p.Parse()
}
func TestBadPositional(t *testing.T) {
// create the argument parser
p := flaggy.NewParser("TestBadPositional")
// create a subcommand
// add a positional arg into the subcommand
var positionA string
var err error
p.AddPositionalValue(&positionA, "positionalA", 1, false, "This is a test positional value")
// test what happens if you add a bad subcommand
os.Args = []string{"test", "badPositional"}
err = p.Parse()
if err != nil {
t.Fatal("Threw an error when bad positional was passed, but shouldn't have")
}
}
// TestNakedBoolFlag tests a naked boolean flag, which mean it has no
// specified value beyond the flag being present.
func TestNakedBool(t *testing.T) {
flaggy.ResetParser()
os.Args = []string{"testBinary", "-t"}
// add a bool var
var boolVar bool
flaggy.Bool(&boolVar, "t", "boolVar", "A boolean flag for testing")
flaggy.Parse()
if !boolVar {
t.Fatal("Boolean naked val not set to true")
}
}
// debugOff makes defers easier
func debugOff() {
flaggy.DebugMode = false
}
// BenchmarkSubcommandParse benchmarks the creation and parsing of
// a basic subcommand
func BenchmarkSubcommandParse(b *testing.B) {
// catch errors that may occur
defer func(b *testing.B) {
err := recover()
if err != nil {
b.Fatal("Benchmark had error:", err)
}
}(b)
for i := 0; i < b.N; i++ {
var positionA string
// create the argument parser
p := flaggy.NewParser("TestSubcommandParse")
// create a subcommand
newSC := flaggy.NewSubcommand("testSubcommand")
// add the subcommand into the parser
p.AttachSubcommand(newSC, 1)
// add a positional arg onto the subcommand at relative position 1
newSC.AddPositionalValue(&positionA, "positionalA", 1, false, "This is a test positional value")
// override os args and parse them
os.Args = []string{"binaryName", "testSubcommand", "testPositional"}
err := p.Parse()
if err != nil {
b.Fatal("Error parsing args: " + err.Error())
}
}
}
// TestSCInputParsing tests all flag types on subcommands
func TestSCInputParsing(t *testing.T) {
defer debugOff()
flaggy.DebugMode = true
flaggy.ResetParser()
var err error
inputArgs := []string{}
// setup a subcommand for all our flags to hang on
sc := flaggy.NewSubcommand("subCommand")
flaggy.AttachSubcommand(sc, 1)
inputArgs = append(inputArgs, "subCommand")
// Setup input arguments for every input type on our subcommand
var stringFlag = "defaultVar"
sc.String(&stringFlag, "s", "string", "string flag")
inputArgs = append(inputArgs, "-s", "flaggy")
var stringFlagExpected = "flaggy"
var stringSliceFlag []string
sc.StringSlice(&stringSliceFlag, "ssf", "stringSlice", "string slice flag")
inputArgs = append(inputArgs, "-ssf", "one", "-ssf", "two")
var stringSliceFlagExpected = []string{"one", "two"}
var stringSliceCommaFlag []string
sc.StringSlice(&stringSliceCommaFlag, "sscf", "stringSliceComma", "string slice flag")
inputArgs = append(inputArgs, "-sscf", "one,two")
var stringSliceCommaFlagExpected = []string{"one", "two"}
var boolFlag bool
sc.Bool(&boolFlag, "bf", "bool", "bool flag")
inputArgs = append(inputArgs, "-bf")
var boolFlagExpected = true
var boolSliceFlag []bool
sc.BoolSlice(&boolSliceFlag, "bsf", "boolSlice", "bool slice flag")
inputArgs = append(inputArgs, "-bsf", "-bsf")
var boolSliceFlagExpected = []bool{true, true}
var byteSliceFlag []byte
sc.ByteSlice(&byteSliceFlag, "bysf", "byteSlice", "byte slice flag")
inputArgs = append(inputArgs, "-bysf", "17", "-bysf", "18")
var byteSliceFlagExpected = []uint8{17, 18}
var durationFlag time.Duration
sc.Duration(&durationFlag, "df", "duration", "duration flag")
inputArgs = append(inputArgs, "-df", "33s")
var durationFlagExpected = time.Second * 33
var durationSliceFlag []time.Duration
sc.DurationSlice(&durationSliceFlag, "dsf", "durationSlice", "duration slice flag")
inputArgs = append(inputArgs, "-dsf", "33s", "-dsf", "1h")
var durationSliceFlagExpected = []time.Duration{time.Second * 33, time.Hour}
var float32Flag float32
sc.Float32(&float32Flag, "f32", "float32", "float32 flag")
inputArgs = append(inputArgs, "-f32", "33.343")
var float32FlagExpected float32 = 33.343
var float32SliceFlag []float32
sc.Float32Slice(&float32SliceFlag, "f32s", "float32Slice", "float32 slice flag")
inputArgs = append(inputArgs, "-f32s", "33.343", "-f32s", "33.222")
var float32SliceFlagExpected = []float32{33.343, 33.222}
var float64Flag float64
sc.Float64(&float64Flag, "f64", "float64", "float64 flag")
inputArgs = append(inputArgs, "-f64", "33.222343")
var float64FlagExpected = 33.222343
var float64SliceFlag []float64
sc.Float64Slice(&float64SliceFlag, "f64s", "float64Slice", "float64 slice flag")
inputArgs = append(inputArgs, "-f64s", "64.343", "-f64s", "64.222")
var float64SliceFlagExpected = []float64{64.343, 64.222}
var intFlag int
sc.Int(&intFlag, "i", "int", "int flag")
inputArgs = append(inputArgs, "-i", "3553")
var intFlagExpected = 3553
var intSliceFlag []int
sc.IntSlice(&intSliceFlag, "is", "intSlice", "int slice flag")
inputArgs = append(inputArgs, "-is", "6446", "-is", "64")
var intSliceFlagExpected = []int{6446, 64}
var uintFlag uint
sc.UInt(&uintFlag, "ui", "uint", "uint flag")
inputArgs = append(inputArgs, "-ui", "3553")
var uintFlagExpected uint = 3553
var uintSliceFlag []uint
sc.UIntSlice(&uintSliceFlag, "uis", "uintSlice", "uint slice flag")
inputArgs = append(inputArgs, "-uis", "6446", "-uis", "64")
var uintSliceFlagExpected = []uint{6446, 64}
var uint64Flag uint64
sc.UInt64(&uint64Flag, "ui64", "uint64", "uint64 flag")
inputArgs = append(inputArgs, "-ui64", "3553")
var uint64FlagExpected uint64 = 3553
var uint64SliceFlag []uint64
sc.UInt64Slice(&uint64SliceFlag, "ui64s", "uint64Slice", "uint64 slice flag")
inputArgs = append(inputArgs, "-ui64s", "6446", "-ui64s", "64")
var uint64SliceFlagExpected = []uint64{6446, 64}
var uint32Flag uint32
sc.UInt32(&uint32Flag, "ui32", "uint32", "uint32 flag")
inputArgs = append(inputArgs, "-ui32", "6446")
var uint32FlagExpected uint32 = 6446
var uint32SliceFlag []uint32
sc.UInt32Slice(&uint32SliceFlag, "ui32s", "uint32Slice", "uint32 slice flag")
inputArgs = append(inputArgs, "-ui32s", "6446", "-ui32s", "64")
var uint32SliceFlagExpected = []uint32{6446, 64}
var uint16Flag uint16
sc.UInt16(&uint16Flag, "ui16", "uint16", "uint16 flag")
inputArgs = append(inputArgs, "-ui16", "6446")
var uint16FlagExpected uint16 = 6446
var uint16SliceFlag []uint16
sc.UInt16Slice(&uint16SliceFlag, "ui16s", "uint16Slice", "uint16 slice flag")
inputArgs = append(inputArgs, "-ui16s", "6446", "-ui16s", "64")
var uint16SliceFlagExpected = []uint16{6446, 64}
var uint8Flag uint8
sc.UInt8(&uint8Flag, "ui8", "uint8", "uint8 flag")
inputArgs = append(inputArgs, "-ui8", "50")
var uint8FlagExpected uint8 = 50
var uint8SliceFlag []uint8
sc.UInt8Slice(&uint8SliceFlag, "ui8s", "uint8Slice", "uint8 slice flag")
inputArgs = append(inputArgs, "-ui8s", "3", "-ui8s", "2")
var uint8SliceFlagExpected = []uint8{uint8(3), uint8(2)}
var int64Flag int64
sc.Int64(&int64Flag, "i64", "i64", "int64 flag")
inputArgs = append(inputArgs, "-i64", "33445566")
var int64FlagExpected int64 = 33445566
var int64SliceFlag []int64
sc.Int64Slice(&int64SliceFlag, "i64s", "int64Slice", "int64 slice flag")
if err != nil {
t.Fatal(err)
}
inputArgs = append(inputArgs, "-i64s", "40", "-i64s", "50")
var int64SliceFlagExpected = []int64{40, 50}
var int32Flag int32
sc.Int32(&int32Flag, "i32", "int32", "int32 flag")
inputArgs = append(inputArgs, "-i32", "445566")
var int32FlagExpected int32 = 445566
var int32SliceFlag []int32
sc.Int32Slice(&int32SliceFlag, "i32s", "int32Slice", "uint32 slice flag")
inputArgs = append(inputArgs, "-i32s", "40", "-i32s", "50")
var int32SliceFlagExpected = []int32{40, 50}
var int16Flag int16
sc.Int16(&int16Flag, "i16", "int16", "int16 flag")
if err != nil {
t.Fatal(err)
}
inputArgs = append(inputArgs, "-i16", "5566")
var int16FlagExpected int16 = 5566
var int16SliceFlag []int16
sc.Int16Slice(&int16SliceFlag, "i16s", "int16Slice", "int16 slice flag")
inputArgs = append(inputArgs, "-i16s", "40", "-i16s", "50")
var int16SliceFlagExpected = []int16{40, 50}
var int8Flag int8
sc.Int8(&int8Flag, "i8", "int8", "int8 flag")
inputArgs = append(inputArgs, "-i8", "32")
var int8FlagExpected int8 = 32
var int8SliceFlag []int8
sc.Int8Slice(&int8SliceFlag, "i8s", "int8Slice", "uint8 slice flag")
inputArgs = append(inputArgs, "-i8s", "4", "-i8s", "2")
var int8SliceFlagExpected = []int8{4, 2}
var ipFlag net.IP
sc.IP(&ipFlag, "ip", "ipFlag", "ip flag")
inputArgs = append(inputArgs, "-ip", "1.1.1.1")
var ipFlagExpected = net.IPv4(1, 1, 1, 1)
var ipSliceFlag []net.IP
sc.IPSlice(&ipSliceFlag, "ips", "ipFlagSlice", "ip slice flag")
inputArgs = append(inputArgs, "-ips", "1.1.1.1", "-ips", "4.4.4.4")
var ipSliceFlagExpected = []net.IP{net.IPv4(1, 1, 1, 1), net.IPv4(4, 4, 4, 4)}
var hwFlag net.HardwareAddr
sc.HardwareAddr(&hwFlag, "hw", "hwFlag", "hw flag")
inputArgs = append(inputArgs, "-hw", "32:00:16:46:20:00")
hwFlagExpected, err := net.ParseMAC("32:00:16:46:20:00")
if err != nil {
t.Fatal(err)
}
var hwFlagSlice []net.HardwareAddr
sc.HardwareAddrSlice(&hwFlagSlice, "hws", "hwFlagSlice", "hw slice flag")
inputArgs = append(inputArgs, "-hws", "32:00:16:46:20:00", "-hws", "32:00:16:46:20:01")
macA, err := net.ParseMAC("32:00:16:46:20:00")
if err != nil {
t.Fatal(err)
}
macB, err := net.ParseMAC("32:00:16:46:20:01")
if err != nil {
t.Fatal(err)
}
var hwFlagSliceExpected = []net.HardwareAddr{macA, macB}
var maskFlag net.IPMask
sc.IPMask(&maskFlag, "m", "mFlag", "mask flag")
inputArgs = append(inputArgs, "-m", "255.255.255.255")
var maskFlagExpected = net.IPMask([]byte{255, 255, 255, 255})
var maskSliceFlag []net.IPMask
sc.IPMaskSlice(&maskSliceFlag, "ms", "mFlagSlice", "mask slice flag")
if err != nil {
t.Fatal(err)
}
inputArgs = append(inputArgs, "-ms", "255.255.255.255", "-ms", "255.255.255.0")
var maskSliceFlagExpected = []net.IPMask{net.IPMask([]byte{255, 255, 255, 255}), net.IPMask([]byte{255, 255, 255, 0})}
// display help with all flags used
flaggy.ShowHelp("Showing help from TestSCInputParsing test.")
// Parse arguments
flaggy.ParseArgs(inputArgs)
// validate parsed values
if stringFlag != stringFlagExpected {
t.Fatal("string flag incorrect", stringFlag, stringFlagExpected)
}
for i, f := range stringSliceFlagExpected {
if stringSliceFlag[i] != f {
t.Fatal("stringSlice value incorrect", stringSliceFlag[i], f)
}
}
for i, f := range stringSliceCommaFlagExpected {
if stringSliceCommaFlag[i] != f {
t.Fatal("stringSlice value incorrect", stringSliceCommaFlag[i], f)
}
}
if boolFlag != boolFlagExpected {
t.Fatal("bool flag incorrect", boolFlag, boolFlagExpected)
}
for i, f := range boolSliceFlagExpected {
if boolSliceFlag[i] != f {
t.Fatal("boolSlice value incorrect", boolSliceFlag[i], f)
}
}
for i, f := range byteSliceFlagExpected {
if byteSliceFlag[i] != f {
t.Fatal("byteSlice value incorrect", boolSliceFlag[i], f)
}
}
if durationFlag != durationFlagExpected {
t.Fatal("duration flag incorrect", durationFlag, durationFlagExpected)
}
for i, f := range durationSliceFlagExpected {
if durationSliceFlag[i] != f {
t.Fatal("durationSlice value incorrect", durationSliceFlag[i], f)
}
}
if float32Flag != float32FlagExpected {
t.Fatal("float32 flag incorrect", float32Flag, float32FlagExpected)
}
for i, f := range float32SliceFlagExpected {
if float32SliceFlag[i] != f {
t.Fatal("float32Slice value incorrect", float32SliceFlag[i], f)
}
}
if float64Flag != float64FlagExpected {
t.Fatal("float64 flag incorrect", float64Flag, float64FlagExpected)
}
for i, f := range float64SliceFlagExpected {
if float64SliceFlag[i] != f {
t.Fatal("float64Slice value incorrect", float64SliceFlag[i], f)
}
}
if intFlag != intFlagExpected {
t.Fatal("int flag incorrect", intFlag, intFlagExpected)
}
for i, f := range intSliceFlagExpected {
if intSliceFlag[i] != f {
t.Fatal("intSlice value incorrect", intSliceFlag[i], f)
}
}
if uintFlag != uintFlagExpected {
t.Fatal("uint flag incorrect", uintFlag, uintFlagExpected)
}
for i, f := range uintSliceFlagExpected {
if uintSliceFlag[i] != f {
t.Fatal("uintSlice value incorrect", uintSliceFlag[i], f)
}
}
if uint64Flag != uint64FlagExpected {
t.Fatal("uint64 flag incorrect", uint64Flag, uint64FlagExpected)
}
for i, f := range uint64SliceFlagExpected {
if uint64SliceFlag[i] != f {
t.Fatal("uint64Slice value incorrect", uint64SliceFlag[i], f)
}
}
if uint32Flag != uint32FlagExpected {
t.Fatal("uint32 flag incorrect", uint32Flag, uint32FlagExpected)
}
for i, f := range uint32SliceFlagExpected {
if uint32SliceFlag[i] != f {
t.Fatal("uint32Slice value incorrect", uint32SliceFlag[i], f)
}
}
if uint16Flag != uint16FlagExpected {
t.Fatal("uint16 flag incorrect", uint16Flag, uint16FlagExpected)
}
for i, f := range uint16SliceFlagExpected {
if uint16SliceFlag[i] != f {
t.Fatal("uint16Slice value incorrect", uint16SliceFlag[i], f)
}
}
if uint8Flag != uint8FlagExpected {
t.Fatal("uint8 flag incorrect", uint8Flag, uint8FlagExpected)
}
for i, f := range uint8SliceFlagExpected {
if uint8SliceFlag[i] != f {
t.Fatal("uint8Slice value", i, "incorrect", uint8SliceFlag[i], f)
}
}
if int64Flag != int64FlagExpected {
t.Fatal("int64 flag incorrect", int64Flag, int64FlagExpected)
}
for i, f := range int64SliceFlagExpected {
if int64SliceFlag[i] != f {
t.Fatal("int64Slice value incorrect", int64SliceFlag[i], f)
}
}
if int32Flag != int32FlagExpected {
t.Fatal("int32 flag incorrect", int32Flag, int32FlagExpected)
}
for i, f := range int32SliceFlagExpected {
if int32SliceFlag[i] != f {
t.Fatal("int32Slice value incorrect", int32SliceFlag[i], f)
}
}
if int16Flag != int16FlagExpected {
t.Fatal("int16 flag incorrect", int16Flag, int16FlagExpected)
}
for i, f := range int16SliceFlagExpected {
if int16SliceFlag[i] != f {
t.Fatal("int16Slice value incorrect", int16SliceFlag[i], f)
}
}
if int8Flag != int8FlagExpected {
t.Fatal("int8 flag incorrect", int8Flag, int8FlagExpected)
}
for i, f := range int8SliceFlagExpected {
if int8SliceFlag[i] != f {
t.Fatal("int8Slice value incorrect", int8SliceFlag[i], f)
}
}
if !ipFlag.Equal(ipFlagExpected) {
t.Fatal("ip flag incorrect", ipFlag, ipFlagExpected)
}
for i, f := range ipSliceFlagExpected {
if !f.Equal(ipSliceFlag[i]) {
t.Fatal("ipSlice value incorrect", ipSliceFlag[i], f)
}
}
if hwFlag.String() != hwFlagExpected.String() {
t.Fatal("hw flag incorrect", hwFlag, hwFlagExpected)
}
for i, f := range hwFlagSliceExpected {
if f.String() != hwFlagSlice[i].String() {
t.Fatal("hw flag slice value incorrect", hwFlagSlice[i].String(), f.String())
}
}
if maskFlag.String() != maskFlagExpected.String() {
t.Fatal("mask flag incorrect", maskFlag, maskFlagExpected)
}
for i, f := range maskSliceFlagExpected {
if f.String() != maskSliceFlag[i].String() {
t.Fatal("mask flag slice value incorrect", maskSliceFlag[i].String(), f.String())
}
}
}
|