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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
pub use self::error::AggregatorError;
pub use self::error::ProposalError;
pub use self::{
cache::Cache,
error::{Error, Result},
peer::PeerUtils,
routing_api::{
config::Config,
event::{Elders, Event, MessageReceived, NodeElderChange},
event_stream::EventStream,
Routing,
},
section::{
node_state::{FIRST_SECTION_MAX_AGE, FIRST_SECTION_MIN_AGE, MIN_ADULT_AGE, MIN_AGE},
section_authority_provider::SectionAuthorityProviderUtils,
},
};
pub(crate) use self::{core::SignatureAggregator, section::section_keys::SectionKeyShare};
pub use qp2p::{Config as TransportConfig, SendStream};
pub use xor_name::{Prefix, XorName, XOR_NAME_LEN};
use rand::{distributions::Alphanumeric, thread_rng, Rng};
use std::env::temp_dir;
use crate::dbs::UsedSpace;
use anyhow::Result as AnyhowResult;
use std::path::{Path, PathBuf};
mod cache;
mod core;
mod dkg;
mod ed25519;
mod error;
mod messages;
mod network;
mod node;
mod peer;
mod relocation;
mod routing_api;
mod section;
pub const RECOMMENDED_SECTION_SIZE: usize = 2 * ELDER_SIZE;
pub const ELDER_SIZE: usize = 7;
const TEST_MAX_CAPACITY: u64 = 1024 * 1024;
pub fn create_test_used_space_and_root_storage() -> AnyhowResult<(UsedSpace, PathBuf)> {
let used_space = UsedSpace::new(TEST_MAX_CAPACITY);
let random_filename: String = thread_rng().sample_iter(&Alphanumeric).take(15).collect();
let tmp = temp_dir();
let storage_dir = Path::new(&tmp).join(random_filename);
Ok((used_space, storage_dir))
}
#[inline]
pub(crate) const fn supermajority(group_size: usize) -> usize {
1 + group_size * 2 / 3
}
#[cfg(test)]
mod tests {
use super::supermajority;
use proptest::prelude::*;
#[test]
fn supermajority_of_small_group() {
assert_eq!(supermajority(0), 1);
assert_eq!(supermajority(1), 1);
assert_eq!(supermajority(2), 2);
assert_eq!(supermajority(3), 3);
assert_eq!(supermajority(4), 3);
assert_eq!(supermajority(5), 4);
assert_eq!(supermajority(6), 5);
assert_eq!(supermajority(7), 5);
assert_eq!(supermajority(8), 6);
assert_eq!(supermajority(9), 7);
}
proptest! {
#[test]
fn proptest_supermajority(a in 0usize..10000) {
let n = 3 * a;
assert_eq!(supermajority(n), 2 * a + 1);
assert_eq!(supermajority(n + 1), 2 * a + 1);
assert_eq!(supermajority(n + 2), 2 * a + 2);
}
}
}