forked from cerc-io/plugeth
whisper: fix empty topic (#15811)
* whisper: fix empty topic * whisper: add check to matchSingleTopic * whisper: add tests * whisper: fix gosimple * whisper: added lastTopicByte const
This commit is contained in:
parent
4dd0727c39
commit
2ef3815af4
@ -562,7 +562,7 @@ func (api *PublicWhisperAPI) NewMessageFilter(req Criteria) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(req.Topics) > 0 {
|
if len(req.Topics) > 0 {
|
||||||
topics = make([][]byte, 1)
|
topics = make([][]byte, 0, len(req.Topics))
|
||||||
for _, topic := range req.Topics {
|
for _, topic := range req.Topics {
|
||||||
topics = append(topics, topic[:])
|
topics = append(topics, topic[:])
|
||||||
}
|
}
|
||||||
|
@ -216,8 +216,12 @@ func (f *Filter) MatchTopic(topic TopicType) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func matchSingleTopic(topic TopicType, bt []byte) bool {
|
func matchSingleTopic(topic TopicType, bt []byte) bool {
|
||||||
if len(bt) > 4 {
|
if len(bt) > TopicLength {
|
||||||
bt = bt[:4]
|
bt = bt[:TopicLength]
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(bt) < TopicLength {
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
for j, b := range bt {
|
for j, b := range bt {
|
||||||
|
@ -776,6 +776,7 @@ func TestWatchers(t *testing.T) {
|
|||||||
func TestVariableTopics(t *testing.T) {
|
func TestVariableTopics(t *testing.T) {
|
||||||
InitSingleTest()
|
InitSingleTest()
|
||||||
|
|
||||||
|
const lastTopicByte = 3
|
||||||
var match bool
|
var match bool
|
||||||
params, err := generateMessageParams()
|
params, err := generateMessageParams()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -796,19 +797,52 @@ func TestVariableTopics(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < 4; i++ {
|
for i := 0; i < 4; i++ {
|
||||||
arr := make([]byte, i+1, 4)
|
env.Topic = BytesToTopic(f.Topics[i])
|
||||||
copy(arr, env.Topic[:i+1])
|
|
||||||
|
|
||||||
f.Topics[4] = arr
|
|
||||||
match = f.MatchEnvelope(env)
|
match = f.MatchEnvelope(env)
|
||||||
if !match {
|
if !match {
|
||||||
t.Fatalf("failed MatchEnvelope symmetric with seed %d, step %d.", seed, i)
|
t.Fatalf("failed MatchEnvelope symmetric with seed %d, step %d.", seed, i)
|
||||||
}
|
}
|
||||||
|
|
||||||
f.Topics[4][i]++
|
f.Topics[i][lastTopicByte]++
|
||||||
match = f.MatchEnvelope(env)
|
match = f.MatchEnvelope(env)
|
||||||
if match {
|
if match {
|
||||||
t.Fatalf("MatchEnvelope symmetric with seed %d, step %d: false positive.", seed, i)
|
t.Fatalf("MatchEnvelope symmetric with seed %d, step %d: false positive.", seed, i)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_ReturnTrue(t *testing.T) {
|
||||||
|
bt := []byte("test")
|
||||||
|
topic := BytesToTopic(bt)
|
||||||
|
|
||||||
|
if !matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_WithTail_ReturnTrue(t *testing.T) {
|
||||||
|
bt := []byte("test with tail")
|
||||||
|
topic := BytesToTopic([]byte("test"))
|
||||||
|
|
||||||
|
if !matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_NotEquals_ReturnFalse(t *testing.T) {
|
||||||
|
bt := []byte("tes")
|
||||||
|
topic := BytesToTopic(bt)
|
||||||
|
|
||||||
|
if matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_InsufficientLength_ReturnFalse(t *testing.T) {
|
||||||
|
bt := []byte("test")
|
||||||
|
topic := BytesToTopic([]byte("not_equal"))
|
||||||
|
|
||||||
|
if matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -567,7 +567,7 @@ func (api *PublicWhisperAPI) NewMessageFilter(req Criteria) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(req.Topics) > 0 {
|
if len(req.Topics) > 0 {
|
||||||
topics = make([][]byte, 1)
|
topics = make([][]byte, 0, len(req.Topics))
|
||||||
for _, topic := range req.Topics {
|
for _, topic := range req.Topics {
|
||||||
topics = append(topics, topic[:])
|
topics = append(topics, topic[:])
|
||||||
}
|
}
|
||||||
|
@ -221,8 +221,12 @@ func (f *Filter) MatchTopic(topic TopicType) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func matchSingleTopic(topic TopicType, bt []byte) bool {
|
func matchSingleTopic(topic TopicType, bt []byte) bool {
|
||||||
if len(bt) > 4 {
|
if len(bt) > TopicLength {
|
||||||
bt = bt[:4]
|
bt = bt[:TopicLength]
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(bt) < TopicLength {
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
for j, b := range bt {
|
for j, b := range bt {
|
||||||
|
@ -800,6 +800,7 @@ func TestWatchers(t *testing.T) {
|
|||||||
func TestVariableTopics(t *testing.T) {
|
func TestVariableTopics(t *testing.T) {
|
||||||
InitSingleTest()
|
InitSingleTest()
|
||||||
|
|
||||||
|
const lastTopicByte = 3
|
||||||
var match bool
|
var match bool
|
||||||
params, err := generateMessageParams()
|
params, err := generateMessageParams()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -820,19 +821,52 @@ func TestVariableTopics(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < 4; i++ {
|
for i := 0; i < 4; i++ {
|
||||||
arr := make([]byte, i+1, 4)
|
env.Topic = BytesToTopic(f.Topics[i])
|
||||||
copy(arr, env.Topic[:i+1])
|
|
||||||
|
|
||||||
f.Topics[4] = arr
|
|
||||||
match = f.MatchEnvelope(env)
|
match = f.MatchEnvelope(env)
|
||||||
if !match {
|
if !match {
|
||||||
t.Fatalf("failed MatchEnvelope symmetric with seed %d, step %d.", seed, i)
|
t.Fatalf("failed MatchEnvelope symmetric with seed %d, step %d.", seed, i)
|
||||||
}
|
}
|
||||||
|
|
||||||
f.Topics[4][i]++
|
f.Topics[i][lastTopicByte]++
|
||||||
match = f.MatchEnvelope(env)
|
match = f.MatchEnvelope(env)
|
||||||
if match {
|
if match {
|
||||||
t.Fatalf("MatchEnvelope symmetric with seed %d, step %d: false positive.", seed, i)
|
t.Fatalf("MatchEnvelope symmetric with seed %d, step %d: false positive.", seed, i)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_ReturnTrue(t *testing.T) {
|
||||||
|
bt := []byte("test")
|
||||||
|
topic := BytesToTopic(bt)
|
||||||
|
|
||||||
|
if !matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_WithTail_ReturnTrue(t *testing.T) {
|
||||||
|
bt := []byte("test with tail")
|
||||||
|
topic := BytesToTopic([]byte("test"))
|
||||||
|
|
||||||
|
if !matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_NotEquals_ReturnFalse(t *testing.T) {
|
||||||
|
bt := []byte("tes")
|
||||||
|
topic := BytesToTopic(bt)
|
||||||
|
|
||||||
|
if matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMatchSingleTopic_InsufficientLength_ReturnFalse(t *testing.T) {
|
||||||
|
bt := []byte("test")
|
||||||
|
topic := BytesToTopic([]byte("not_equal"))
|
||||||
|
|
||||||
|
if matchSingleTopic(topic, bt) {
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user