Multiple integration tests can call beets at the same time #19

Merged
wojtek merged 2 commits from 18---multiple-integration-tests-can-call-beets-at-the-same-time into main 2023-04-10 20:48:45 +02:00
4 changed files with 41 additions and 15 deletions
Showing only changes of commit 9f0f3b6840 - Show all commits

View File

@ -17,12 +17,13 @@ pub trait DatabaseJsonBackend {
fn write(&mut self, json: &str) -> Result<(), std::io::Error>; fn write(&mut self, json: &str) -> Result<(), std::io::Error>;
} }
/// A JSON file database. /// JSON database.
pub struct DatabaseJson { pub struct DatabaseJson {
backend: Box<dyn DatabaseJsonBackend + Send>, backend: Box<dyn DatabaseJsonBackend + Send>,
} }
impl DatabaseJson { impl DatabaseJson {
/// Create a new JSON database with the provided executor, e.g. [DatabaseJsonFile].
pub fn new(backend: Box<dyn DatabaseJsonBackend + Send>) -> Self { pub fn new(backend: Box<dyn DatabaseJsonBackend + Send>) -> Self {
DatabaseJson { backend } DatabaseJson { backend }
} }
@ -50,6 +51,7 @@ impl DatabaseWrite for DatabaseJson {
} }
} }
/// JSON database that uses a local file for persistent storage.
pub struct DatabaseJsonFile { pub struct DatabaseJsonFile {
path: PathBuf, path: PathBuf,
} }

View File

@ -106,6 +106,7 @@ trait LibraryPrivate {
} }
impl Beets { impl Beets {
/// Create a new beets library instance with the provided executor, e.g. [SystemExecutor].
pub fn new(executor: Box<dyn BeetsExecutor + Send>) -> Beets { pub fn new(executor: Box<dyn BeetsExecutor + Send>) -> Beets {
Beets { executor } Beets { executor }
} }
@ -236,28 +237,48 @@ impl LibraryPrivate for Beets {
} }
/// Executor for executing beets commands on the local system. /// Executor for executing beets commands on the local system.
///
/// # Safety
///
/// The beets executable is not safe to call concurrently for operations on the same
/// database/library. Therefore, all functions that create a [SystemExecutor] or modify which
/// library it works with are marked unsafe. It is the caller's responsibility to make sure the
/// library is not being concurrently accessed from anywhere else.
pub struct SystemExecutor { pub struct SystemExecutor {
bin: String, bin: String,
config: Option<PathBuf>, config: Option<PathBuf>,
} }
impl SystemExecutor { impl SystemExecutor {
pub fn new(bin: &str) -> Self { /// Create a new [SystemExecutor] that uses the provided beets executable.
///
/// # Safety
///
/// The caller must ensure the library is not being concurrently accessed from anywhere else.
pub unsafe fn new(bin: &str) -> Self {
SystemExecutor { SystemExecutor {
bin: bin.to_string(), bin: bin.to_string(),
config: None, config: None,
} }
} }
pub fn config(mut self, path: Option<&Path>) -> Self { /// Create a new [SystemExecutor] that uses the system's default beets executable.
self.config = path.map(|p| p.to_path_buf()); ///
self /// # Safety
} ///
/// The caller must ensure the library is not being concurrently accessed from anywhere else.
pub unsafe fn default() -> Self {
SystemExecutor::new("beet")
} }
impl Default for SystemExecutor { /// Update the configuration file for the beets executable.
fn default() -> Self { ///
SystemExecutor::new("beet") /// # Safety
///
/// The caller must ensure the library is not being concurrently accessed from anywhere else.
pub unsafe fn config(mut self, path: Option<&Path>) -> Self {
self.config = path.map(|p| p.to_path_buf());
self
} }
} }

View File

@ -37,7 +37,7 @@ fn main() {
let opt = Opt::from_args(); let opt = Opt::from_args();
let mut beets = Beets::new(Box::new( let mut beets = Beets::new(Box::new(
SystemExecutor::default().config(opt.beets_config_file_path.as_deref()), unsafe { SystemExecutor::default().config(opt.beets_config_file_path.as_deref()) },
)); ));
let collection = beets let collection = beets

View File

@ -15,15 +15,18 @@ use musichoard::{
use crate::COLLECTION; use crate::COLLECTION;
static BEETS_EMPTY_CONFIG: Lazy<Arc<Mutex<Beets>>> = static BEETS_EMPTY_CONFIG: Lazy<Arc<Mutex<Beets>>> = Lazy::new(|| {
Lazy::new(|| Arc::new(Mutex::new(Beets::new(Box::new(SystemExecutor::default()))))); Arc::new(Mutex::new(Beets::new(Box::new(unsafe {
SystemExecutor::default()
}))))
});
static BEETS_TEST_CONFIG: Lazy<Arc<Mutex<Beets>>> = Lazy::new(|| { static BEETS_TEST_CONFIG: Lazy<Arc<Mutex<Beets>>> = Lazy::new(|| {
Arc::new(Mutex::new(Beets::new(Box::new( Arc::new(Mutex::new(Beets::new(Box::new(unsafe {
SystemExecutor::default().config(Some( SystemExecutor::default().config(Some(
&fs::canonicalize("./tests/files/library/config.yml").unwrap(), &fs::canonicalize("./tests/files/library/config.yml").unwrap(),
)), ))
)))) }))))
}); });
#[test] #[test]