forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions_effects_test.go
152 lines (123 loc) · 4.67 KB
/
actions_effects_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package horizon
import (
"testing"
"github.com/stellar/go/protocols/horizon/effects"
"github.com/stellar/go/services/horizon/internal/db2/history"
"github.com/stellar/go/services/horizon/internal/ingest"
"github.com/stellar/go/services/horizon/internal/test"
)
func TestEffectActions_Index(t *testing.T) {
t.Run("omnibus test", func(t *testing.T) {
ht := StartHTTPTest(t, "base")
defer ht.Finish()
w := ht.Get("/effects?limit=20")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(11, w.Body)
}
// test streaming, regression for https://github.com/stellar/go/services/horizon/internal/issues/147
w = ht.Get("/effects?limit=2", test.RequestHelperStreaming)
ht.Assert.Equal(200, w.Code)
// filtered by ledger
w = ht.Get("/ledgers/1/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(0, w.Body)
}
w = ht.Get("/ledgers/2/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(9, w.Body)
}
w = ht.Get("/ledgers/3/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(2, w.Body)
}
// Makes StateMiddleware happy
q := history.Q{ht.HorizonSession()}
err := q.UpdateLastLedgerIngest(ht.Ctx, 3)
ht.Assert.NoError(err)
err = q.UpdateIngestVersion(ht.Ctx, ingest.CurrentVersion)
ht.Assert.NoError(err)
// checks if empty param returns 404 instead of all payments
w = ht.Get("/accounts//effects")
ht.Assert.NotEqual(404, w.Code)
// filtered by account
w = ht.Get("/accounts/GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(3, w.Body)
}
w = ht.Get("/accounts/GA5WBPYA5Y4WAEHXWR2UKO2UO4BUGHUQ74EUPKON2QHV4WRHOIRNKKH2/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(2, w.Body)
}
w = ht.Get("/accounts/GCXKG6RN4ONIEPCMNFB732A436Z5PNDSRLGWK7GBLCMQLIFO4S7EYWVU/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(3, w.Body)
}
// filtered by transaction
w = ht.Get("/transactions/2374e99349b9ef7dba9a5db3339b78fda8f34777b1af33ba468ad5c0df946d4d/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(3, w.Body)
}
// missing tx
w = ht.Get("/transactions/ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff/effects")
ht.Assert.Equal(404, w.Code)
// uppercase tx hash not accepted
w = ht.Get("/transactions/2374E99349B9EF7DBA9A5DB3339B78FDA8F34777B1AF33BA468AD5C0DF946D4D/effects")
ht.Assert.Equal(400, w.Code)
// badly formated tx hash not accepted
w = ht.Get("/transactions/%00%1E4%5E%EF%BF%BD%EF%BF%BD%EF%BF%BDpVP%EF%BF%BDI&R%0BK%EF%BF%BD%1D%EF%BF%BD%EF%BF%BD=%EF%BF%BD%3F%23%EF%BF%BD%EF%BF%BDl%EF%BF%BD%1El%EF%BF%BD%EF%BF%BD/effects")
ht.Assert.Equal(400, w.Code)
w = ht.Get("/transactions/2374e99349b9ef7dba9a5db3339b78fda8f34777b1af33ba468ad5c0df946d4d/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(3, w.Body)
}
// filtered by operation
w = ht.Get("/operations/8589938689/effects")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(3, w.Body)
}
// Check extra params
w = ht.Get("/ledgers/100/effects?account_id=GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H")
ht.Assert.Equal(400, w.Code)
w = ht.Get("/accounts/GCXKG6RN4ONIEPCMNFB732A436Z5PNDSRLGWK7GBLCMQLIFO4S7EYWVU/effects?ledger_id=5")
ht.Assert.Equal(400, w.Code)
// before history
ht.ReapHistory(1)
w = ht.Get("/effects?order=desc&cursor=8589938689-1")
ht.Assert.Equal(410, w.Code)
ht.T.T.Log(w.Body.String())
})
t.Run("Effect resource props", func(t *testing.T) {
ht := StartHTTPTest(t, "base")
defer ht.Finish()
// created_at
w := ht.Get("/ledgers/2/effects")
if ht.Assert.Equal(200, w.Code) {
var result []effects.Base
_ = ht.UnmarshalPage(w.Body, &result)
ht.Require.NotEmpty(result, "unexpected empty response")
e1 := result[0]
var ledger2 history.Ledger
err := ht.HorizonDB.Get(&ledger2, "SELECT * FROM history_ledgers WHERE sequence = 2")
ht.Require.NoError(err, "failed to load ledger")
ht.Assert.Equal(ledger2.ClosedAt.UTC(), e1.LedgerCloseTime.UTC())
}
})
}
func TestEffectsForFeeBumpTransaction(t *testing.T) {
ht := StartHTTPTestWithoutScenario(t)
defer ht.Finish()
test.ResetHorizonDB(t, ht.HorizonDB)
q := &history.Q{ht.HorizonSession()}
fixture := history.FeeBumpScenario(ht.T, q, true)
w := ht.Get("/transactions/" + fixture.OuterHash + "/effects")
ht.Assert.Equal(200, w.Code)
var byOuterHash []effects.Base
ht.UnmarshalPage(w.Body, &byOuterHash)
ht.Assert.Len(byOuterHash, 1)
w = ht.Get("/transactions/" + fixture.InnerHash + "/effects")
ht.Assert.Equal(200, w.Code)
var byInnerHash []effects.Base
ht.UnmarshalPage(w.Body, &byInnerHash)
ht.Assert.Len(byInnerHash, 1)
ht.Assert.Equal(byOuterHash, byInnerHash)
}