Files
dolt/go/libraries/utils/argparser/parser_test.go
Brian Hendriks c8436c1721 Help Fix (#576)
2020-04-14 13:18:27 -07:00

93 lines
1.9 KiB
Go

// Copyright 2020 Liquidata, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package argparser
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestArgParser(t *testing.T) {
tests := []struct {
ap *ArgParser
args []string
expectedErr error
expectedOptions map[string]string
expectedArgs []string
}{
{
NewArgParser(),
[]string{},
nil,
map[string]string{},
[]string{},
},
{
NewArgParser(),
[]string{"arg1", "arg2"},
nil,
map[string]string{},
[]string{"arg1", "arg2"},
},
{
NewArgParser(),
[]string{"--unknown_flag"},
UnknownArgumentParam{"unknown_flag"},
map[string]string{},
[]string{},
},
{
NewArgParser(),
[]string{"--help"},
ErrHelp,
map[string]string{},
[]string{},
},
{
NewArgParser(),
[]string{"-h"},
ErrHelp,
map[string]string{},
[]string{},
},
{
NewArgParser(),
[]string{"help"},
nil,
map[string]string{},
[]string{"help"},
},
{
NewArgParser().SupportsString("param", "p", "", ""),
[]string{"--param", "value", "arg1"},
nil,
map[string]string{"param": "value"},
[]string{"arg1"},
},
}
for _, test := range tests {
apr, err := test.ap.Parse(test.args)
require.Equal(t, test.expectedErr, err)
if err == nil {
assert.Equal(t, test.expectedOptions, apr.options)
assert.Equal(t, test.expectedArgs, apr.args)
}
}
}