summaryrefslogtreecommitdiffstats
path: root/src/interactive/app_test/journeys_readonly.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 14:07:06 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-07-06 14:07:06 +0800
commit0e760d733108a7e3a2153b4cee03f33ef13e5cd4 (patch)
tree6052f251bcf172bccc582d441a2d6999d939fd80 /src/interactive/app_test/journeys_readonly.rs
parent40e9eb1d0e548dac3ec896d293291d1e439ba976 (diff)
Completely rid ourselves of Termion to make backend selection possible
Diffstat (limited to 'src/interactive/app_test/journeys_readonly.rs')
-rw-r--r--src/interactive/app_test/journeys_readonly.rs35
1 files changed, 17 insertions, 18 deletions
diff --git a/src/interactive/app_test/journeys_readonly.rs b/src/interactive/app_test/journeys_readonly.rs
index f5337ca..28d94e6 100644
--- a/src/interactive/app_test/journeys_readonly.rs
+++ b/src/interactive/app_test/journeys_readonly.rs
@@ -1,6 +1,6 @@
use crate::interactive::{
app_test::utils::{
- adapt, fixture_str, index_by_name, initialized_app_and_terminal_from_fixture,
+ fixture_str, index_by_name, initialized_app_and_terminal_from_fixture, into_keys,
node_by_index, node_by_name,
},
app_test::FIXTURE_PATH,
@@ -9,7 +9,6 @@ use crate::interactive::{
use anyhow::Result;
use pretty_assertions::assert_eq;
use std::ffi::OsString;
-use termion::input::TermRead;
#[test]
fn simple_user_journey_read_only() -> Result<()> {
@@ -54,7 +53,7 @@ fn simple_user_journey_read_only() -> Result<()> {
// SORTING
{
// when hitting the S key
- app.process_events(&mut terminal, adapt(b"s".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"s".iter()))?;
assert_eq!(
app.state.sorting,
SortMode::SizeAscending,
@@ -66,7 +65,7 @@ fn simple_user_journey_read_only() -> Result<()> {
"it recomputes the cached entries"
);
// when hitting the S key again
- app.process_events(&mut terminal, adapt(b"s".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"s".iter()))?;
assert_eq!(
app.state.sorting,
SortMode::SizeDescending,
@@ -82,35 +81,35 @@ fn simple_user_journey_read_only() -> Result<()> {
// Entry-Navigation
{
// when hitting the j key
- app.process_events(&mut terminal, adapt(b"j".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"j".iter()))?;
assert_eq!(
node_by_name(&app, fixture_str(long_root)),
node_by_index(&app, *app.state.selected.as_ref().unwrap()),
"it moves the cursor down and selects the next entry based on the current sort mode"
);
// when hitting it while there is nowhere to go
- app.process_events(&mut terminal, adapt(b"j".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"j".iter()))?;
assert_eq!(
node_by_name(&app, fixture_str(long_root)),
node_by_index(&app, *app.state.selected.as_ref().unwrap()),
"it stays at the previous position"
);
// when hitting the k key
- app.process_events(&mut terminal, adapt(b"k".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"k".iter()))?;
assert_eq!(
node_by_name(&app, fixture_str(short_root)),
node_by_index(&app, *app.state.selected.as_ref().unwrap()),
"it moves the cursor up and selects the next entry based on the current sort mode"
);
// when hitting the k key again
- app.process_events(&mut terminal, adapt(b"k".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"k".iter()))?;
assert_eq!(
node_by_name(&app, fixture_str(short_root)),
node_by_index(&app, *app.state.selected.as_ref().unwrap()),
"it stays at the current cursor position as there is nowhere to go"
);
// when hitting the o key with a directory selected
- app.process_events(&mut terminal, adapt(b"o".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"o".iter()))?;
{
let new_root_idx = index_by_name(&app, fixture_str(short_root));
assert_eq!(
@@ -124,7 +123,7 @@ fn simple_user_journey_read_only() -> Result<()> {
);
// when hitting the u key while inside a sub-directory
- app.process_events(&mut terminal, adapt(b"u".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"u".iter()))?;
{
assert_eq!(
app.traversal.root_index, app.state.root,
@@ -139,7 +138,7 @@ fn simple_user_journey_read_only() -> Result<()> {
}
// when hitting the u key while inside of the root directory
// We are moving the cursor down just to have a non-default selection
- app.process_events(&mut terminal, adapt(b"ju".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"ju".iter()))?;
{
assert_eq!(
app.traversal.root_index, app.state.root,
@@ -156,9 +155,9 @@ fn simple_user_journey_read_only() -> Result<()> {
// Deletion
{
// when hitting the 'd' key (also move cursor back to start)
- app.process_events(&mut terminal, adapt(b"k".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"k".iter()))?;
let previously_selected_index = *app.state.selected.as_ref().unwrap();
- app.process_events(&mut terminal, adapt(b"d".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"d".iter()))?;
{
assert_eq!(
Some(1),
@@ -180,7 +179,7 @@ fn simple_user_journey_read_only() -> Result<()> {
// when hitting the 'd' key again
{
- app.process_events(&mut terminal, adapt(b"d".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"d".iter()))?;
assert_eq!(
Some(2),
@@ -197,7 +196,7 @@ fn simple_user_journey_read_only() -> Result<()> {
// when hitting the 'd' key once again
{
- app.process_events(&mut terminal, adapt(b"d".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"d".iter()))?;
assert_eq!(
Some(1),
@@ -214,7 +213,7 @@ fn simple_user_journey_read_only() -> Result<()> {
}
// when hitting the spacebar (after moving up to the first entry)
{
- app.process_events(&mut terminal, adapt(b"k ".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"k ".iter()))?;
assert_eq!(
None,
@@ -233,7 +232,7 @@ fn simple_user_journey_read_only() -> Result<()> {
// Marking
{
// select something
- app.process_events(&mut terminal, adapt(b" j ".keys()))?;
+ app.process_events(&mut terminal, into_keys(b" j ".iter()))?;
assert_eq!(
Some(false),
app.window.mark_pane.as_ref().map(|p| p.has_focus()),
@@ -247,7 +246,7 @@ fn simple_user_journey_read_only() -> Result<()> {
);
// when advancing the selection to the marker pane
- app.process_events(&mut terminal, adapt(b"\t".keys()))?;
+ app.process_events(&mut terminal, into_keys(b"\t".iter()))?;
{
assert_eq!(
Some(true),