blob: 35fd5b33b5b3ee661b8d98d6840643a7c61b57af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
use fd_lock::RwLock;
use std::fs::File;
use std::io::ErrorKind;
use tempfile::tempdir;
#[test]
fn double_read_lock() {
let dir = tempdir().unwrap();
let path = dir.path().join("lockfile");
let l0 = RwLock::new(File::create(&path).unwrap());
let l1 = RwLock::new(File::open(path).unwrap());
let _g0 = l0.try_read().unwrap();
let _g1 = l1.try_read().unwrap();
}
#[test]
fn double_write_lock() {
let dir = tempdir().unwrap();
let path = dir.path().join("lockfile");
let mut l0 = RwLock::new(File::create(&path).unwrap());
let mut l1 = RwLock::new(File::open(path).unwrap());
let g0 = l0.try_write().unwrap();
let err = l1.try_write().unwrap_err();
assert!(matches!(err.kind(), ErrorKind::WouldBlock));
drop(g0);
}
|