vitess-gh/go/json2/unmarshal_test.go

90 строки
1.8 KiB
Go

/*
Copyright 2019 The Vitess 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 json2
import (
"testing"
vschemapb "vitess.io/vitess/go/vt/proto/vschema"
)
func TestUnmarshal(t *testing.T) {
tcases := []struct {
in, err string
}{{
in: `{
"l2": "val",
"l3": [
"l4",
"l5"asdas"
]
}`,
err: "line: 5, position 9: invalid character 'a' after array element",
}, {
in: "{}",
err: "",
}}
for _, tcase := range tcases {
out := make(map[string]interface{})
err := Unmarshal([]byte(tcase.in), &out)
got := ""
if err != nil {
got = err.Error()
}
if got != tcase.err {
t.Errorf("Unmarshal(%v) err: %v, want %v", tcase.in, got, tcase.err)
}
}
}
func TestUnmarshalPB(t *testing.T) {
tcases := []struct {
in, err string
}{{
in: `{
"name": "c1",
"type": "VARCHAR"
}`,
}, {
in: `{
"name": "c1",
"type": "badtype"
}`,
err: "unknown value \"badtype\" for enum query.Type",
}, {
in: `{
"l2": "val",
"l3": [
"l4",
"l5"asdas"
]
}`,
err: "line: 5, position 9: invalid character 'a' after array element",
}}
for _, tcase := range tcases {
var out vschemapb.Column
err := Unmarshal([]byte(tcase.in), &out)
got := ""
if err != nil {
got = err.Error()
}
if got != tcase.err {
t.Errorf("Unmarshal(%v) err: %v, want %v", tcase.in, got, tcase.err)
}
}
}