forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions_data_test.go
113 lines (94 loc) · 3.36 KB
/
actions_data_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
package horizon
import (
"encoding/base64"
"encoding/json"
"testing"
"github.com/guregu/null"
"github.com/stretchr/testify/assert"
"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"
"github.com/stellar/go/xdr"
)
var (
data1 = history.Data{
LastModifiedLedger: 100,
AccountID: "GAOQJGUAB7NI7K7I62ORBXMN3J4SSWQUQ7FOEPSDJ322W2HMCNWPHXFB",
Name: "name1",
// This also tests if base64 encoding is working as 0 is invalid UTF-8 byte
Value: []byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
Sponsor: null.StringFrom("GC3C4AKRBQLHOJ45U4XG35ESVWRDECWO5XLDGYADO6DPR3L7KIDVUMML"),
}
data2 = history.Data{
LastModifiedLedger: 100,
AccountID: "GAOQJGUAB7NI7K7I62ORBXMN3J4SSWQUQ7FOEPSDJ322W2HMCNWPHXFB",
Name: "name ",
Value: []byte("it got spaces!"),
}
)
func TestDataActions_Show(t *testing.T) {
ht := StartHTTPTestWithoutScenario(t)
defer ht.Finish()
test.ResetHorizonDB(t, ht.HorizonDB)
q := &history.Q{ht.HorizonSession()}
// Makes StateMiddleware happy
err := q.UpdateLastLedgerIngest(ht.Ctx, 100)
ht.Assert.NoError(err)
err = q.UpdateIngestVersion(ht.Ctx, ingest.CurrentVersion)
ht.Assert.NoError(err)
ht.Assert.NoError(q.Begin(ht.Ctx))
ledgerBatch := q.NewLedgerBatchInsertBuilder()
err = ledgerBatch.Add(xdr.LedgerHeaderHistoryEntry{
Header: xdr.LedgerHeader{
LedgerSeq: 100,
},
}, 0, 0, 0, 0, 0)
ht.Assert.NoError(err)
ht.Assert.NoError(ledgerBatch.Exec(ht.Ctx, q))
ht.Assert.NoError(q.Commit())
err = q.UpsertAccountData(ht.Ctx, []history.Data{data1, data2})
assert.NoError(t, err)
prefix := "/accounts/GAOQJGUAB7NI7K7I62ORBXMN3J4SSWQUQ7FOEPSDJ322W2HMCNWPHXFB"
result := map[string]string{}
// json
w := ht.Get(prefix + "/data/name1")
if ht.Assert.Equal(200, w.Code) {
err := json.Unmarshal(w.Body.Bytes(), &result)
ht.Assert.NoError(err)
decoded, err := base64.StdEncoding.DecodeString(result["value"])
ht.Assert.NoError(err)
ht.Assert.Equal([]byte(data1.Value), decoded)
ht.Assert.Equal("GC3C4AKRBQLHOJ45U4XG35ESVWRDECWO5XLDGYADO6DPR3L7KIDVUMML", result["sponsor"])
}
// raw
w = ht.Get(prefix+"/data/name1", test.RequestHelperRaw)
if ht.Assert.Equal(200, w.Code) {
ht.Assert.Equal([]byte(data1.Value), w.Body.Bytes())
}
result = map[string]string{}
// regression: https://github.com/stellar/horizon/issues/325
// names with special characters do not work
w = ht.Get(prefix + "/data/name%20")
if ht.Assert.Equal(200, w.Code) {
err := json.Unmarshal(w.Body.Bytes(), &result)
ht.Assert.NoError(err)
decoded, err := base64.StdEncoding.DecodeString(result["value"])
ht.Assert.NoError(err)
ht.Assert.Equal([]byte(data2.Value), decoded)
ht.Assert.Equal("", result["sponsor"])
}
w = ht.Get(prefix+"/data/name%20", test.RequestHelperRaw)
if ht.Assert.Equal(200, w.Code) {
ht.Assert.Equal("it got spaces!", w.Body.String())
}
// missing
w = ht.Get(prefix + "/data/missing")
ht.Assert.Equal(404, w.Code)
w = ht.Get(prefix+"/data/missing", test.RequestHelperRaw)
ht.Assert.Equal(404, w.Code)
// Too long
w = ht.Get(prefix+"/data/01234567890123456789012345678901234567890123456789012345678901234567890123456789", test.RequestHelperRaw)
if ht.Assert.Equal(400, w.Code) {
ht.Assert.Contains(w.Body.String(), "does not validate as length(1|64)")
}
}