|
4 | 4 | "context"
|
5 | 5 | "encoding/json"
|
6 | 6 | "fmt"
|
7 |
| - "math" |
8 | 7 | "path"
|
9 | 8 | "strconv"
|
10 | 9 | "strings"
|
@@ -656,8 +655,10 @@ func TestGetEvents(t *testing.T) {
|
656 | 655 | TransactionHash: ledgerCloseMeta.TransactionHash(i).HexString(),
|
657 | 656 | })
|
658 | 657 | }
|
659 |
| - cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String() |
660 |
| - assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results) |
| 658 | + cursor := db.MaxCursor |
| 659 | + cursor.Ledger = 1 |
| 660 | + cursorStr := cursor.String() |
| 661 | + assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results) |
661 | 662 | })
|
662 | 663 |
|
663 | 664 | t.Run("filtering by contract id", func(t *testing.T) {
|
@@ -803,9 +804,11 @@ func TestGetEvents(t *testing.T) {
|
803 | 804 | TransactionHash: ledgerCloseMeta.TransactionHash(4).HexString(),
|
804 | 805 | },
|
805 | 806 | }
|
806 |
| - cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String() |
807 | 807 |
|
808 |
| - assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results) |
| 808 | + cursor := db.MaxCursor |
| 809 | + cursor.Ledger = 1 |
| 810 | + cursorStr := cursor.String() |
| 811 | + assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results) |
809 | 812 |
|
810 | 813 | results, err = handler.getEvents(ctx, GetEventsRequest{
|
811 | 814 | StartLedger: 1,
|
@@ -839,7 +842,7 @@ func TestGetEvents(t *testing.T) {
|
839 | 842 |
|
840 | 843 | expected[0].ValueJSON = valueJs
|
841 | 844 | expected[0].TopicJSON = topicsJs
|
842 |
| - require.Equal(t, GetEventsResponse{expected, 1, cursor}, results) |
| 845 | + require.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results) |
843 | 846 | })
|
844 | 847 |
|
845 | 848 | t.Run("filtering by both contract id and topic", func(t *testing.T) {
|
@@ -950,9 +953,10 @@ func TestGetEvents(t *testing.T) {
|
950 | 953 | TransactionHash: ledgerCloseMeta.TransactionHash(3).HexString(),
|
951 | 954 | },
|
952 | 955 | }
|
953 |
| - cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String() |
954 |
| - |
955 |
| - assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results) |
| 956 | + cursor := db.MaxCursor |
| 957 | + cursor.Ledger = 1 |
| 958 | + cursorStr := cursor.String() |
| 959 | + assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results) |
956 | 960 | })
|
957 | 961 |
|
958 | 962 | t.Run("filtering by event type", func(t *testing.T) {
|
@@ -1027,9 +1031,10 @@ func TestGetEvents(t *testing.T) {
|
1027 | 1031 | TransactionHash: ledgerCloseMeta.TransactionHash(0).HexString(),
|
1028 | 1032 | },
|
1029 | 1033 | }
|
1030 |
| - cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String() |
1031 |
| - |
1032 |
| - assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results) |
| 1034 | + cursor := db.MaxCursor |
| 1035 | + cursor.Ledger = 1 |
| 1036 | + cursorStr := cursor.String() |
| 1037 | + assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results) |
1033 | 1038 | })
|
1034 | 1039 |
|
1035 | 1040 | t.Run("with limit", func(t *testing.T) {
|
@@ -1218,7 +1223,9 @@ func TestGetEvents(t *testing.T) {
|
1218 | 1223 |
|
1219 | 1224 | // Note: endLedger is always exclusive when fetching events
|
1220 | 1225 | // so search window is always max Cursor value with endLedger - 1
|
1221 |
| - cursor = db.Cursor{Ledger: uint32(endLedger - 1), Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String() |
| 1226 | + rawCursor := db.MaxCursor |
| 1227 | + rawCursor.Ledger = uint32(endLedger - 1) |
| 1228 | + cursor = rawCursor.String() |
1222 | 1229 | assert.Equal(t, GetEventsResponse{[]EventInfo{}, 5, cursor}, results)
|
1223 | 1230 | })
|
1224 | 1231 | }
|
|
0 commit comments