文件
java_exception
test_dubbo
test_hessian
.gitignore
.golangci.yml
.travis.yml
CHANGE.md
LICENSE
Makefile
NOTICE
README.md
binary.go
binary_test.go
boolean.go
boolean_test.go
codec.go
codec_test.go
const.go
contributing.md
date.go
date_test.go
decode.go
decode_test.go
doc.go
double.go
double_test.go
encode.go
encode_test.go
go.mod
go.sum
hessian.go
hessian_test.go
int.go
int_test.go
java_exception.go
java_exception_test.go
list.go
list_test.go
long.go
long_test.go
map.go
map_test.go
null.go
null_test.go
object.go
object_test.go
pojo.go
ref.go
ref_test.go
request.go
request_test.go
response.go
response_test.go
serialize.go
serialize_test.go
string.go
string_test.go
克隆/下载
map_test.go 2.92 KB
一键复制 编辑 原始数据 按行查看 历史
老马 提交于 5年前 . first
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 hessian
import (
"testing"
)
func TestEncUntypedMap(t *testing.T) {
var (
m map[interface{}]interface{}
err error
e *Encoder
d *Decoder
res interface{}
)
e = NewEncoder()
m = make(map[interface{}]interface{})
m["hello"] = "world"
m[100] = "100"
m[100.1010] = 101910
m[true] = true
m[false] = true
e.Encode(m)
if len(e.Buffer()) == 0 {
t.Fail()
}
d = NewDecoder(e.Buffer())
res, err = d.Decode()
if err != nil {
t.Errorf("Decode() = %+v", err)
}
t.Logf("decode(%v) = %v, %v\n", m, res, err)
}
func TestEncTypedMap(t *testing.T) {
var (
m map[int]string
err error
e *Encoder
d *Decoder
res interface{}
)
e = NewEncoder()
m = make(map[int]string)
m[0] = "hello"
m[1] = "golang"
m[2] = "world"
e.Encode(m)
if len(e.Buffer()) == 0 {
t.Fail()
}
d = NewDecoder(e.Buffer())
res, err = d.Decode()
if err != nil {
t.Errorf("Decode() = %+v", err)
}
t.Logf("decode(%v) = %v, %v\n", m, res, err)
}
func TestMap(t *testing.T) {
testDecodeFramework(t, "replyTypedMap_0", map[interface{}]interface{}{})
testDecodeFramework(t, "replyTypedMap_1", map[interface{}]interface{}{"a": int32(0)})
testDecodeFramework(t, "replyTypedMap_2", map[interface{}]interface{}{int32(0): "a", int32(1): "b"})
//testDecodeFramework(t, "replyTypedMap_3", []interface{}{})
testDecodeFramework(t, "replyUntypedMap_0", map[interface{}]interface{}{})
testDecodeFramework(t, "replyUntypedMap_1", map[interface{}]interface{}{"a": int32(0)})
testDecodeFramework(t, "replyUntypedMap_2", map[interface{}]interface{}{int32(0): "a", int32(1): "b"})
//testDecodeFramework(t, "replyTypedMap_3", []interface{}{})
}
func TestMapEncode(t *testing.T) {
testJavaDecode(t, "argTypedMap_0", map[interface{}]interface{}{})
testJavaDecode(t, "argTypedMap_1", map[interface{}]interface{}{"a": int32(0)})
testJavaDecode(t, "argTypedMap_2", map[interface{}]interface{}{int32(0): "a", int32(1): "b"})
testJavaDecode(t, "argUntypedMap_0", map[interface{}]interface{}{})
testJavaDecode(t, "argUntypedMap_1", map[interface{}]interface{}{"a": int32(0)})
testJavaDecode(t, "argUntypedMap_2", map[interface{}]interface{}{int32(0): "a", int32(1): "b"})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化