This commit is contained in:
Anatoly Yakovenko
2018-05-06 22:25:05 -07:00
parent 138efa6cec
commit 4751e459cc
3 changed files with 7 additions and 31 deletions

View File

@@ -149,7 +149,7 @@ mod tests {
use super::*; use super::*;
use accountant::Accountant; use accountant::Accountant;
use accountant_skel::AccountantSkel; use accountant_skel::AccountantSkel;
use crdt::ReplicatedData; use crdt::{Crdt, ReplicatedData};
use futures::Future; use futures::Future;
use historian::Historian; use historian::Historian;
use logger; use logger;
@@ -158,7 +158,7 @@ mod tests {
use std::io::sink; use std::io::sink;
use std::sync::atomic::{AtomicBool, Ordering}; use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::mpsc::sync_channel; use std::sync::mpsc::sync_channel;
use std::sync::Arc; use std::sync::{Arc, RwLock};
use std::thread::sleep; use std::thread::sleep;
use std::time::Duration; use std::time::Duration;
@@ -199,25 +199,6 @@ mod tests {
t.join().unwrap(); t.join().unwrap();
} }
} }
}
#[cfg(all(feature = "unstable", test))]
mod unstsable_tests {
use super::*;
use accountant::Accountant;
use accountant_skel::AccountantSkel;
use crdt::{Crdt, ReplicatedData};
use futures::Future;
use historian::Historian;
use logger;
use mint::Mint;
use signature::{KeyPair, KeyPairUtil};
use std::io::sink;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::mpsc::sync_channel;
use std::sync::{Arc, RwLock};
use std::thread::sleep;
use std::time::Duration;
fn test_node() -> (ReplicatedData, UdpSocket, UdpSocket, UdpSocket) { fn test_node() -> (ReplicatedData, UdpSocket, UdpSocket, UdpSocket) {
let gossip = UdpSocket::bind("0.0.0.0:0").unwrap(); let gossip = UdpSocket::bind("0.0.0.0:0").unwrap();
@@ -234,6 +215,7 @@ mod unstsable_tests {
} }
#[test] #[test]
// #[ignore]
fn test_multi_accountant_stub() { fn test_multi_accountant_stub() {
logger::setup(); logger::setup();
info!("test_multi_accountant_stub"); info!("test_multi_accountant_stub");

View File

@@ -17,6 +17,7 @@ pub type BlobRecycler = Recycler<Blob>;
pub const NUM_PACKETS: usize = 1024 * 8; pub const NUM_PACKETS: usize = 1024 * 8;
pub const BLOB_SIZE: usize = 64 * 1024; pub const BLOB_SIZE: usize = 64 * 1024;
pub const BLOB_DATA_SIZE: usize = BLOB_SIZE - BLOB_ID_END;
pub const PACKET_DATA_SIZE: usize = 256; pub const PACKET_DATA_SIZE: usize = 256;
pub const NUM_BLOBS: usize = (NUM_PACKETS * PACKET_DATA_SIZE) / BLOB_SIZE; pub const NUM_BLOBS: usize = (NUM_PACKETS * PACKET_DATA_SIZE) / BLOB_SIZE;
@@ -176,26 +177,19 @@ impl Packets {
// * read until it fails // * read until it fails
// * set it back to blocking before returning // * set it back to blocking before returning
socket.set_nonblocking(false)?; socket.set_nonblocking(false)?;
let mut error_msgs = 0;
for p in &mut self.packets { for p in &mut self.packets {
p.meta.size = 0; p.meta.size = 0;
trace!("receiving"); trace!("receiving");
match socket.recv_from(&mut p.data) { match socket.recv_from(&mut p.data) {
Err(_) if i > 0 => { Err(_) if i > 0 => {
debug!("got {:?} messages", i); debug!("got {:?} messages", i);
error_msgs += 1;
if error_msgs > 30 {
break; break;
} else {
continue;
}
} }
Err(e) => { Err(e) => {
trace!("recv_from err {:?}", e); trace!("recv_from err {:?}", e);
return Err(Error::IO(e)); return Err(Error::IO(e));
} }
Ok((nrecv, from)) => { Ok((nrecv, from)) => {
error_msgs = 0;
p.meta.size = nrecv; p.meta.size = nrecv;
p.meta.set_addr(&from); p.meta.set_addr(&from);
if i == 0 { if i == 0 {

View File

@@ -8,7 +8,7 @@
use entry::{create_entry_mut, Entry}; use entry::{create_entry_mut, Entry};
use event::Event; use event::Event;
use hash::{hash, Hash}; use hash::{hash, Hash};
use packet::BLOB_SIZE; use packet::BLOB_DATA_SIZE;
use std::mem; use std::mem;
use std::sync::mpsc::{Receiver, SyncSender, TryRecvError}; use std::sync::mpsc::{Receiver, SyncSender, TryRecvError};
use std::time::{Duration, Instant}; use std::time::{Duration, Instant};
@@ -84,7 +84,7 @@ impl Recorder {
// Record an entry early if we anticipate its serialized size will // Record an entry early if we anticipate its serialized size will
// be larger than 64kb. At the time of this writing, we assume each // be larger than 64kb. At the time of this writing, we assume each
// event will be well under 256 bytes. // event will be well under 256 bytes.
if self.events.len() >= BLOB_SIZE / 256 { if self.events.len() >= BLOB_DATA_SIZE / 256 {
self.record_entry()?; self.record_entry()?;
} }
} }