summaryrefslogtreecommitdiffstats
path: root/store/tests/ipc-policy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'store/tests/ipc-policy.rs')
-rw-r--r--store/tests/ipc-policy.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/store/tests/ipc-policy.rs b/store/tests/ipc-policy.rs
index d6c4e996..9923aa80 100644
--- a/store/tests/ipc-policy.rs
+++ b/store/tests/ipc-policy.rs
@@ -5,45 +5,45 @@ use std::env::current_exe;
use std::path::PathBuf;
use sequoia_core::{Context, NetworkPolicy, IPCPolicy};
-use sequoia_store::Store;
+use sequoia_store::{Store, REALM_CONTACTS};
#[test]
fn ipc_policy_external() {
- let ctx = Context::configure("org.sequoia-pgp.tests")
+ let ctx = Context::configure()
.ephemeral()
.lib(current_exe().unwrap().parent().unwrap().parent().unwrap())
.network_policy(NetworkPolicy::Offline)
.ipc_policy(IPCPolicy::External)
.build().unwrap();
- Store::open(&ctx, "default").unwrap();
+ Store::open(&ctx, REALM_CONTACTS, "default").unwrap();
}
#[test]
fn ipc_policy_internal() {
- let ctx = Context::configure("org.sequoia-pgp.tests")
+ let ctx = Context::configure()
.ephemeral()
.lib(PathBuf::from("/i/do/not/exist"))
.network_policy(NetworkPolicy::Offline)
.ipc_policy(IPCPolicy::Internal)
.build().unwrap();
- Store::open(&ctx, "default").unwrap();
+ Store::open(&ctx, REALM_CONTACTS, "default").unwrap();
}
#[test]
fn ipc_policy_robust() {
- let ctx = Context::configure("org.sequoia-pgp.tests")
+ let ctx = Context::configure()
.ephemeral()
.lib(current_exe().unwrap().parent().unwrap().parent().unwrap())
.network_policy(NetworkPolicy::Offline)
.ipc_policy(IPCPolicy::Robust)
.build().unwrap();
- Store::open(&ctx, "default").unwrap();
+ Store::open(&ctx, REALM_CONTACTS, "default").unwrap();
- let ctx = Context::configure("org.sequoia-pgp.tests")
+ let ctx = Context::configure()
.ephemeral()
.lib(PathBuf::from("/i/do/not/exist"))
.network_policy(NetworkPolicy::Offline)
.ipc_policy(IPCPolicy::Robust)
.build().unwrap();
- Store::open(&ctx, "default").unwrap();
+ Store::open(&ctx, REALM_CONTACTS, "default").unwrap();
}