tests_fuzz/utils/
config.rsuse std::path::PathBuf;
use common_telemetry::tracing::info;
use serde::Serialize;
use snafu::ResultExt;
use tinytemplate::TinyTemplate;
use tokio::fs::File;
use tokio::io::AsyncWriteExt;
use crate::error;
use crate::error::Result;
pub fn get_conf_path() -> PathBuf {
let mut root_path = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
root_path.push("conf");
root_path
}
pub fn render_config_file<C: Serialize>(template_path: &str, context: &C) -> String {
let mut tt = TinyTemplate::new();
let template = std::fs::read_to_string(template_path).unwrap();
tt.add_template(template_path, &template).unwrap();
tt.render(template_path, context).unwrap()
}
pub async fn write_config_file<C: Serialize>(
template_path: &str,
context: &C,
output_path: &str,
) -> Result<()> {
info!("template_path: {template_path}, output_path: {output_path}");
let content = render_config_file(template_path, context);
let mut config_file = File::create(output_path)
.await
.context(error::CreateFileSnafu { path: output_path })?;
config_file
.write_all(content.as_bytes())
.await
.context(error::WriteFileSnafu { path: output_path })?;
Ok(())
}