LCOV - code coverage report
Current view: top level - compute_tools/src/bin/fast_import - aws_s3_sync.rs (source / functions) Coverage Total Hit
Test: 4f58e98c51285c7fa348e0b410c88a10caf68ad2.info Lines: 0.0 % 17 0
Test Date: 2025-01-07 20:58:07 Functions: 0.0 % 2 0

            Line data    Source code
       1              : use anyhow::Context;
       2              : use camino::Utf8Path;
       3              : 
       4              : use super::s3_uri::S3Uri;
       5              : 
       6            0 : pub(crate) async fn sync(local: &Utf8Path, remote: &S3Uri) -> anyhow::Result<()> {
       7            0 :     let mut builder = tokio::process::Command::new("aws");
       8            0 :     builder
       9            0 :         .arg("s3")
      10            0 :         .arg("sync")
      11            0 :         .arg(local.as_str())
      12            0 :         .arg(remote.to_string());
      13            0 :     let st = builder
      14            0 :         .spawn()
      15            0 :         .context("spawn aws s3 sync")?
      16            0 :         .wait()
      17            0 :         .await
      18            0 :         .context("wait for aws s3 sync")?;
      19            0 :     if st.success() {
      20            0 :         Ok(())
      21              :     } else {
      22            0 :         Err(anyhow::anyhow!("aws s3 sync failed"))
      23              :     }
      24            0 : }
        

Generated by: LCOV version 2.1-beta