-
Notifications
You must be signed in to change notification settings - Fork 210
/
order.go
52 lines (45 loc) · 1.32 KB
/
order.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
package testutil
import (
"fmt"
"testing"
apptypes "github.com/ovrclk/akash/app/types"
"github.com/ovrclk/akash/state"
"github.com/ovrclk/akash/types"
"github.com/ovrclk/akash/types/base"
"github.com/stretchr/testify/assert"
crypto "github.com/tendermint/tendermint/crypto"
)
func CreateOrder(t *testing.T, st state.State, app apptypes.Application, account *types.Account, key crypto.PrivKey, deploymentAddress base.Bytes, groupSeq, orderSeq uint64) *types.Order {
order := Order(deploymentAddress, groupSeq, orderSeq)
tx := &types.TxPayload_TxCreateOrder{
TxCreateOrder: &types.TxCreateOrder{
OrderID: order.OrderID,
EndAt: order.EndAt,
},
}
ctx := apptypes.NewContext(&types.Tx{
Key: key.PubKey().Bytes(),
Payload: types.TxPayload{
Payload: tx,
},
})
assert.True(t, app.AcceptTx(ctx, tx))
cresp := app.CheckTx(st, ctx, tx)
assert.True(t, cresp.IsOK())
assert.Empty(t, cresp.Log)
dresp := app.DeliverTx(st, ctx, tx)
assert.Len(t, dresp.Log, 0, fmt.Sprint("Log should be empty but is: ", dresp.Log))
assert.True(t, dresp.IsOK())
return order
}
func Order(deploymentAddress base.Bytes, groupSeq, orderSeq uint64) *types.Order {
order := &types.Order{
OrderID: types.OrderID{
Deployment: deploymentAddress,
Group: groupSeq,
Seq: orderSeq,
},
EndAt: int64(0),
}
return order
}