2020-03-01 20:34:14 +00:00
|
|
|
package reqdata
|
|
|
|
|
|
|
|
import (
|
2020-03-02 21:01:16 +00:00
|
|
|
"math"
|
2020-03-01 20:34:14 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSimpleString(t *testing.T) {
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: "some-string"}
|
|
|
|
|
|
|
|
err := p.Parse()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(string)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a string")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if cast != "some-string" {
|
|
|
|
t.Errorf("expected parameter to equal 'some-string', got '%s'", cast)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}
|
2020-03-02 20:56:05 +00:00
|
|
|
|
2020-03-01 20:34:14 +00:00
|
|
|
func TestStringSlice(t *testing.T) {
|
2020-03-02 20:51:06 +00:00
|
|
|
p := Parameter{Parsed: false, File: false, Value: `["str1", "str2"]`}
|
2020-03-01 20:34:14 +00:00
|
|
|
|
|
|
|
err := p.Parse()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:51:06 +00:00
|
|
|
slice, canCast := p.Value.([]interface{})
|
2020-03-01 20:34:14 +00:00
|
|
|
if !canCast {
|
2020-03-02 20:51:06 +00:00
|
|
|
t.Errorf("expected parameter to be a []interface{}")
|
2020-03-01 20:34:14 +00:00
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:51:06 +00:00
|
|
|
if len(slice) != 2 {
|
|
|
|
t.Errorf("expected 2 values, got %d", len(slice))
|
2020-03-01 20:34:14 +00:00
|
|
|
t.FailNow()
|
|
|
|
}
|
2020-03-02 20:51:06 +00:00
|
|
|
|
|
|
|
results := []string{"str1", "str2"}
|
|
|
|
|
|
|
|
for i, res := range results {
|
|
|
|
|
|
|
|
cast, canCast := slice[i].(string)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter %d to be a []string", i)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if cast != res {
|
|
|
|
t.Errorf("expected first value to be '%s', got '%s'", res, cast)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-01 20:34:14 +00:00
|
|
|
}
|
2020-03-02 20:56:05 +00:00
|
|
|
|
|
|
|
func TestJsonPrimitiveBool(t *testing.T) {
|
|
|
|
tcases := []struct {
|
|
|
|
Raw string
|
|
|
|
BoolValue bool
|
|
|
|
}{
|
|
|
|
{"true", true},
|
|
|
|
{"false", false},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tcase := range tcases {
|
|
|
|
t.Run("case "+string(i), func(t *testing.T) {
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: tcase.Raw}
|
|
|
|
|
|
|
|
err := p.Parse()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(bool)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a bool")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if cast != tcase.BoolValue {
|
2020-03-02 21:00:39 +00:00
|
|
|
t.Errorf("expected a value of %t, got %t", tcase.BoolValue, cast)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-03-02 21:01:16 +00:00
|
|
|
|
|
|
|
func TestJsonPrimitiveFloat(t *testing.T) {
|
|
|
|
tcases := []struct {
|
|
|
|
Raw string
|
|
|
|
FloatValue float64
|
|
|
|
}{
|
|
|
|
{"1", 1},
|
|
|
|
{"-1", -1},
|
|
|
|
|
|
|
|
{"0.001", 0.001},
|
|
|
|
{"-0.001", -0.001},
|
|
|
|
|
|
|
|
{"1.9992", 1.9992},
|
|
|
|
{"-1.9992", -1.9992},
|
|
|
|
|
|
|
|
{"19992", 19992},
|
|
|
|
{"-19992", -19992},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tcase := range tcases {
|
|
|
|
t.Run("case "+string(i), func(t *testing.T) {
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: tcase.Raw}
|
|
|
|
|
|
|
|
err := p.Parse()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(float64)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a float64")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if math.Abs(cast-tcase.FloatValue) > 0.00001 {
|
|
|
|
t.Errorf("expected a value of %f, got %f", tcase.FloatValue, cast)
|
2020-03-02 20:56:05 +00:00
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-03-02 21:19:28 +00:00
|
|
|
|
|
|
|
func TestOneSliceStringToString(t *testing.T) {
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: []string{"lonely-string"}}
|
|
|
|
|
|
|
|
if err := p.Parse(); err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(string)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a string")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if cast != "lonely-string" {
|
|
|
|
t.Errorf("expected a value of '%s', got '%s'", "lonely-string", cast)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOneSliceBoolToBool(t *testing.T) {
|
|
|
|
tcases := []struct {
|
|
|
|
Raw bool
|
|
|
|
}{
|
|
|
|
{true},
|
|
|
|
{false},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tcase := range tcases {
|
|
|
|
|
|
|
|
t.Run("case "+string(i), func(t *testing.T) {
|
|
|
|
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: []bool{tcase.Raw}}
|
|
|
|
|
|
|
|
if err := p.Parse(); err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(bool)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a bool")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if cast != tcase.Raw {
|
|
|
|
t.Errorf("expected a value of '%t', got '%t'", tcase.Raw, cast)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOneSliceJsonBoolToBool(t *testing.T) {
|
|
|
|
tcases := []struct {
|
|
|
|
Raw string
|
|
|
|
BoolValue bool
|
|
|
|
}{
|
|
|
|
{"true", true},
|
|
|
|
{"false", false},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, tcase := range tcases {
|
|
|
|
|
|
|
|
t.Run("case "+string(i), func(t *testing.T) {
|
|
|
|
|
|
|
|
p := Parameter{Parsed: false, File: false, Value: []string{tcase.Raw}}
|
|
|
|
|
|
|
|
if err := p.Parse(); err != nil {
|
|
|
|
t.Errorf("unexpected error: <%s>", err)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if !p.Parsed {
|
|
|
|
t.Errorf("expected parameter to be parsed")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
cast, canCast := p.Value.(bool)
|
|
|
|
if !canCast {
|
|
|
|
t.Errorf("expected parameter to be a bool")
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
if cast != tcase.BoolValue {
|
|
|
|
t.Errorf("expected a value of '%t', got '%t'", tcase.BoolValue, cast)
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|