You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/contrib/encoding/msgpack/msgpack_test.go

46 lines
844 B

package msgpack
import (
"testing"
"github.com/stretchr/testify/assert"
)
type loginRequest struct {
UserName string
Password string
}
type testModel struct {
ID int32
Name string
}
func TestName(t *testing.T) {
c := new(codec)
assert.Equal(t, c.Name(), "msgpack")
}
func TestCodec(t *testing.T) {
c := new(codec)
t2 := testModel{ID: 1, Name: "name"}
m, err := c.Marshal(&t2)
assert.Nil(t, err)
var t3 testModel
err = c.Unmarshal(m, &t3)
assert.Nil(t, err)
assert.Equal(t, t3.ID, t2.ID)
assert.Equal(t, t3.Name, t2.Name)
request := loginRequest{
UserName: "username",
Password: "password",
}
m, err = c.Marshal(&request)
assert.Nil(t, err)
var req loginRequest
err = c.Unmarshal(m, &req)
assert.Nil(t, err)
assert.Equal(t, req.Password, request.Password)
assert.Equal(t, req.UserName, request.UserName)
}