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
use crate::account::Account;
pub use solana_program::feature::*;

pub fn from_account(account: &Account) -> Option<Feature> {
    if account.owner != id() {
        None
    } else {
        bincode::deserialize(&account.data).ok()
    }
}

pub fn to_account(feature: &Feature, account: &mut Account) -> Option<()> {
    bincode::serialize_into(&mut account.data[..], feature).ok()
}

pub fn create_account(feature: &Feature, lamports: u64) -> Account {
    let data_len = Feature::size_of().max(bincode::serialized_size(feature).unwrap() as usize);
    let mut account = Account::new(lamports, data_len, &id());
    to_account(feature, &mut account).unwrap();
    account
}

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

    #[test]
    fn feature_deserialize_none() {
        let just_initialized = Account::new(42, Feature::size_of(), &id());
        assert_eq!(
            from_account(&just_initialized),
            Some(Feature { activated_at: None })
        );
    }
}