开发中

This commit is contained in:
injoyai
2024-10-14 16:44:06 +08:00
parent fa680a1906
commit f26c8027d0
7 changed files with 187 additions and 28 deletions

View File

@@ -23,3 +23,39 @@ 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(DecodeConnect(resp.Data))
//result, err := DecodeSecurityList(resp.Data)
//if err != nil {
// t.Error(err)
// return
//}
//
//t.Log(hex.EncodeToString(resp.Data))
//
//t.Log(result)
}