mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 02:50:04 -05:00
d11f5ec41b
* save version with defaultConfig in session -- todo remove and make PersistedSession * add PersistedSession, and DoltSession interface to switch * fmt * fixup test for persistedSession * PersistedSession progress, interfaces and enginetests * All DsessFromSess references fixed * delete unnuecessary lines * Comments for dolt session * Dolt session tests * save bats progress * formatting * GMS version * Bump GMS version * add license header * fix multi-db errors * try copyright again * make test deterministic * higher connection timeout default * sever config ordering * PR fixes * PR fixes * config rewrite progress * server config refactor * PR cleanup * delete lines * add go tests, refactor persistent global initialization * PR fixes * delete more lines * small PR cleanup * try to fix data race * better constructor names * zach don't like --server flag * edge cases around disabling replication * missed line in merge * Skip two tests i fixed in follow-on PR * merge two config prs * fix nondeterministic bats * zach's comments * bump bats sql-shell expect timeout * GMS and integrator race to access system vars; need to decide whether to force integrator to initialize, or make GMS init private; leaving in GMS for now
113 lines
2.8 KiB
Go
113 lines
2.8 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 config
|
|
|
|
import (
|
|
"sort"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var ConfigVals = map[string]string{
|
|
"scopeA.k1": "v1",
|
|
"scopeA.k2": "v2",
|
|
"scopeB.k3": "v3",
|
|
"k1": "v1",
|
|
}
|
|
|
|
func newConfigVals() map[string]string {
|
|
newConfig := make(map[string]string)
|
|
for k, v := range ConfigVals {
|
|
newConfig[k] = v
|
|
}
|
|
return newConfig
|
|
}
|
|
|
|
func newPrefixConfig(prefix string) PrefixConfig {
|
|
|
|
mc := NewMapConfig(newConfigVals())
|
|
return NewPrefixConfig(mc, prefix)
|
|
|
|
}
|
|
|
|
func TestPrefixConfigSet(t *testing.T) {
|
|
conf := newPrefixConfig("test")
|
|
conf.SetStrings(newConfigVals())
|
|
v1, _ := conf.c.GetString("test.k1")
|
|
assert.Equal(t, v1, "v1")
|
|
}
|
|
|
|
func TestPrefixConfigGet(t *testing.T) {
|
|
t.Run("test GetString", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
v1, _ := conf.GetString("k1")
|
|
assert.Equal(t, "v1", v1)
|
|
})
|
|
|
|
t.Run("test GetString fails out of scope", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
_, err := conf.GetString("k3")
|
|
assert.Equal(t, err, ErrConfigParamNotFound)
|
|
})
|
|
|
|
t.Run("test GetStringofDefault", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
v1, _ := conf.GetString("k1")
|
|
assert.Equal(t, "v1", v1)
|
|
})
|
|
|
|
t.Run("test GetStringOrDefault fails out of scope", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
res := conf.GetStringOrDefault("k3", "default")
|
|
assert.Equal(t, "default", res)
|
|
})
|
|
}
|
|
|
|
func TestPrefixConfigUnset(t *testing.T) {
|
|
t.Run("test Unset", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
err := conf.Unset([]string{"k1"})
|
|
assert.NoError(t, err)
|
|
res := conf.GetStringOrDefault("k3", "default")
|
|
assert.Equal(t, "default", res)
|
|
})
|
|
|
|
t.Run("test Unset doesn't affect other scope", func(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
err := conf.Unset([]string{"k1"})
|
|
assert.NoError(t, err)
|
|
res := conf.c.GetStringOrDefault("k1", "")
|
|
assert.Equal(t, "v1", res)
|
|
})
|
|
}
|
|
|
|
func TestPrefixConfigSize(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
size := conf.Size()
|
|
assert.Equal(t, size, 2)
|
|
}
|
|
|
|
func TestPrefixConfigIter(t *testing.T) {
|
|
conf := newPrefixConfig("scopeA")
|
|
keys := make([]string, 0, 6)
|
|
conf.Iter(func(k, v string) bool {
|
|
keys = append(keys, k)
|
|
return false
|
|
})
|
|
sort.Strings(keys)
|
|
assert.Equal(t, []string{"k1", "k2"}, keys)
|
|
}
|