summaryrefslogtreecommitdiff
path: root/tests/all/session.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/all/session.rs')
-rw-r--r--tests/all/session.rs13
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/all/session.rs b/tests/all/session.rs
index 484610f..86587b4 100644
--- a/tests/all/session.rs
+++ b/tests/all/session.rs
@@ -1,10 +1,10 @@
use std::env;
use std::fs::File;
-use std::io::prelude::*;
+use std::io::{self, prelude::*};
use std::path::Path;
use tempdir::TempDir;
-use ssh2::{HashType, KeyboardInteractivePrompt, MethodType, Prompt, Session};
+use ssh2::{HashType, KeyboardInteractivePrompt, MethodType, Prompt, Session, BlockDirections};
#[test]
fn session_is_send() {
@@ -177,3 +177,12 @@ fn scp_send() {
.unwrap();
assert_eq!(actual, b"foobar");
}
+
+#[test]
+fn block_directions() {
+ let mut sess = ::authed_session();
+ sess.set_blocking(false);
+ let actual = sess.handshake().map_err(|e| io::Error::from(e).kind());
+ assert_eq!(actual, Err(io::ErrorKind::WouldBlock));
+ assert_eq!(sess.block_directions(), BlockDirections::Inbound);
+}