Files
dolt/go/libraries/utils/argparser/parser_test.go
Maximilian Hoffman 9a7a49f516 initial dolt backup cli (#2208)
* prototype

* backup pushes noms root

* backup pushes root value, basic restore still needs origin drop

* bats tests, no origin on restore, only head ref on restore

* cleanup code, up to date bats test

* make backup restore a root sync also, to catch branches and remote refs

* [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh

* couple of tim's comments

couple of tim's comments

* zach's comments

* loosen restrictions for conflicting remote addresses

* [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh

Co-authored-by: max-hoffman <max-hoffman@users.noreply.github.com>
2021-10-04 11:53:05 -07:00

93 lines
1.9 KiB
Go

// Copyright 2020 Dolthub, 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)
}
}
}