mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 22:47:37 +03:00
The intention is to keep to repo root clean while the list of packages is slowly growing. Additionally, a bunch of small (~30 LoC) files in the repo root is merged into a single maddy.go file, for the same reason. Most of the internal code is moved into the internal/ directory. Go toolchain will make it impossible to import these packages from external applications. Some packages are renamed and moved into the pkg/ directory in the root. According to https://github.com/golang-standards/project-layout this is the de-facto standard to place "library code that's ok to use by external applications" in. To clearly define the purpose of top-level directories, README.md files are added to each.
413 lines
7.4 KiB
Go
413 lines
7.4 KiB
Go
package config
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMapProcess(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"bar"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "bar" {
|
|
t.Errorf("Incorrect value stored in variable, want 'bar', got '%s'", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_MissingRequired(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_InheritGlobal(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{},
|
|
}
|
|
|
|
m := NewMap(map[string]interface{}{"foo": "bar"}, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", true, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "bar" {
|
|
t.Errorf("Incorrect value stored in variable, want 'bar', got '%s'", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_InheritGlobal_MissingRequired(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{},
|
|
}
|
|
|
|
m := NewMap(map[string]interface{}{}, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_InheritGlobal_Override(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"bar"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(map[string]interface{}{}, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "bar" {
|
|
t.Errorf("Incorrect value stored in variable, want 'bar', got '%s'", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_DefaultValue(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, false, func() (interface{}, error) {
|
|
return "bar", nil
|
|
}, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "bar" {
|
|
t.Errorf("Incorrect value stored in variable, want 'bar', got '%s'", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_InheritGlobal_DefaultValue(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{},
|
|
}
|
|
|
|
m := NewMap(map[string]interface{}{"foo": "baz"}, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", true, false, func() (interface{}, error) {
|
|
return "bar", nil
|
|
}, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "baz" {
|
|
t.Errorf("Incorrect value stored in variable, want 'baz', got '%s'", foo)
|
|
}
|
|
|
|
t.Run("no global", func(t *testing.T) {
|
|
_, err := m.ProcessWith(map[string]interface{}{}, &cfg)
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != "bar" {
|
|
t.Errorf("Incorrect value stored in variable, want 'bar', got '%s'", foo)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestMapProcess_Duplicate(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"bar"},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"bar"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("foo", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
}
|
|
|
|
func TestMapProcess_Unexpected(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"baz"},
|
|
},
|
|
{
|
|
Name: "bar",
|
|
Args: []string{"baz"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := ""
|
|
m.Custom("bar", false, true, nil, func(_ *Map, n *Node) (interface{}, error) {
|
|
return n.Args[0], nil
|
|
}, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
|
|
m.AllowUnknown()
|
|
|
|
unknown, err := m.Process()
|
|
if err != nil {
|
|
t.Errorf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if len(unknown) != 1 {
|
|
t.Fatalf("Wrong amount of unknown nodes: %v", len(unknown))
|
|
}
|
|
|
|
if unknown[0].Name != "foo" {
|
|
t.Fatalf("Wrong node in unknown: %v", unknown[0].Name)
|
|
}
|
|
}
|
|
|
|
func TestMapInt(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"1"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := 0
|
|
m.Int("foo", false, true, 0, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != 1 {
|
|
t.Errorf("Incorrect value stored in variable, want 1, got %d", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapInt_Invalid(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"AAAA"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := 0
|
|
m.Int("foo", false, true, 0, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
}
|
|
|
|
func TestMapFloat(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"1"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := 0.0
|
|
m.Float("foo", false, true, 0, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if foo != 1.0 {
|
|
t.Errorf("Incorrect value stored in variable, want 1, got %v", foo)
|
|
}
|
|
}
|
|
|
|
func TestMapFloat_Invalid(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
Args: []string{"AAAA"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo := 0.0
|
|
m.Float("foo", false, true, 0, &foo)
|
|
|
|
_, err := m.Process()
|
|
if err == nil {
|
|
t.Errorf("Expected failure")
|
|
}
|
|
}
|
|
|
|
func TestMapBool(t *testing.T) {
|
|
cfg := Node{
|
|
Children: []Node{
|
|
{
|
|
Name: "foo",
|
|
},
|
|
{
|
|
Name: "bar",
|
|
Args: []string{"yes"},
|
|
},
|
|
{
|
|
Name: "baz",
|
|
Args: []string{"no"},
|
|
},
|
|
},
|
|
}
|
|
|
|
m := NewMap(nil, &cfg)
|
|
|
|
foo, bar, baz, boo := false, false, false, false
|
|
m.Bool("foo", false, false, &foo)
|
|
m.Bool("bar", false, false, &bar)
|
|
m.Bool("baz", false, false, &baz)
|
|
m.Bool("boo", false, false, &boo)
|
|
|
|
_, err := m.Process()
|
|
if err != nil {
|
|
t.Fatalf("Unexpected failure: %v", err)
|
|
}
|
|
|
|
if !foo {
|
|
t.Errorf("Incorrect value stored in variable foo, want true, got false")
|
|
}
|
|
if !bar {
|
|
t.Errorf("Incorrect value stored in variable bar, want true, got false")
|
|
}
|
|
if baz {
|
|
t.Errorf("Incorrect value stored in variable baz, want false, got true")
|
|
}
|
|
if boo {
|
|
t.Errorf("Incorrect value stored in variable boo, want false, got true")
|
|
}
|
|
}
|
|
|
|
func TestParseDataSize(t *testing.T) {
|
|
check := func(s string, ok bool, expected int) {
|
|
val, err := parseDataSize(s)
|
|
if err != nil && ok {
|
|
t.Errorf("unexpected parseDataSize('%s') fail: %v", s, err)
|
|
return
|
|
}
|
|
if err == nil && !ok {
|
|
t.Errorf("unexpected parseDataSize('%s') success, got %d", s, val)
|
|
return
|
|
}
|
|
if val != expected {
|
|
t.Errorf("parseDataSize('%s') != %d", s, expected)
|
|
return
|
|
}
|
|
}
|
|
|
|
check("1M", true, 1024*1024)
|
|
check("1K", true, 1024)
|
|
check("1b", true, 1)
|
|
check("1M 5b", true, 1024*1024+5)
|
|
check("1M 5K 5b", true, 1024*1024+5*1024+5)
|
|
check("0", true, 0)
|
|
check("1", false, 0)
|
|
check("1d", false, 0)
|
|
check("d", false, 0)
|
|
check("unrelated", false, 0)
|
|
check("1M5b", false, 0)
|
|
check("", false, 0)
|
|
check("-5M", false, 0)
|
|
}
|