forked from Blockversity-xyz/Sample-DAO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockVersityToken_test.go
260 lines (211 loc) · 6.97 KB
/
blockVersityToken_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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package main
import (
"fmt"
"testing"
. "github.com/bjartek/overflow"
"github.com/fatih/color"
"github.com/stretchr/testify/assert"
)
func TestSetupAccount(t *testing.T) {
o, err := OverflowTesting()
assert.NoError(t, err)
o.Tx("/BlockVersity/token/setup_account_MetadataViews",
WithSigner("bob"),
).AssertSuccess(t).Print()
resultBob := o.Script("/BlockVersity/token/getBalance",
WithSigner("account"),
WithArg("account", "bob"),
).Result
color.Green("Bob's balance is")
fmt.Println(resultBob)
o.Tx("/fusd/setup_account",
WithSigner("bob"),
).AssertSuccess(t).Print()
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)
o.Tx("/fusd/mint",
WithSigner("account"),
WithArg("amount", "100.0"),
WithArg("to", "bob"),
).AssertSuccess(t).Print()
FUSDBalance := o.Script("/fusd/get_balance",
WithSigner("account"),
WithArg("address", "bob"),
).Result
color.Green("Bob's FUSD balance is")
fmt.Println(FUSDBalance)
}
func TestAdmin(t *testing.T) {
o, err := OverflowTesting()
assert.NoError(t, err)
BVTBalance := o.Script("/BlockVersity/token/getBalance",
WithSigner("account"),
WithArg("account", "account"),
).Result
color.Green("Account's BVT balance is")
fmt.Println(BVTBalance)
o.Tx("/BlockVersity/sales/public/admin/depositBVT",
WithSigner("account"),
WithArg("amount", "1000.0"),
).AssertSuccess(t)
BVTVault := o.Script("/BlockVersity/sales/getBVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's Vault balance is: ")
fmt.Println(BVTVault)
}
// Bob buys BVT with FUSD
func TestPurchaseBVT(t *testing.T) {
o, err := OverflowTesting()
assert.NoError(t, err)
o.Tx("/BlockVersity/token/setup_account_MetadataViews",
WithSigner("bob"),
).AssertSuccess(t)
color.Green("Bob's account has been setup for BVT")
BVTVault := o.Script("/BlockVersity/sales/getBVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's BVT Vault balance is:")
fmt.Println(BVTVault)
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("/BlockVersity/sales/public/admin/depositBVT",
WithSigner("account"),
WithArg("amount", "500.0"),
).AssertSuccess(t)
color.Green("Emulator Account has deposited 500 BVT into ICO's smart contract")
AccountBVTVault := o.Script("/BlockVersity/sales/getBVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's BVT balance is: ")
fmt.Println(AccountBVTVault)
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("/BlockVersity/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("/BlockVersity/sales/public/purchaseBVT",
WithSigner("bob"),
WithArg("amount", "1000.0"),
).AssertFailure(t, "Token sale is not active")
color.Cyan("Bob couldn't buy BVT because the sale is not active")
o.Tx("/BlockVersity/sales/public/admin/unpause",
WithSigner("account"),
).AssertSuccess(t)
color.Red("The Sale has been activated(unpaused)")
// Attempt to purchase without being Whitelisted
color.Green("Bob will attempt to buy without being Whitelisted")
o.Tx("/BlockVersity/sales/public/purchaseBVT",
WithSigner("bob"),
WithArg("amount", "1000.0"),
).AssertFailure(t, "This Address is not in the Whitelist")
color.Cyan("Bob couldn't buy BVT because he's not Whitelisted")
// Bob signs the Whitelist
color.Green("Bob will sign the Whitelist")
o.Tx("/BlockVersity/Whitelist/sign_whitelist",
WithSigner("bob"),
).AssertSuccess(t)
// Attempt to purchase above personal cap
color.Green("Bob will attempt to buy $1000 worth of BVT!")
o.Tx("/BlockVersity/sales/public/purchaseBVT",
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 BVT!")
o.Tx("/BlockVersity/sales/public/purchaseBVT",
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("/BlockVersity/token/getBalance",
WithSigner("account"),
WithArg("account", "bob"),
).Result
color.Green("Bob's BVT balance before distribution is")
fmt.Println(beforeResultBob)
AccountFUSDVault := o.Script("/BlockVersity/sales/getFUSDVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's FUSD balance after purchase is: ")
fmt.Println(AccountFUSDVault)
o.Tx("/BlockVersity/sales/public/admin/distribute",
WithSigner("account"),
WithArg("address", "bob"),
WithArg("allocationAmount", "100.0"),
)
color.Red("BVT Has been distributed to Bob!")
resultBob := o.Script("/BlockVersity/token/getBalance",
WithSigner("account"),
WithArg("account", "bob"),
).Result
color.Green("Bob's BVT 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("/BlockVersity/sales/getFUSDVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's FUSD balance after distribution and refund is: ")
fmt.Println(afterAccountFUSDVault)
afterAccountBVTVault := o.Script("/BlockVersity/sales/getBVTVaultBalance",
WithSigner("account"),
).Result
color.Green("The ICO's BVT balance after distribution is: ")
fmt.Println(afterAccountBVTVault)
}