breez_sdk_liquid/persist/
backup.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
use std::path::{Path, PathBuf};

use anyhow::Result;
use rusqlite::{backup::Backup, Connection};

use super::Persister;
use crate::model::LiquidNetwork;

impl Persister {
    pub(crate) fn get_default_backup_path(&self) -> PathBuf {
        self.main_db_dir.join(match self.network {
            LiquidNetwork::Mainnet => "backup.sql",
            LiquidNetwork::Testnet => "backup-testnet.sql",
            LiquidNetwork::Regtest => "backup-regtest.sql",
        })
    }

    pub(crate) fn backup(&self, backup_path: PathBuf) -> Result<()> {
        let con = self.get_connection()?;
        con.backup(rusqlite::DatabaseName::Main, backup_path, None)?;
        Ok(())
    }

    pub(crate) fn restore_from_backup<P>(&self, backup_path: P) -> Result<()>
    where
        P: AsRef<Path>,
    {
        let src_con = Connection::open(backup_path)?;
        let mut dst_con = self.get_connection()?;

        let backup = Backup::new(&src_con, &mut dst_con)?;
        backup.run_to_completion(5, std::time::Duration::from_millis(250), None)?;

        Ok(())
    }
}

#[cfg(test)]
#[cfg(not(all(target_family = "wasm", target_os = "unknown")))]
mod tests {
    use anyhow::Result;

    use crate::{
        model::PaymentState,
        test_utils::persist::{create_persister, new_receive_swap, new_send_swap},
    };

    #[sdk_macros::test_not_wasm]
    fn test_backup_and_restore() -> Result<()> {
        create_persister!(local);

        local.insert_or_update_send_swap(&new_send_swap(Some(PaymentState::Pending), None))?;
        local
            .insert_or_update_receive_swap(&new_receive_swap(Some(PaymentState::Pending), None))?;
        assert_eq!(local.list_ongoing_swaps()?.len(), 2);

        let backup_path = local.get_default_backup_path();
        local.backup(backup_path.clone())?;
        assert!(backup_path.exists());

        create_persister!(remote);

        remote.restore_from_backup(backup_path)?;
        assert_eq!(remote.list_ongoing_swaps()?.len(), 2);

        Ok(())
    }
}