-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathtransfers.rs
227 lines (192 loc) · 7.19 KB
/
transfers.rs
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
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#![cfg(not(target_arch = "wasm32"))]
//! Integration tests for Native Fungible Token transfers.
use std::collections::{BTreeMap, HashMap};
use fungible::{self, FungibleTokenAbi};
use linera_sdk::{
linera_base_types::{Account, AccountOwner, Amount, ChainId, CryptoHash, Owner},
test::{ActiveChain, Recipient, TestValidator},
};
/// Tests if tokens from the shared chain balance can be sent to a different chain.
#[test_log::test(tokio::test)]
async fn chain_balance_transfers() {
let parameters = fungible::Parameters {
ticker_symbol: "NAT".to_owned(),
};
let initial_state = fungible::InitialStateBuilder::default().build();
let (validator, _application_id, recipient_chain) = TestValidator::with_current_application::<
FungibleTokenAbi,
_,
_,
>(parameters, initial_state)
.await;
let transfer_amount = Amount::ONE;
let funding_chain = validator.get_chain(&ChainId::root(0));
let recipient = Recipient::chain(recipient_chain.id());
let transfer_certificate = funding_chain
.add_block(|block| {
block.with_native_token_transfer(AccountOwner::Chain, recipient, transfer_amount);
})
.await;
recipient_chain
.add_block(|block| {
block.with_messages_from(&transfer_certificate);
})
.await;
assert_eq!(recipient_chain.chain_balance().await, transfer_amount);
assert_balances(&recipient_chain, []).await;
}
/// Tests if an individual account can receive tokens.
#[test_log::test(tokio::test)]
async fn transfer_to_owner() {
let parameters = fungible::Parameters {
ticker_symbol: "NAT".to_owned(),
};
let initial_state = fungible::InitialStateBuilder::default().build();
let (validator, _application_id, recipient_chain) = TestValidator::with_current_application::<
FungibleTokenAbi,
_,
_,
>(parameters, initial_state)
.await;
let transfer_amount = Amount::from_tokens(2);
let funding_chain = validator.get_chain(&ChainId::root(0));
let owner = Owner(CryptoHash::test_hash("owner"));
let account = Account::owner(recipient_chain.id(), owner);
let recipient = Recipient::Account(account);
let transfer_certificate = funding_chain
.add_block(|block| {
block.with_native_token_transfer(AccountOwner::Chain, recipient, transfer_amount);
})
.await;
recipient_chain
.add_block(|block| {
block.with_messages_from(&transfer_certificate);
})
.await;
assert_balances(&recipient_chain, [(owner.into(), transfer_amount)]).await;
}
/// Tests if multiple accounts can receive tokens.
#[test_log::test(tokio::test)]
async fn transfer_to_multiple_owners() {
let parameters = fungible::Parameters {
ticker_symbol: "NAT".to_owned(),
};
let initial_state = fungible::InitialStateBuilder::default().build();
let (validator, _application_id, recipient_chain) = TestValidator::with_current_application::<
FungibleTokenAbi,
_,
_,
>(parameters, initial_state)
.await;
let number_of_owners = 10;
let transfer_amounts = (1..=number_of_owners).map(Amount::from_tokens);
let funding_chain = validator.get_chain(&ChainId::root(0));
let account_owners = (1..=number_of_owners)
.map(|index| Owner(CryptoHash::test_hash(format!("owner{index}"))))
.map(AccountOwner::from)
.collect::<Vec<_>>();
let recipients = account_owners
.iter()
.copied()
.map(|account_owner| Account::owner(recipient_chain.id(), account_owner))
.map(Recipient::Account);
let transfer_certificate = funding_chain
.add_block(|block| {
for (recipient, transfer_amount) in recipients.zip(transfer_amounts.clone()) {
block.with_native_token_transfer(AccountOwner::Chain, recipient, transfer_amount);
}
})
.await;
recipient_chain
.add_block(|block| {
block.with_messages_from(&transfer_certificate);
})
.await;
assert_balances(
&recipient_chain,
account_owners.into_iter().zip(transfer_amounts),
)
.await;
}
/// Tests if an account that was emptied out doesn't appear in balance queries.
#[test_log::test(tokio::test)]
async fn emptied_account_disappears_from_queries() {
let parameters = fungible::Parameters {
ticker_symbol: "NAT".to_owned(),
};
let initial_state = fungible::InitialStateBuilder::default().build();
let (validator, _application_id, recipient_chain) = TestValidator::with_current_application::<
FungibleTokenAbi,
_,
_,
>(parameters, initial_state)
.await;
let transfer_amount = Amount::from_tokens(100);
let funding_chain = validator.get_chain(&ChainId::root(0));
let owner = Owner::from(recipient_chain.public_key());
let account_owner = AccountOwner::from(owner);
let recipient = Recipient::Account(Account::owner(recipient_chain.id(), account_owner));
let transfer_certificate = funding_chain
.add_block(|block| {
block.with_native_token_transfer(AccountOwner::Chain, recipient, transfer_amount);
})
.await;
recipient_chain
.add_block(|block| {
block.with_messages_from(&transfer_certificate);
})
.await;
recipient_chain
.add_block(|block| {
block.with_native_token_transfer(
AccountOwner::User(owner),
Recipient::Burn,
transfer_amount,
);
})
.await;
assert_eq!(recipient_chain.owner_balance(&account_owner).await, None);
assert_balances(&recipient_chain, []).await;
}
/// Asserts that all the accounts in the [`ActiveChain`] have the `expected_balances`.
async fn assert_balances(
chain: &ActiveChain,
expected_balances: impl IntoIterator<Item = (AccountOwner, Amount)>,
) {
let expected_balances = expected_balances.into_iter().collect::<BTreeMap<_, _>>();
let accounts = expected_balances.keys().copied().collect::<Vec<_>>();
assert_eq!(chain.accounts().await, accounts);
let missing_accounts = ["missing1", "missing2"]
.into_iter()
.map(CryptoHash::test_hash)
.map(Owner)
.map(AccountOwner::from)
.collect::<Vec<_>>();
let accounts_to_query = accounts
.into_iter()
.chain(missing_accounts.iter().copied())
.collect::<Vec<_>>();
let expected_query_response = expected_balances
.iter()
.map(|(&account, &balance)| (account, Some(balance)))
.chain(missing_accounts.into_iter().map(|account| (account, None)))
.collect::<HashMap<_, _>>();
for account in &accounts_to_query {
assert_eq!(
&chain.owner_balance(account).await,
expected_query_response
.get(account)
.expect("Missing balance amount for a test account")
);
}
assert_eq!(
chain.owner_balances(accounts_to_query).await,
expected_query_response
);
assert_eq!(
chain.all_owner_balances().await,
HashMap::from_iter(expected_balances)
);
}