go-arg/usage_test.go

56 lines
1.5 KiB
Go
Raw Normal View History

2015-11-04 11:47:58 -06:00
package arg
import (
"bytes"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestWriteUsage(t *testing.T) {
expectedUsage := "usage: example [--name NAME] [--value VALUE] [--verbose] [--dataset DATASET] [--optimize OPTIMIZE] [--ids IDS] INPUT [OUTPUT [OUTPUT ...]]\n"
2015-11-04 11:47:58 -06:00
expectedHelp := `usage: example [--name NAME] [--value VALUE] [--verbose] [--dataset DATASET] [--optimize OPTIMIZE] [--ids IDS] INPUT [OUTPUT [OUTPUT ...]]
2015-11-04 11:47:58 -06:00
positional arguments:
input
output
options:
--name NAME name to use [default: Foo Bar]
--value VALUE secret value [default: 42]
2015-11-04 11:47:58 -06:00
--verbose, -v verbosity level
--dataset DATASET dataset to use
--optimize OPTIMIZE, -O OPTIMIZE
optimization level
--ids IDS Ids
--help, -h display this help and exit
2015-11-04 11:47:58 -06:00
`
var args struct {
Input string `arg:"positional"`
Output []string `arg:"positional"`
Name string `arg:"help:name to use"`
Value int `arg:"help:secret value"`
2015-11-04 11:47:58 -06:00
Verbose bool `arg:"-v,help:verbosity level"`
Dataset string `arg:"help:dataset to use"`
Optimize int `arg:"-O,help:optimization level"`
Ids []int64 `arg:"help:Ids"`
2015-11-04 11:47:58 -06:00
}
args.Name = "Foo Bar"
args.Value = 42
2015-11-04 11:47:58 -06:00
p, err := NewParser(&args)
require.NoError(t, err)
os.Args[0] = "example"
var usage bytes.Buffer
p.WriteUsage(&usage)
assert.Equal(t, expectedUsage, usage.String())
var help bytes.Buffer
p.WriteHelp(&help)
assert.Equal(t, expectedHelp, help.String())
}