test string slice as string ; invalid json but valid when wrapped

This commit is contained in:
Adrien Marquès 2020-03-02 21:51:06 +01:00
parent 43fb3bb7c9
commit 4d663fc56c
Signed by: xdrm-brackets
GPG Key ID: D75243CA236D825E
1 changed files with 22 additions and 5 deletions

View File

@ -31,7 +31,7 @@ func TestSimpleString(t *testing.T) {
}
}
func TestStringSlice(t *testing.T) {
p := Parameter{Parsed: false, File: false, Value: "some-string"}
p := Parameter{Parsed: false, File: false, Value: `["str1", "str2"]`}
err := p.Parse()
@ -45,14 +45,31 @@ func TestStringSlice(t *testing.T) {
t.FailNow()
}
cast, canCast := p.Value.(string)
slice, canCast := p.Value.([]interface{})
if !canCast {
t.Errorf("expected parameter to be a string")
t.Errorf("expected parameter to be a []interface{}")
t.FailNow()
}
if cast != "some-string" {
t.Errorf("expected parameter to equal 'some-string', got '%s'", cast)
if len(slice) != 2 {
t.Errorf("expected 2 values, got %d", len(slice))
t.FailNow()
}
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
}
}
}