go-arg/usage_test.go

82 lines
2.4 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) {
2016-01-18 12:42:04 -06:00
expectedUsage := "usage: example [--name NAME] [--value VALUE] [--verbose] [--dataset DATASET] [--optimize OPTIMIZE] [--ids IDS] [--workers WORKERS] INPUT [OUTPUT [OUTPUT ...]]\n"
2015-11-04 11:47:58 -06:00
2016-01-18 12:42:04 -06:00
expectedHelp := `usage: example [--name NAME] [--value VALUE] [--verbose] [--dataset DATASET] [--optimize OPTIMIZE] [--ids IDS] [--workers WORKERS] INPUT [OUTPUT [OUTPUT ...]]
2015-11-04 11:47:58 -06:00
positional arguments:
input
2016-01-18 10:19:10 -06:00
output list of outputs
2015-11-04 11:47:58 -06:00
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
2016-01-18 12:42:04 -06:00
--workers WORKERS, -w WORKERS
number of workers to start
--help, -h display this help and exit
2015-11-04 11:47:58 -06:00
`
var args struct {
Input string `arg:"positional"`
2016-01-18 10:19:10 -06:00
Output []string `arg:"positional,help:list of outputs"`
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"`
2016-01-18 12:42:04 -06:00
Workers int `arg:"-w,env:WORKERS,help:number of workers to start"`
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())
}
func TestUsageLongPositionalWithHelp(t *testing.T) {
expectedHelp := `usage: example VERYLONGPOSITIONALWITHHELP
positional arguments:
verylongpositionalwithhelp
this positional argument is very long
options:
--help, -h display this help and exit
`
var args struct {
VeryLongPositionalWithHelp string `arg:"positional,help:this positional argument is very long"`
}
p, err := NewParser(&args)
require.NoError(t, err)
os.Args[0] = "example"
var help bytes.Buffer
p.WriteHelp(&help)
assert.Equal(t, expectedHelp, help.String())
}