forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction_offers_test.go
90 lines (76 loc) · 2.27 KB
/
action_offers_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
package horizon
import (
"context"
"encoding/json"
"testing"
"time"
"github.com/stellar/go/protocols/horizon"
"github.com/stellar/go/services/horizon/internal/db2/history"
"github.com/stellar/go/services/horizon/internal/ingest"
"github.com/stellar/go/xdr"
)
func TestOfferActions_Show(t *testing.T) {
ht := StartHTTPTestWithoutScenario(t)
defer ht.Finish()
q := &history.Q{ht.HorizonSession()}
ctx := context.Background()
err := q.UpdateLastLedgerIngest(ctx, 100)
ht.Assert.NoError(err)
err = q.UpdateIngestVersion(ctx, ingest.CurrentVersion)
ht.Assert.NoError(err)
ledgerCloseTime := time.Now().Unix()
ht.Assert.NoError(q.Begin(ctx))
ledgerBatch := q.NewLedgerBatchInsertBuilder()
err = ledgerBatch.Add(xdr.LedgerHeaderHistoryEntry{
Header: xdr.LedgerHeader{
LedgerSeq: 100,
ScpValue: xdr.StellarValue{
CloseTime: xdr.TimePoint(ledgerCloseTime),
},
},
}, 0, 0, 0, 0, 0)
ht.Assert.NoError(err)
ht.Assert.NoError(ledgerBatch.Exec(ht.Ctx, q))
ht.Assert.NoError(q.Commit())
issuer := xdr.MustAddress("GBRPYHIL2CI3FNQ4BXLFMNDLFJUNPU2HY3ZMFSHONUCEOASW7QC7OX2H")
nativeAsset := xdr.MustNewNativeAsset()
usdAsset := xdr.MustNewCreditAsset("USD", issuer.Address())
eurAsset := xdr.MustNewCreditAsset("EUR", issuer.Address())
eurOffer := history.Offer{
SellerID: issuer.Address(),
OfferID: int64(4),
BuyingAsset: eurAsset,
SellingAsset: nativeAsset,
Amount: int64(500),
Pricen: int32(1),
Priced: int32(1),
Price: float64(1),
Flags: 1,
LastModifiedLedger: uint32(3),
}
usdOffer := history.Offer{
SellerID: issuer.Address(),
OfferID: int64(6),
BuyingAsset: usdAsset,
SellingAsset: eurAsset,
Amount: int64(500),
Pricen: int32(1),
Priced: int32(1),
Price: float64(1),
Flags: 1,
LastModifiedLedger: uint32(4),
}
err = q.UpsertOffers(ctx, []history.Offer{eurOffer, usdOffer})
ht.Assert.NoError(err)
w := ht.Get("/offers")
if ht.Assert.Equal(200, w.Code) {
ht.Assert.PageOf(2, w.Body)
}
w = ht.Get("/offers/4")
if ht.Assert.Equal(200, w.Code) {
var response horizon.Offer
err = json.Unmarshal(w.Body.Bytes(), &response)
ht.Assert.NoError(err)
ht.Assert.Equal(int64(4), response.ID)
}
}