* default layouts won't be installed by anymore, instead they will be directly loaded * `layout-dir` is now a subdirectory of the `config-dir` by default, instead of the `data-dir` POSSIBLE BREAKING CHANGE: In case of having custom layouts in the previous `layout-dir` one can switch either the layouts to the new dir, or set the `layout-dir` to be the current `layout-dir` * it is possible to change the location of the `layout-dir`: - `zellij options --layout-dir [LAYOUR_DIR]` - `layout_dir: [LAYOUT_DIR]`
67 lines
2.4 KiB
Rust
67 lines
2.4 KiB
Rust
use insta::assert_snapshot;
|
|
use std::path::PathBuf;
|
|
|
|
use crate::tests::fakes::FakeInputOutput;
|
|
use crate::tests::start;
|
|
use crate::tests::utils::commands::QUIT;
|
|
use crate::tests::utils::get_output_frame_snapshots;
|
|
use crate::CliArgs;
|
|
use zellij_utils::input::config::Config;
|
|
use zellij_utils::pane_size::PositionAndSize;
|
|
|
|
fn get_fake_os_input(fake_win_size: &PositionAndSize) -> FakeInputOutput {
|
|
FakeInputOutput::new(fake_win_size.clone())
|
|
}
|
|
|
|
#[test]
|
|
pub fn accepts_basic_layout() {
|
|
let fake_win_size = PositionAndSize {
|
|
cols: 121,
|
|
rows: 20,
|
|
x: 0,
|
|
y: 0,
|
|
..Default::default()
|
|
};
|
|
let mut fake_input_output = get_fake_os_input(&fake_win_size);
|
|
fake_input_output.add_terminal_input(&[&QUIT]);
|
|
let mut opts = CliArgs::default();
|
|
opts.layout_path = Some(PathBuf::from(
|
|
"src/tests/fixtures/layouts/three-panes-with-nesting.yaml",
|
|
));
|
|
|
|
let layout = zellij_utils::input::layout::Layout::from_path_or_default(
|
|
None,
|
|
opts.layout_path.as_ref(),
|
|
Some(std::path::Path::new("unused").into()),
|
|
);
|
|
|
|
start(
|
|
Box::new(fake_input_output.clone()),
|
|
opts,
|
|
Box::new(fake_input_output.clone()),
|
|
Config::default(),
|
|
layout,
|
|
);
|
|
let output_frames = fake_input_output
|
|
.stdout_writer
|
|
.output_frames
|
|
.lock()
|
|
.unwrap();
|
|
let snapshots = get_output_frame_snapshots(&output_frames, &fake_win_size);
|
|
|
|
let snapshot_count = snapshots.len();
|
|
let first_snapshot = snapshots.get(0).unwrap();
|
|
let next_to_last_snapshot = snapshots.get(snapshot_count - 2).unwrap();
|
|
let last_snapshot = snapshots.last().unwrap();
|
|
// here we only test the first, next to last and last snapshot because there's a race condition
|
|
// with the other snapshots. Namely all the terminals are created asynchronously and read in an
|
|
// async task, so we have no way to guarantee the order in which their bytes will be read, and
|
|
// it doesn't really matter in this context. We just want to see that the layout is initially
|
|
// created properly and that in the end it's populated properly with its content
|
|
//
|
|
// we read the next to last as well as the last, because the last includes the "Bye from
|
|
// Zellij" message, and we also want to make sure things are fine before that
|
|
assert_snapshot!(first_snapshot);
|
|
assert_snapshot!(next_to_last_snapshot);
|
|
assert_snapshot!(last_snapshot);
|
|
}
|