-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustomer.bats
216 lines (183 loc) · 6.31 KB
/
customer.bats
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
#!/usr/bin/env bats
load "helpers"
setup_file() {
start_server
login_superadmin
}
teardown_file() {
stop_server
}
wait_for_approval() {
variables=$(
jq -n \
--arg withdrawId "$1" \
'{ id: $withdrawId }'
)
exec_admin_graphql 'find-withdraw' "$variables"
status=$(graphql_output '.data.withdrawal.status')
[[ "$status" == "PENDING_CONFIRMATION" ]] || return 1
}
@test "customer: can create a customer" {
customer_email=$(generate_email)
telegramId=$(generate_email)
variables=$(
jq -n \
--arg email "$customer_email" \
--arg telegramId "$telegramId" \
'{
input: {
email: $email,
telegramId: $telegramId
}
}'
)
exec_admin_graphql 'customer-create' "$variables"
customer_id=$(graphql_output .data.customerCreate.customer.customerId)
echo $(graphql_output) | jq .
[[ "$customer_id" != "null" ]] || exit 1
variables=$(jq -n --arg id "$customer_id" '{ id: $id }')
exec_admin_graphql 'customer-audit-log' "$variables"
echo $(graphql_output) | jq .
}
@test "customer: can login" {
customer_email=$(generate_email)
telegramId=$(generate_email)
variables=$(
jq -n \
--arg email "$customer_email" \
--arg telegramId "$telegramId" \
'{
input: {
email: $email,
telegramId: $telegramId
}
}'
)
exec_admin_graphql 'customer-create' "$variables"
customer_id=$(graphql_output .data.customerCreate.customer.customerId)
[[ "$customer_id" != "null" ]] || exit 1
sleep 0.1 # wait for customer-onboarding steps
login_customer $customer_email
exec_customer_graphql $customer_email 'me'
echo $(graphql_output) | jq .
[[ "$(graphql_output .data.me.customer.customerId)" == "$customer_id" ]] || exit 1
}
@test "customer: can deposit" {
customer_id=$(create_customer)
cache_value "customer_id" $customer_id
variables=$(
jq -n \
--arg id "$customer_id" \
'{ id: $id }'
)
exec_admin_graphql 'customer' "$variables"
echo $(graphql_output) | jq .
deposit_account_id=$(graphql_output .data.customer.depositAccount.depositAccountId)
cache_value "deposit_account_id" $deposit_account_id
variables=$(
jq -n \
--arg depositAccountId "$deposit_account_id" \
'{
input: {
depositAccountId: $depositAccountId,
amount: 150000,
}
}'
)
exec_admin_graphql 'record-deposit' "$variables"
deposit_id=$(graphql_output '.data.depositRecord.deposit.depositId')
[[ "$deposit_id" != "null" ]] || exit 1
# usd_balance=$(graphql_output '.data.depositRecord.deposit.customer.depositAccount.balance.checking.settled')
# [[ "$usd_balance" == "150000" ]] || exit 1
}
@test "customer: withdraw can be cancelled" {
deposit_account_id=$(read_value 'deposit_account_id')
variables=$(
jq -n \
--arg depositAccountId "$deposit_account_id" \
--arg date "$(date +%s%N)" \
'{
input: {
depositAccountId: $depositAccountId,
amount: 150000,
reference: ("withdrawal-ref-" + $date)
}
}'
)
exec_admin_graphql 'initiate-withdrawal' "$variables"
withdrawal_id=$(graphql_output '.data.withdrawalInitiate.withdrawal.withdrawalId')
echo $(graphql_output)
[[ "$withdrawal_id" != "null" ]] || exit 1
status=$(graphql_output '.data.withdrawalInitiate.withdrawal.status')
# PENDING_APPROVAL is skipped due to status being updated on read
[[ "$status" == "PENDING_CONFIRMATION" ]] || exit 1
# settled_usd_balance=$(graphql_output '.data.withdrawalInitiate.withdrawal.customer.balance.checking.settled')
# [[ "$settled_usd_balance" == "0" ]] || exit 1
# pending_usd_balance=$(graphql_output '.data.withdrawalInitiate.withdrawal.customer.balance.checking.pending')
# [[ "$pending_usd_balance" == "150000" ]] || exit 1
assert_accounts_balanced
variables=$(
jq -n \
--arg withdrawalId "$withdrawal_id" \
'{
input: {
withdrawalId: $withdrawalId
}
}'
)
exec_admin_graphql 'withdrawal-cancel' "$variables"
echo $(graphql_output) | jq .
withdrawal_id=$(graphql_output '.data.withdrawalCancel.withdrawal.withdrawalId')
[[ "$withdrawal_id" != "null" ]] || exit 1
status=$(graphql_output '.data.withdrawalCancel.withdrawal.status')
[[ "$status" == "CANCELLED" ]] || exit 1
# settled_usd_balance=$(graphql_output '.data.withdrawalCancel.withdrawal.customer.balance.checking.settled')
# [[ "$settled_usd_balance" == "150000" ]] || exit 1
# pending_usd_balance=$(graphql_output '.data.withdrawalCancel.withdrawal.customer.balance.checking.pending')
# [[ "$pending_usd_balance" == "0" ]] || exit 1
assert_accounts_balanced
}
@test "customer: can withdraw" {
deposit_account_id=$(read_value 'deposit_account_id')
variables=$(
jq -n \
--arg depositAccountId "$deposit_account_id" \
--arg date "$(date +%s%N)" \
'{
input: {
depositAccountId: $depositAccountId,
amount: 120000,
reference: ("withdrawal-ref-" + $date)
}
}'
)
exec_admin_graphql 'initiate-withdrawal' "$variables"
withdrawal_id=$(graphql_output '.data.withdrawalInitiate.withdrawal.withdrawalId')
[[ "$withdrawal_id" != "null" ]] || exit 1
# settled_usd_balance=$(graphql_output '.data.withdrawalInitiate.withdrawal.customer.balance.checking.settled')
# [[ "$settled_usd_balance" == "0" ]] || exit 1
# pending_usd_balance=$(graphql_output '.data.withdrawalInitiate.withdrawal.customer.balance.checking.pending')
# [[ "$pending_usd_balance" == "120000" ]] || exit 1
assert_accounts_balanced
retry 5 1 wait_for_approval $withdrawal_id
variables=$(
jq -n \
--arg withdrawalId "$withdrawal_id" \
'{
input: {
withdrawalId: $withdrawalId
}
}'
)
exec_admin_graphql 'confirm-withdrawal' "$variables"
echo $(graphql_output) | jq .
withdrawal_id=$(graphql_output '.data.withdrawalConfirm.withdrawal.withdrawalId')
[[ "$withdrawal_id" != "null" ]] || exit 1
status=$(graphql_output '.data.withdrawalConfirm.withdrawal.status')
[[ "$status" == "CONFIRMED" ]] || exit 1
# settled_usd_balance=$(graphql_output '.data.withdrawalConfirm.withdrawal.customer.balance.checking.settled')
# [[ "$settled_usd_balance" == "0" ]] || exit 1
# pending_usd_balance=$(graphql_output '.data.withdrawalConfirm.withdrawal.customer.balance.checking.pending')
# [[ "$pending_usd_balance" == "0" ]] || exit 1
assert_accounts_balanced
}