mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-28 16:22:15 +00:00
This fixes the problem with base-16 encoded values which may start with digits: 015AB.... In such cases, the parser recognizes them as numbers but fails to parse because of the follow-up characters (AB). ``` failed to parse tm.events.type=Tx AND hash=136E18F7E4C348B780CF873A0BF43922E5BAFA63: parse error near digit (line 1 symbol 31 - line 1 symbol 32): "6" ``` So, from now on we should quote any values. This seems to be the way Postgresql has chosen.
28 lines
673 B
Go
28 lines
673 B
Go
package pubsub_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/tendermint/tmlibs/log"
|
|
"github.com/tendermint/tmlibs/pubsub"
|
|
"github.com/tendermint/tmlibs/pubsub/query"
|
|
)
|
|
|
|
func TestExample(t *testing.T) {
|
|
s := pubsub.NewServer()
|
|
s.SetLogger(log.TestingLogger())
|
|
s.Start()
|
|
defer s.Stop()
|
|
|
|
ctx := context.Background()
|
|
ch := make(chan interface{}, 1)
|
|
err := s.Subscribe(ctx, "example-client", query.MustParse("abci.account.name='John'"), ch)
|
|
require.NoError(t, err)
|
|
err = s.PublishWithTags(ctx, "Tombstone", map[string]interface{}{"abci.account.name": "John"})
|
|
require.NoError(t, err)
|
|
assertReceive(t, "Tombstone", ch)
|
|
}
|