-
Notifications
You must be signed in to change notification settings - Fork 1
/
SamplePublicSale_test.go
180 lines (148 loc) · 5.06 KB
/
SamplePublicSale_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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package main
import (
"fmt"
"teGVTing"
"github.com/GVTretchr/teGVTify/assert"
. "github.com/bjartek/overflow"
"github.com/fatih/color"
)
func TeGVTICO(t *teGVTing.T) {
o, err := OverflowTeGVTing()
assert.NoError(t, err)
color.Green("Bob will attempt to pause the sale")
o.Tx("/Sample/sales/public/admin/pause",
WithSigner("bob"),
).AssertFailure(t, "Could not borrow reference to the admin!")
fmt.Println("Bob failed to pause the sale")
color.Green("Admin account will attempt to pause the sale")
o.Tx("/Sample/sales/public/admin/pause",
WithSigner("account"),
).AssertSuccess(t).Print()
o.Tx("/Sample/token/setup_account_MetadataViews",
WithSigner("bob"),
).AssertSuccess(t)
color.Green("Bob's account has been setup for GVT")
GVTVault := o.Script("/Sample/sales/getGVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's GVT Vault balance is:")
fmt.Println(GVTVault)
o.Tx("/fusd/setup_account",
WithSigner("bob"),
).AssertSuccess(t)
color.Green("Bob's account has been setup for FUSD")
isBobSetup := o.Script("/fusd/check_setup",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Is Bob's account setup for FUSD?")
fmt.Println(isBobSetup)
o.Tx("/fusd/setup_minter",
WithSigner("account"),
).AssertSuccess(t)
o.Tx("/fusd/deposit_minter",
WithSigner("account"),
WithArg("minterAddress", "account"),
).AssertSuccess(t)
FUSDBalance := o.Script("/fusd/get_balance",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Bob's FUSD balance is")
fmt.Println(FUSDBalance)
o.Tx("/fusd/mint",
WithSigner("account"),
WithArg("amount", "1000.0"),
WithArg("to", "bob"),
).AssertSuccess(t)
color.Green("Emulator Account has minted 1000 FUSD into Bob's account")
o.Tx("/Sample/sales/public/admin/depositGVT",
WithSigner("account"),
WithArg("amount", "500.0"),
).AssertSuccess(t)
color.Green("Emulator Account has deposited 500 GVT into ICO's smart contract")
AccountGVTVault := o.Script("/Sample/sales/getGVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's GVT balance is: ")
fmt.Println(AccountGVTVault)
beforeFUSDBalance := o.Script("/fusd/get_balance",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Bob's FUSD balance before the purchase is")
fmt.Println(beforeFUSDBalance)
beforeAccountFUSDVault := o.Script("/Sample/sales/getFUSDVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's FUSD balance before purchase is: ")
fmt.Println(beforeAccountFUSDVault)
// Attempt to purchase before the sale is active
color.Green("Bob will attempt to buy when the sale is not active")
o.Tx("/Sample/sales/public/purchaseGVT",
WithSigner("bob"),
WithArg("amount", "1000.0"),
).AssertFailure(t, "Token sale is not active")
color.Cyan("Bob couldn't buy GVT because the sale is not active")
o.Tx("/Sample/sales/public/admin/unpause",
WithSigner("account"),
).AssertSuccess(t)
color.Red("The Sale has been activated(unpaused)")
// Attempt to purchase above personal cap
color.Green("Bob will attempt to buy $1000 worth of GVT!")
o.Tx("/Sample/sales/public/purchaseGVT",
WithSigner("bob"),
WithArg("amount", "1000.0"),
).AssertFailure(t, "Purchase amount exceeds personal cap")
color.Cyan("Bob couldn't buy pass his personal cap")
color.Green("Bob will attempt to buy $500 worth of GVT!")
o.Tx("/Sample/sales/public/purchaseGVT",
WithSigner("bob"),
WithArg("amount", "500.0"),
).AssertSuccess(t)
updatedFUSDBalance := o.Script("/fusd/get_balance",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Bob's FUSD balance after the purchase is")
fmt.Println(updatedFUSDBalance)
beforeResultBob := o.Script("/Sample/token/getBalance",
WithSigner("account"),
WithArg("account", "bob"),
).Result
color.Green("Bob's GVT balance before distribution is")
fmt.Println(beforeResultBob)
AccountFUSDVault := o.Script("/Sample/sales/getFUSDVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's FUSD balance after purchase is: ")
fmt.Println(AccountFUSDVault)
o.Tx("/Sample/sales/public/admin/diGVTribute",
WithSigner("account"),
WithArg("address", "bob"),
WithArg("allocationAmount", "100.0"),
)
color.Red("GVT Has been diGVTributed to Bob!")
resultBob := o.Script("/Sample/token/getBalance",
WithSigner("account"),
WithArg("account", "bob"),
).Result
color.Green("Bob's GVT balance after distribution is")
fmt.Println(resultBob)
refundFUSDBalance := o.Script("/fusd/get_balance",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Bob's FUSD balance after the distribution and refund is")
fmt.Println(refundFUSDBalance)
afterAccountFUSDVault := o.Script("/Sample/sales/getFUSDVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's FUSD balance after distribution and refund is: ")
fmt.Println(afterAccountFUSDVault)
afterAccountGVTVault := o.Script("/Sample/sales/getGVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's GVT balance after distribution is: ")
fmt.Println(afterAccountGVTVault)
}