|
|
|
use std::sync::Arc;
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
use bson;
|
|
|
|
|
|
|
|
use mongo_driver::uri::Uri;
|
|
|
|
use mongo_driver::client::ClientPool;
|
|
|
|
use mongo_driver::Result;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_cursor() {
|
|
|
|
let uri = Uri::new("mongodb://localhost:27017/").unwrap();
|
|
|
|
let pool = ClientPool::new(uri, None);
|
|
|
|
let client = pool.pop();
|
|
|
|
let mut collection = client.get_collection("rust_driver_test", "cursor_items");
|
|
|
|
|
|
|
|
let document = doc! { "key" => "value" };
|
|
|
|
|
|
|
|
collection.drop().unwrap_or(());
|
|
|
|
for _ in 0..10 {
|
|
|
|
assert!(collection.insert(&document, None).is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
let query = doc! {};
|
|
|
|
let cursor = collection.find(&query, None).unwrap();
|
|
|
|
|
|
|
|
let documents = cursor.into_iter().collect::<Vec<Result<bson::Document>>>();
|
|
|
|
|
|
|
|
// See if we got 10 results and the iterator then stopped
|
|
|
|
assert_eq!(10, documents.len());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tailing_cursor() {
|
|
|
|
// See: http://api.mongodb.org/c/1.1.8/cursors.html#tailable
|
|
|
|
|
|
|
|
let uri = Uri::new("mongodb://localhost:27017/").unwrap();
|
|
|
|
let pool = Arc::new(ClientPool::new(uri, None));
|
|
|
|
let client = pool.pop();
|
|
|
|
let database = client.get_database("rust_test");
|
|
|
|
database.get_collection("capped").drop().unwrap_or(());
|
|
|
|
database.get_collection("not_capped").drop().unwrap_or(());
|
|
|
|
|
|
|
|
let options = doc! {
|
|
|
|
"capped" => true,
|
|
|
|
"size" => 100000
|
|
|
|
};
|
|
|
|
let capped_collection = database.create_collection("capped", Some(&options)).unwrap();
|
|
|
|
let normal_collection = database.create_collection("not_capped", None).unwrap();
|
|
|
|
|
|
|
|
// Try to tail on a normal collection
|
|
|
|
let failing_cursor = normal_collection.tail(doc!{}, None, None);
|
|
|
|
let failing_result = failing_cursor.into_iter().next().unwrap();
|
|
|
|
assert!(failing_result.is_err());
|
|
|
|
assert_eq!(
|
|
|
|
"MongoError (BsoncError: Query/Unknown - Unable to execute query: error processing query: ns=rust_test.not_capped limit=0 skip=0\nTree: $and\nSort: {}\nProj: {}\n tailable cursor requested on non capped collection)",
|
|
|
|
format!("{:?}", failing_result.err().unwrap())
|
|
|
|
);
|
|
|
|
|
|
|
|
let document = doc! { "key_1" => "Value 1" };
|
|
|
|
// Insert a first document into the collection
|
|
|
|
capped_collection.insert(&document, None).unwrap();
|
|
|
|
|
|
|
|
// Start a tailing iterator in a thread
|
|
|
|
let cloned_pool = pool.clone();
|
|
|
|
let guard = thread::spawn(move || {
|
|
|
|
let client = cloned_pool.pop();
|
|
|
|
let collection = client.get_collection("rust_test", "capped");
|
|
|
|
let cursor = collection.tail(doc!{}, None, None);
|
|
|
|
let mut counter = 0usize;
|
|
|
|
for result in cursor.into_iter() {
|
|
|
|
assert!(result.is_ok());
|
|
|
|
counter += 1;
|
|
|
|
if counter == 25 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
counter
|
|
|
|
});
|
|
|
|
|
|
|
|
// Wait for the thread to boot up
|
|
|
|
thread::sleep_ms(250);
|
|
|
|
|
|
|
|
// Insert some more documents into the collection
|
|
|
|
for _ in 0..25 {
|
|
|
|
capped_collection.insert(&document, None).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
// See if they appeared while iterating the cursor
|
|
|
|
// The for loop returns whenever we get more than
|
|
|
|
// 15 results.
|
|
|
|
assert_eq!(25, guard.join().unwrap());
|
|
|
|
}
|