mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
62 lines
1.2 KiB
Go
62 lines
1.2 KiB
Go
package protocol
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"testing"
|
|
)
|
|
|
|
func TestFrame_Bytes(t *testing.T) {
|
|
f := Frame{
|
|
MsgID: 1,
|
|
Control: 1,
|
|
Type: TypeConnect,
|
|
Data: []byte{0x01},
|
|
}
|
|
hex := f.Bytes().HEX()
|
|
t.Log(hex)
|
|
if hex != "0c0100000001030003000d0001" {
|
|
t.Error("编码错误")
|
|
}
|
|
}
|
|
|
|
func TestBytes(t *testing.T) {
|
|
t.Log(hex.EncodeToString(Bytes(uint32(1))))
|
|
t.Log(hex.EncodeToString(Bytes(uint16(0x0d00))))
|
|
}
|
|
|
|
func TestDecode(t *testing.T) {
|
|
s := "b1cb74001c00000000000d005100bd00789c6378c1cecb252ace6066c5b4898987b9050ed1f90cc5b74c18a5bc18c1b43490fecff09c81819191f13fc3c9f3bb169f5e7dfefeb5ef57f7199a305009308208e5b32bb6bcbf70148712002d7f1e13"
|
|
bs, err := hex.DecodeString(s)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
resp, err := Decode(bs)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
|
|
t.Log(len(resp.Data))
|
|
|
|
t.Log(hex.EncodeToString(resp.Data))
|
|
|
|
t.Log(string(resp.Data))
|
|
|
|
t.Log(string(UTF8ToGBK(resp.Data)))
|
|
|
|
t.Log(string(UTF8ToGBK(resp.Data[68:])))
|
|
|
|
t.Log(MConnect.Decode(resp.Data))
|
|
|
|
//result, err := DecodeSecurityList(resp.Data)
|
|
//if err != nil {
|
|
// t.Error(err)
|
|
// return
|
|
//}
|
|
//
|
|
//t.Log(hex.EncodeToString(resp.Data))
|
|
//
|
|
//t.Log(result)
|
|
}
|