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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
// address.rs
use super::{chain::UserChainData, transaction::UserTransactionData};
use crate::error::UserStateError;

use ic_cdk::export::{candid::CandidType, serde::Deserialize};
use std::collections::HashMap;

/// Represents the user address data structure, including the chain_data.
#[derive(Debug, CandidType, Deserialize, Clone)]
pub struct UserAddressData {
    pub name: String,
    pub hidden: bool,
    pub disabled: bool,
    pub public_key: Vec<u8>,
    pub chain_data: HashMap<u64, UserChainData>,
}

impl UserAddressData {
    /// Creates a new AddressData with the given name and public_key.
    pub fn new(public_key: Vec<u8>, name: String) -> Self {
        Self {
            name,
            public_key,
            hidden: false,
            disabled: false,
            chain_data: HashMap::default(),
        }
    }

    // Safe access method to get a chain by chain_id
    pub fn get_chain(&self, chain_id: u64) -> Result<&UserChainData, UserStateError> {
        self.chain_data
            .get(&chain_id)
            .ok_or(UserStateError::ChainNotFound)
    }

    /// Adds a transaction to the specified chain and updates the ChainData.
    /// Returns an error if the chain_id is not found.
    pub fn add_transaction(
        &mut self,
        chain_id: u64,
        nonce: u64,
        transaction: UserTransactionData,
    ) -> Result<&UserChainData, UserStateError> {
        if let Some(chain_data) = self.chain_data.get_mut(&chain_id) {
            chain_data.add(nonce, transaction);

            Ok(chain_data)
        } else {
            Err(UserStateError::ChainNotFound)
        }
    }

    /// Gets the ChainData for a specific chain_id.
    pub fn get_transactions(&self, chain_id: u64) -> Result<&UserChainData, UserStateError> {
        self.chain_data
            .get(&chain_id)
            .ok_or(UserStateError::ChainNotFound)
    }

    /// Clears the transactions vector for the specified chain.
    /// Returns an error if the chain_id is not found.
    pub fn clear_transactions(&mut self, chain_id: u64) -> Result<&UserChainData, UserStateError> {
        if let Some(chain_data) = self.chain_data.get_mut(&chain_id) {
            chain_data.transactions.clear();

            Ok(chain_data)
        } else {
            Err(UserStateError::ChainNotFound)
        }
    }

    /// Adds a new chain to the address data.
    /// Returns an error if the chain_id is already in use.
    pub fn add_chain(
        &mut self,
        chain_id: u64,
        chain_data: UserChainData,
    ) -> Result<&UserChainData, UserStateError> {
        if self.chain_data.contains_key(&chain_id) {
            Err(UserStateError::ChainAlreadyExists)
        } else {
            self.chain_data.insert(chain_id, chain_data);

            if let Some(chain_data) = self.chain_data.get(&chain_id) {
                Ok(chain_data)
            } else {
                Err(UserStateError::ChainNotFound)
            }
        }
    }

    /// Removes a chain from the address data.
    /// Returns an error if the chain_id is not found.
    pub fn remove_chain(&mut self, chain_id: u64) -> Result<UserChainData, UserStateError> {
        if let Some(chain_data) = self.chain_data.remove(&chain_id) {
            Ok(chain_data)
        } else {
            Err(UserStateError::ChainNotFound)
        }
    }

    /// Returns the number of chains for the address.
    /// This is used for the UI to determine if the address is empty.
    pub fn chain_count(&self) -> usize {
        self.chain_data.len()
    }

    /// Returns the number of transactions for the address.
    /// This is used for the UI to determine if the address is empty.
    pub fn transaction_count(&self) -> usize {
        self.chain_data
            .values()
            .map(|chain_data| chain_data.transactions.len())
            .sum()
    }

    /// Returns the number of transactions for the specified chain.
    /// This is used for the UI to determine if the chain is empty.
    pub fn chain_transaction_count(&self, chain_id: u64) -> usize {
        if let Some(chain_data) = self.chain_data.get(&chain_id) {
            chain_data.transactions.len()
        } else {
            0
        }
    }

    /// Set Nonce for a specific chain_id.
    /// Returns an error if the chain_id is not found.
    pub fn set_nonce(
        &mut self,
        chain_id: u64,
        nonce: u64,
    ) -> Result<&UserChainData, UserStateError> {
        if let Some(chain_data) = self.chain_data.get_mut(&chain_id) {
            chain_data.nonce = nonce;

            Ok(chain_data)
        } else {
            Err(UserStateError::ChainNotFound)
        }
    }

    /// Get Nonce for a specific chain_id.
    /// Returns an error if the chain_id is not found.
    pub fn get_nonce(&self, chain_id: u64) -> Result<u64, UserStateError> {
        if let Some(chain_data) = self.chain_data.get(&chain_id) {
            Ok(chain_data.nonce)
        } else {
            Err(UserStateError::ChainNotFound)
        }
    }

    /// Get Transaction for a specific chain_id and index.
    /// Returns an error if the chain_id is not found.
    pub fn get_transaction(
        &self,
        chain_id: u64,
        index: usize,
    ) -> Result<&UserTransactionData, UserStateError> {
        let chain_data = self.get_chain(chain_id)?;
        chain_data.get_transaction(index)
    }
}

#[derive(Clone, Debug, CandidType, Default, Deserialize)]
pub struct UserAddressArgs {
    pub public_key: Vec<u8>,
    pub name: Option<String>,
}

#[cfg(test)]
mod tests {
    use super::*;
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn test_add_and_clear_transactions(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
            transactions: Vec<UserTransactionData>,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, UserChainData::default()).unwrap();

            for (index, transaction) in transactions.iter().enumerate() {
                address_data.add_transaction(chain_id, nonce + index as u64, transaction.clone()).unwrap();
            }

            let chain_data = address_data.get_transactions(chain_id).unwrap();
            assert_eq!(chain_data.transactions.len(), transactions.len());

            address_data.clear_transactions(chain_id).unwrap();

            let chain_data = address_data.get_transactions(chain_id).unwrap();
            assert_eq!(chain_data.transactions.len(), 0);
        }

        #[test]
        fn test_add_chain_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            chain_data: UserChainData,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, chain_data.clone()).unwrap();

            let result = address_data.add_chain(chain_id, chain_data);

            match result {
                Err(UserStateError::ChainAlreadyExists) => assert!(true),
                _ => panic!("Expected ChainAlreadyExists error"),
            }
        }

        #[test]
        fn test_add_transaction_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
            transaction: UserTransactionData,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);

            let result = address_data.add_transaction(chain_id, nonce, transaction);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_clear_transactions_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);

            let result = address_data.clear_transactions(chain_id);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_get_transaction(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
            transactions: Vec<UserTransactionData>,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, UserChainData::default()).unwrap();

            for (index, transaction) in transactions.iter().enumerate() {
                address_data.add_transaction(chain_id, nonce + index as u64, transaction.clone()).unwrap();
            }

            for (index, transaction) in transactions.iter().enumerate() {
                let result = address_data.get_transaction(chain_id, index).unwrap();
                assert_eq!(result, transaction);
            }
        }

        #[test]
        fn test_get_transaction_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            index: usize,
        ) {
            let address_data = UserAddressData::new(public_key, name);

            let result = address_data.get_transaction(chain_id, index);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_get_transactions(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
            transactions: Vec<UserTransactionData>,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, UserChainData::default()).unwrap();

            for (index, transaction) in transactions.iter().enumerate() {
                address_data.add_transaction(chain_id, nonce + index as u64, transaction.clone()).unwrap();
            }

            let chain_data = address_data.get_transactions(chain_id).unwrap();
            assert_eq!(chain_data.transactions.len(), transactions.len());
        }

        #[test]
        fn test_get_transactions_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
        ) {
            let address_data = UserAddressData::new(public_key, name);

            let result = address_data.get_transactions(chain_id);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_get_chain(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            chain_data: UserChainData,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, chain_data.clone()).unwrap();

            let result = address_data.get_chain(chain_id).unwrap();

            assert_eq!(result.clone(), chain_data);
        }

        #[test]
        fn test_get_chain_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
        ) {
            let address_data = UserAddressData::new(public_key, name);

            let result = address_data.get_chain(chain_id);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_get_nonce(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, UserChainData::default()).unwrap();
            address_data.set_nonce(chain_id, nonce).unwrap();

            let result = address_data.get_nonce(chain_id).unwrap();
            assert_eq!(result, nonce);
        }

        #[test]
        fn test_get_nonce_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
        ) {
            let address_data = UserAddressData::new(public_key, name);

            let result = address_data.get_nonce(chain_id);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

        #[test]
        fn test_set_nonce(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);
            address_data.add_chain(chain_id, UserChainData::default()).unwrap();

            let result = address_data.set_nonce(chain_id, nonce);
            assert!(result.is_ok());
        }

        #[test]
        fn test_set_nonce_error(
            public_key: Vec<u8>,
            name: String,
            chain_id: u64,
            nonce: u64,
        ) {
            let mut address_data = UserAddressData::new(public_key, name);

            let result = address_data.set_nonce(chain_id, nonce);

            match result {
                Err(UserStateError::ChainNotFound) => assert!(true),
                _ => panic!("Expected ChainNotFound error"),
            }
        }

    }
}