aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic.rs')
-rw-r--r--tests/basic.rs21
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/basic.rs b/tests/basic.rs
index 71ed857..3b52bc2 100644
--- a/tests/basic.rs
+++ b/tests/basic.rs
@@ -5,7 +5,26 @@ mod fixtures;
#[test]
fn test_basic() {
- fixtures::run_fixture("basic", true, |pty| {
+ fixtures::run_fixture("basic", "", true, |pty| {
+ pty.write_all(b"a").unwrap();
+ assert_eq!(fixtures::read(pty), b"\x1b[6;6Hfoo");
+
+ pty.write_all(b"a").unwrap();
+ assert!(!fixtures::read_ready(pty.as_raw_fd()));
+
+ pty.write_all(b"a").unwrap();
+ assert_eq!(
+ fixtures::read(pty),
+ b"\x1b[9;9H\x1b[32mbar\x1b[12;12H\x1b[mbaz"
+ );
+
+ pty.write_all(b"a").unwrap();
+ });
+}
+
+#[test]
+fn test_async() {
+ fixtures::run_fixture("async", "async", true, |pty| {
pty.write_all(b"a").unwrap();
assert_eq!(fixtures::read(pty), b"\x1b[6;6Hfoo");