From 002b5a2c3c3d03898185ef4fa860ebfc6f932d52 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Fri, 15 Oct 2021 08:00:16 +0300 Subject: [PATCH] core: add Trie.Find compatibility test --- pkg/core/mpt/compat_test.go | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pkg/core/mpt/compat_test.go b/pkg/core/mpt/compat_test.go index bcd9be184..742ad306e 100644 --- a/pkg/core/mpt/compat_test.go +++ b/pkg/core/mpt/compat_test.go @@ -406,4 +406,38 @@ func TestCompatibility_Find(t *testing.T) { t.Run("from matching start", func(t *testing.T) { check(t, []byte{}, 2) // without `from` key }) + t.Run("TestFindStatesIssue652", func(t *testing.T) { + tr := NewTrie(nil, false, newTestStore()) + // root is an extension node with key=abc; next=branch + require.NoError(t, tr.Put([]byte("abc1"), []byte("01"))) + require.NoError(t, tr.Put([]byte("abc3"), []byte("02"))) + tr.Flush() + // find items with extension's key prefix + t.Run("from > start", func(t *testing.T) { + res, err := tr.Find([]byte("ab"), []byte("d2"), 100) + require.NoError(t, err) + // nothing should be found, because from[0]=`d` > key[2]=`c` + require.Equal(t, 0, len(res)) + }) + + t.Run("from < start", func(t *testing.T) { + res, err := tr.Find([]byte("ab"), []byte("b2"), 100) + require.NoError(t, err) + // all items should be included into the result, because from[0]=`b` < key[2]=`c` + require.Equal(t, 2, len(res)) + }) + + t.Run("from and start have common prefix", func(t *testing.T) { + res, err := tr.Find([]byte("ab"), []byte("c"), 100) + require.NoError(t, err) + // all items should be included into the result, because from[0] == key[2] + require.Equal(t, 2, len(res)) + }) + + t.Run("from equals to item key", func(t *testing.T) { + res, err := tr.Find([]byte("ab"), []byte("c1"), 100) + require.NoError(t, err) + require.Equal(t, 1, len(res)) + }) + }) }