aboutsummaryrefslogtreecommitdiffstats
path: root/tests/escape.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-12 05:47:32 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-12 05:51:17 -0500
commit28eea9f6a837dad5febfe9b021b7070e96b286f9 (patch)
treec48d13955c045b892b95f6e652f8be22938705d1 /tests/escape.rs
parentbdda29c8e82e22bf49b5588f341549d3f94d6d30 (diff)
downloadvt100-rust-28eea9f6a837dad5febfe9b021b7070e96b286f9.tar.gz
vt100-rust-28eea9f6a837dad5febfe9b021b7070e96b286f9.zip
remove parser.screen_mut
it's easier to reason about if you are only able to get an immutable reference to the internal screen. this also required changing the api for bells.
Diffstat (limited to 'tests/escape.rs')
-rw-r--r--tests/escape.rs24
1 files changed, 14 insertions, 10 deletions
diff --git a/tests/escape.rs b/tests/escape.rs
index 43eb666..e08a402 100644
--- a/tests/escape.rs
+++ b/tests/escape.rs
@@ -40,8 +40,8 @@ fn ris() {
assert_eq!(parser.screen().title(), "");
assert_eq!(parser.screen().icon_name(), "");
- assert!(!parser.screen_mut().check_visual_bell());
- assert!(!parser.screen_mut().check_audible_bell());
+ assert_eq!(parser.screen().audible_bell_count(), 0);
+ assert_eq!(parser.screen().visual_bell_count(), 0);
assert!(!parser.screen().application_keypad());
assert!(!parser.screen().application_cursor());
assert!(!parser.screen().hide_cursor());
@@ -72,8 +72,8 @@ fn ris() {
assert_eq!(parser.screen().title(), "window title");
assert_eq!(parser.screen().icon_name(), "window icon name");
- assert!(parser.screen_mut().check_visual_bell());
- assert!(parser.screen_mut().check_audible_bell());
+ assert_eq!(parser.screen().audible_bell_count(), 1);
+ assert_eq!(parser.screen().visual_bell_count(), 1);
assert!(parser.screen().application_keypad());
assert!(parser.screen().application_cursor());
assert!(parser.screen().hide_cursor());
@@ -87,7 +87,7 @@ fn ris() {
vt100::MouseProtocolEncoding::Sgr
);
- parser.process(b"\x07\x1bg\x1bc");
+ parser.process(b"\x1bc");
assert_eq!(parser.screen().cursor_position(), (0, 0));
let cell = parser.screen().cell(0, 0).unwrap();
@@ -104,8 +104,8 @@ fn ris() {
assert_eq!(parser.screen().icon_name(), "window icon name");
// bell states don't change with reset
- assert!(parser.screen_mut().check_visual_bell());
- assert!(parser.screen_mut().check_audible_bell());
+ assert_eq!(parser.screen().audible_bell_count(), 1);
+ assert_eq!(parser.screen().visual_bell_count(), 1);
assert!(!parser.screen().application_keypad());
assert!(!parser.screen().application_cursor());
@@ -124,10 +124,14 @@ fn ris() {
#[test]
fn vb() {
let mut parser = vt100::Parser::default();
- assert!(!parser.screen_mut().check_visual_bell());
+ assert_eq!(parser.screen().visual_bell_count(), 0);
parser.process(b"\x1bg");
- assert!(parser.screen_mut().check_visual_bell());
- assert!(!parser.screen_mut().check_visual_bell());
+ assert_eq!(parser.screen().visual_bell_count(), 1);
+ assert_eq!(parser.screen().visual_bell_count(), 1);
+ parser.process(b"\x1bg");
+ assert_eq!(parser.screen().visual_bell_count(), 2);
+ parser.process(b"\x1bg\x1bg\x1bg");
+ assert_eq!(parser.screen().visual_bell_count(), 5);
}
#[test]