1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
/*
Copyright 2011 The go4 Authors
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 jsonconfig
import (
"os"
"reflect"
"strings"
"testing"
)
func testIncludes(configFile string, t *testing.T) {
var c ConfigParser
c.IncludeDirs = []string{"testdata"}
obj, err := c.ReadFile(configFile)
if err != nil {
t.Fatal(err)
}
two := obj.RequiredObject("two")
if err := obj.Validate(); err != nil {
t.Error(err)
}
if g, e := two.RequiredString("key"), "value"; g != e {
t.Errorf("sub object key = %q; want %q", g, e)
}
}
func TestIncludesCWD(t *testing.T) {
testIncludes("testdata/include1.json", t)
}
func TestIncludesIncludeDirs(t *testing.T) {
testIncludes("testdata/include1bis.json", t)
}
func TestIncludeLoop(t *testing.T) {
_, err := ReadFile("testdata/loop1.json")
if err == nil {
t.Fatal("expected an error about import cycles.")
}
if !strings.Contains(err.Error(), "include cycle detected") {
t.Fatalf("expected an error about import cycles; got: %v", err)
}
}
func TestBoolEnvs(t *testing.T) {
os.Setenv("TEST_EMPTY", "")
os.Setenv("TEST_TRUE", "true")
os.Setenv("TEST_ONE", "1")
os.Setenv("TEST_ZERO", "0")
os.Setenv("TEST_FALSE", "false")
obj, err := ReadFile("testdata/boolenv.json")
if err != nil {
t.Fatal(err)
}
if str := obj.RequiredString("emptystr"); str != "" {
t.Errorf("str = %q, want empty", str)
}
tests := []struct {
key string
want bool
}{
{"def_false", false},
{"def_true", true},
{"set_true_def_false", true},
{"set_false_def_true", false},
{"lit_true", true},
{"lit_false", false},
{"one", true},
{"zero", false},
}
for _, tt := range tests {
if v := obj.RequiredBool(tt.key); v != tt.want {
t.Errorf("key %q = %v; want %v", tt.key, v, tt.want)
}
}
if err := obj.Validate(); err != nil {
t.Error(err)
}
}
func TestListExpansion(t *testing.T) {
os.Setenv("TEST_BAR", "bar")
obj, err := ReadFile("testdata/listexpand.json")
if err != nil {
t.Fatal(err)
}
s := obj.RequiredString("str")
l := obj.RequiredList("list")
if err := obj.Validate(); err != nil {
t.Error(err)
}
want := []string{"foo", "bar"}
if !reflect.DeepEqual(l, want) {
t.Errorf("got = %#v\nwant = %#v", l, want)
}
if s != "bar" {
t.Errorf("str = %q, want %q", s, "bar")
}
}
|