mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-05 00:50:17 -06:00
93 lines
1.9 KiB
Go
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)
|
|
}
|
|
}
|
|
}
|