forked from mirror/go-ethereum
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.
29 lines
715 B
29 lines
715 B
6 years ago
|
package feed
|
||
6 years ago
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
6 years ago
|
"github.com/ethereum/go-ethereum/swarm/storage/feed/lookup"
|
||
6 years ago
|
)
|
||
|
|
||
|
func getTestID() *ID {
|
||
|
return &ID{
|
||
6 years ago
|
Feed: *getTestFeed(),
|
||
6 years ago
|
Epoch: lookup.GetFirstEpoch(1000),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestIDAddr(t *testing.T) {
|
||
6 years ago
|
id := getTestID()
|
||
|
updateAddr := id.Addr()
|
||
6 years ago
|
compareByteSliceToExpectedHex(t, "updateAddr", updateAddr, "0x8b24583ec293e085f4c78aaee66d1bc5abfb8b4233304d14a349afa57af2a783")
|
||
|
}
|
||
|
|
||
|
func TestIDSerializer(t *testing.T) {
|
||
|
testBinarySerializerRecovery(t, getTestID(), "0x776f726c64206e657773207265706f72742c20657665727920686f7572000000876a8936a7cd0b79ef0735ad0896c1afe278781ce803000000000019")
|
||
|
}
|
||
|
|
||
|
func TestIDLengthCheck(t *testing.T) {
|
||
|
testBinarySerializerLengthCheck(t, getTestID())
|
||
|
}
|