mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-25 16:36:54 +02:00
careof tests
Signed-off-by: Erik Hollensbe <git@hollensbe.org>
This commit is contained in:
parent
ec9fa2a259
commit
e9dd7c53d7
1 changed files with 47 additions and 2 deletions
|
@ -11,7 +11,7 @@ use zerotier_core_crypto::varint;
|
|||
///
|
||||
/// This can be sent by nodes to indicate which other nodes they wish to have used to reach them. Typically
|
||||
/// these would be roots. It prevents a misbehaving or malicious root from pretending to host a node.
|
||||
#[derive(Clone, PartialEq, Eq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct CareOf {
|
||||
pub timestamp: i64,
|
||||
pub fingerprints: Vec<[u8; IDENTITY_FINGERPRINT_SIZE]>,
|
||||
|
@ -115,7 +115,7 @@ mod tests {
|
|||
use super::Identity;
|
||||
|
||||
#[test]
|
||||
fn add() {
|
||||
fn add_contains() {
|
||||
let (s, r) = mpsc::channel();
|
||||
|
||||
for _ in 0..10 {
|
||||
|
@ -135,4 +135,49 @@ mod tests {
|
|||
assert!(r.recv().unwrap());
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn to_from_bytes() {
|
||||
let (s, r) = mpsc::channel();
|
||||
|
||||
for _ in 0..10 {
|
||||
let s2 = s.clone();
|
||||
|
||||
std::thread::spawn(move || {
|
||||
let id = Identity::generate();
|
||||
let mut c = CareOf::new(rand::random());
|
||||
|
||||
c.add_care_of(&id);
|
||||
s2.send(c.eq(&CareOf::from_bytes(&c.to_bytes()).unwrap())).unwrap();
|
||||
});
|
||||
}
|
||||
|
||||
for _ in 0..10 {
|
||||
assert!(r.recv().unwrap());
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn sign_verify() {
|
||||
let (s, r) = mpsc::channel();
|
||||
|
||||
for _ in 0..10 {
|
||||
let s2 = s.clone();
|
||||
|
||||
std::thread::spawn(move || {
|
||||
let id = Identity::generate();
|
||||
let id2 = Identity::generate();
|
||||
let mut c = CareOf::new(rand::random());
|
||||
|
||||
c.add_care_of(&id2);
|
||||
|
||||
s2.send(c.sign(&id)).unwrap();
|
||||
s2.send(c.verify(&id)).unwrap();
|
||||
});
|
||||
}
|
||||
|
||||
for _ in 0..20 {
|
||||
assert!(r.recv().unwrap());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue