diff options
author | Viktor Trón <viktor.tron@gmail.com> | 2014-10-24 19:20:50 +0800 |
---|---|---|
committer | Viktor Trón <viktor.tron@gmail.com> | 2014-10-24 19:20:50 +0800 |
commit | f62b6742f2189f45463c362897e9f49a11d811a2 (patch) | |
tree | b53312b931b92d672cf8ec3a0db444727d2a8a8b /p2p/message_test.go | |
parent | e73aad959e530ecfbaff0c041ea881d4c9c95867 (diff) | |
parent | 771fbcc02e6d10cdf4cda2e8ec8ea23f11066feb (diff) | |
download | go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar.gz go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar.bz2 go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar.lz go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar.xz go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.tar.zst go-tangerine-f62b6742f2189f45463c362897e9f49a11d811a2.zip |
Merge pull request #152 from ethersphere/p2p
initial commit of p2p package
Diffstat (limited to 'p2p/message_test.go')
-rw-r--r-- | p2p/message_test.go | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/p2p/message_test.go b/p2p/message_test.go new file mode 100644 index 000000000..e9d46f2c3 --- /dev/null +++ b/p2p/message_test.go @@ -0,0 +1,38 @@ +package p2p + +import ( + "testing" +) + +func TestNewMsg(t *testing.T) { + msg, _ := NewMsg(3, 1, "000") + if msg.Code() != 3 { + t.Errorf("incorrect code %v", msg.Code()) + } + data0 := msg.Data().Get(0).Uint() + data1 := string(msg.Data().Get(1).Bytes()) + if data0 != 1 { + t.Errorf("incorrect data %v", data0) + } + if data1 != "000" { + t.Errorf("incorrect data %v", data1) + } +} + +func TestEncodeDecodeMsg(t *testing.T) { + msg, _ := NewMsg(3, 1, "000") + encoded := msg.Encode(3) + msg, _ = NewMsgFromBytes(encoded) + msg.Decode(3) + if msg.Code() != 3 { + t.Errorf("incorrect code %v", msg.Code()) + } + data0 := msg.Data().Get(0).Uint() + data1 := msg.Data().Get(1).Str() + if data0 != 1 { + t.Errorf("incorrect data %v", data0) + } + if data1 != "000" { + t.Errorf("incorrect data %v", data1) + } +} |