|
|
@ -5,20 +5,20 @@ use ng_oxigraph::oxigraph::io::RdfFormat; |
|
|
|
use ng_oxigraph::oxigraph::model::vocab::{rdf, xsd}; |
|
|
|
use ng_oxigraph::oxigraph::model::vocab::{rdf, xsd}; |
|
|
|
use ng_oxigraph::oxigraph::model::*; |
|
|
|
use ng_oxigraph::oxigraph::model::*; |
|
|
|
use ng_oxigraph::oxigraph::store::Store; |
|
|
|
use ng_oxigraph::oxigraph::store::Store; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use rand::random; |
|
|
|
use rand::random; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use std::env::temp_dir; |
|
|
|
use std::env::temp_dir; |
|
|
|
use std::error::Error; |
|
|
|
use std::error::Error; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use std::fs::{create_dir_all, remove_dir_all, File}; |
|
|
|
use std::fs::{create_dir_all, remove_dir_all, File}; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use std::io::Write; |
|
|
|
use std::io::Write; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use std::iter::empty; |
|
|
|
use std::iter::empty; |
|
|
|
#[cfg(all(target_os = "linux"))] |
|
|
|
#[cfg(all(target_os = "linux"))] |
|
|
|
use std::iter::once; |
|
|
|
use std::iter::once; |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
use std::path::{Path, PathBuf}; |
|
|
|
use std::path::{Path, PathBuf}; |
|
|
|
#[cfg(all(target_os = "linux"))] |
|
|
|
#[cfg(all(target_os = "linux"))] |
|
|
|
use std::process::Command; |
|
|
|
use std::process::Command; |
|
|
@ -121,7 +121,7 @@ fn test_load_graph() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bulk_load_graph() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bulk_load_graph() -> Result<(), Box<dyn Error>> { |
|
|
|
let store = Store::new()?; |
|
|
|
let store = Store::new()?; |
|
|
|
store |
|
|
|
store |
|
|
@ -135,7 +135,7 @@ fn test_bulk_load_graph() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bulk_load_graph_lenient() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bulk_load_graph_lenient() -> Result<(), Box<dyn Error>> { |
|
|
|
let store = Store::new()?; |
|
|
|
let store = Store::new()?; |
|
|
|
store.bulk_loader().on_parse_error(|_| Ok(())).load_from_read( |
|
|
|
store.bulk_loader().on_parse_error(|_| Ok(())).load_from_read( |
|
|
@ -154,7 +154,7 @@ fn test_bulk_load_graph_lenient() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bulk_load_empty() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bulk_load_empty() -> Result<(), Box<dyn Error>> { |
|
|
|
let store = Store::new()?; |
|
|
|
let store = Store::new()?; |
|
|
|
store.bulk_loader().load_quads(empty::<Quad>())?; |
|
|
|
store.bulk_loader().load_quads(empty::<Quad>())?; |
|
|
@ -177,7 +177,7 @@ fn test_load_dataset() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bulk_load_dataset() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bulk_load_dataset() -> Result<(), Box<dyn Error>> { |
|
|
|
let store = Store::new()?; |
|
|
|
let store = Store::new()?; |
|
|
|
store |
|
|
|
store |
|
|
@ -258,7 +258,7 @@ fn test_snapshot_isolation_iterator() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bulk_load_on_existing_delete_overrides_the_delete() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bulk_load_on_existing_delete_overrides_the_delete() -> Result<(), Box<dyn Error>> { |
|
|
|
let quad = QuadRef::new( |
|
|
|
let quad = QuadRef::new( |
|
|
|
NamedNodeRef::new_unchecked("http://example.com/s"), |
|
|
|
NamedNodeRef::new_unchecked("http://example.com/s"), |
|
|
@ -274,7 +274,7 @@ fn test_bulk_load_on_existing_delete_overrides_the_delete() -> Result<(), Box<dy |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_open_bad_dir() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_open_bad_dir() -> Result<(), Box<dyn Error>> { |
|
|
|
let dir = TempDir::default(); |
|
|
|
let dir = TempDir::default(); |
|
|
|
create_dir_all(&dir.0)?; |
|
|
|
create_dir_all(&dir.0)?; |
|
|
@ -344,7 +344,7 @@ fn test_bad_stt_open() -> Result<(), Box<dyn Error>> { |
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_bad_backup() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_bad_backup() -> Result<(), Box<dyn Error>> { |
|
|
|
let store_dir = TempDir::default(); |
|
|
|
let store_dir = TempDir::default(); |
|
|
|
let backup_dir = TempDir::default(); |
|
|
|
let backup_dir = TempDir::default(); |
|
|
@ -355,7 +355,7 @@ fn test_bad_backup() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_backup_on_in_memory() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_backup_on_in_memory() -> Result<(), Box<dyn Error>> { |
|
|
|
let backup_dir = TempDir::default(); |
|
|
|
let backup_dir = TempDir::default(); |
|
|
|
Store::new()?.backup(&backup_dir).unwrap_err(); |
|
|
|
Store::new()?.backup(&backup_dir).unwrap_err(); |
|
|
@ -442,7 +442,7 @@ fn test_backward_compatibility() -> Result<(), Box<dyn Error>> { |
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_read_only() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_read_only() -> Result<(), Box<dyn Error>> { |
|
|
|
let s = NamedNodeRef::new_unchecked("http://example.com/s"); |
|
|
|
let s = NamedNodeRef::new_unchecked("http://example.com/s"); |
|
|
|
let p = NamedNodeRef::new_unchecked("http://example.com/p"); |
|
|
|
let p = NamedNodeRef::new_unchecked("http://example.com/p"); |
|
|
@ -491,7 +491,7 @@ fn test_read_only() -> Result<(), Box<dyn Error>> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
#[test] |
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
fn test_open_read_only_bad_dir() -> Result<(), Box<dyn Error>> { |
|
|
|
fn test_open_read_only_bad_dir() -> Result<(), Box<dyn Error>> { |
|
|
|
let dir = TempDir::default(); |
|
|
|
let dir = TempDir::default(); |
|
|
|
create_dir_all(&dir.0)?; |
|
|
|
create_dir_all(&dir.0)?; |
|
|
@ -515,24 +515,24 @@ fn reset_dir(dir: &str) -> Result<(), Box<dyn Error>> { |
|
|
|
Ok(()) |
|
|
|
Ok(()) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
struct TempDir(PathBuf); |
|
|
|
struct TempDir(PathBuf); |
|
|
|
|
|
|
|
|
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
impl Default for TempDir { |
|
|
|
impl Default for TempDir { |
|
|
|
fn default() -> Self { |
|
|
|
fn default() -> Self { |
|
|
|
Self(temp_dir().join(format!("oxigraph-test-{}", random::<u128>()))) |
|
|
|
Self(temp_dir().join(format!("oxigraph-test-{}", random::<u128>()))) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
impl AsRef<Path> for TempDir { |
|
|
|
impl AsRef<Path> for TempDir { |
|
|
|
fn as_ref(&self) -> &Path { |
|
|
|
fn as_ref(&self) -> &Path { |
|
|
|
&self.0 |
|
|
|
&self.0 |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[cfg(all(not(target_family = "wasm"),not(docsrs)))] |
|
|
|
#[cfg(all(not(target_family = "wasm"), not(docsrs)))] |
|
|
|
impl Drop for TempDir { |
|
|
|
impl Drop for TempDir { |
|
|
|
fn drop(&mut self) { |
|
|
|
fn drop(&mut self) { |
|
|
|
if self.0.is_dir() { |
|
|
|
if self.0.is_dir() { |
|
|
|