-
Notifications
You must be signed in to change notification settings - Fork 210
/
fulfillment.go
75 lines (64 loc) · 2.13 KB
/
fulfillment.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
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 CreateFulfillment(t *testing.T, st state.State, app apptypes.Application, provider base.Bytes, key crypto.PrivKey, deployment base.Bytes, group, order, price uint64) *types.Fulfillment {
fulfillment := Fulfillment(provider, deployment, group, order, price)
fulfillmenttx := &types.TxPayload_TxCreateFulfillment{
TxCreateFulfillment: &types.TxCreateFulfillment{
FulfillmentID: fulfillment.FulfillmentID,
Price: fulfillment.Price,
},
}
ctx := apptypes.NewContext(&types.Tx{
Key: key.PubKey().Bytes(),
Payload: types.TxPayload{
Payload: fulfillmenttx,
},
})
assert.True(t, app.AcceptTx(ctx, fulfillmenttx))
cresp := app.CheckTx(st, ctx, fulfillmenttx)
assert.True(t, cresp.IsOK())
dresp := app.DeliverTx(st, ctx, fulfillmenttx)
assert.Len(t, dresp.Log, 0, fmt.Sprint("Log should be empty but is: ", dresp.Log))
assert.True(t, dresp.IsOK())
return fulfillment
}
func CloseFulfillment(t *testing.T, st state.State, app apptypes.Application, key crypto.PrivKey, fulfillment *types.Fulfillment) {
tx := &types.TxPayload_TxCloseFulfillment{
TxCloseFulfillment: &types.TxCloseFulfillment{
FulfillmentID: fulfillment.FulfillmentID,
},
}
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())
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())
}
func Fulfillment(provider base.Bytes, deplyment base.Bytes, group, order uint64, price uint64) *types.Fulfillment {
fulfillment := &types.Fulfillment{
FulfillmentID: types.FulfillmentID{
Deployment: deplyment,
Group: group,
Order: order,
Provider: provider,
},
Price: price,
}
return fulfillment
}