aboutsummaryrefslogtreecommitdiff
path: root/src/grid/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/grid/tests.rs')
-rw-r--r--src/grid/tests.rs292
1 files changed, 0 insertions, 292 deletions
diff --git a/src/grid/tests.rs b/src/grid/tests.rs
deleted file mode 100644
index fc41fdc6..00000000
--- a/src/grid/tests.rs
+++ /dev/null
@@ -1,292 +0,0 @@
-// Copyright 2016 Joe Wilm, The Alacritty Project Contributors
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Tests for the Gird
-
-use super::{BidirectionalIterator, Grid};
-use crate::grid::GridCell;
-use crate::index::{Column, Line, Point};
-use crate::term::cell::{Cell, Flags};
-
-impl GridCell for usize {
- fn is_empty(&self) -> bool {
- false
- }
-
- fn is_wrap(&self) -> bool {
- false
- }
-
- fn set_wrap(&mut self, _wrap: bool) {}
-}
-
-// Scroll up moves lines upwards
-#[test]
-fn scroll_up() {
- let mut grid = Grid::new(Line(10), Column(1), 0, 0);
- for i in 0..10 {
- grid[Line(i)][Column(0)] = i;
- }
-
- grid.scroll_up(&(Line(0)..Line(10)), Line(2), &0);
-
- assert_eq!(grid[Line(0)][Column(0)], 2);
- assert_eq!(grid[Line(0)].occ, 1);
- assert_eq!(grid[Line(1)][Column(0)], 3);
- assert_eq!(grid[Line(1)].occ, 1);
- assert_eq!(grid[Line(2)][Column(0)], 4);
- assert_eq!(grid[Line(2)].occ, 1);
- assert_eq!(grid[Line(3)][Column(0)], 5);
- assert_eq!(grid[Line(3)].occ, 1);
- assert_eq!(grid[Line(4)][Column(0)], 6);
- assert_eq!(grid[Line(4)].occ, 1);
- assert_eq!(grid[Line(5)][Column(0)], 7);
- assert_eq!(grid[Line(5)].occ, 1);
- assert_eq!(grid[Line(6)][Column(0)], 8);
- assert_eq!(grid[Line(6)].occ, 1);
- assert_eq!(grid[Line(7)][Column(0)], 9);
- assert_eq!(grid[Line(7)].occ, 1);
- assert_eq!(grid[Line(8)][Column(0)], 0); // was 0
- assert_eq!(grid[Line(8)].occ, 0);
- assert_eq!(grid[Line(9)][Column(0)], 0); // was 1
- assert_eq!(grid[Line(9)].occ, 0);
-}
-
-// Scroll down moves lines downwards
-#[test]
-fn scroll_down() {
- let mut grid = Grid::new(Line(10), Column(1), 0, 0);
- for i in 0..10 {
- grid[Line(i)][Column(0)] = i;
- }
-
- grid.scroll_down(&(Line(0)..Line(10)), Line(2), &0);
-
- assert_eq!(grid[Line(0)][Column(0)], 0); // was 8
- assert_eq!(grid[Line(0)].occ, 0);
- assert_eq!(grid[Line(1)][Column(0)], 0); // was 9
- assert_eq!(grid[Line(1)].occ, 0);
- assert_eq!(grid[Line(2)][Column(0)], 0);
- assert_eq!(grid[Line(2)].occ, 1);
- assert_eq!(grid[Line(3)][Column(0)], 1);
- assert_eq!(grid[Line(3)].occ, 1);
- assert_eq!(grid[Line(4)][Column(0)], 2);
- assert_eq!(grid[Line(4)].occ, 1);
- assert_eq!(grid[Line(5)][Column(0)], 3);
- assert_eq!(grid[Line(5)].occ, 1);
- assert_eq!(grid[Line(6)][Column(0)], 4);
- assert_eq!(grid[Line(6)].occ, 1);
- assert_eq!(grid[Line(7)][Column(0)], 5);
- assert_eq!(grid[Line(7)].occ, 1);
- assert_eq!(grid[Line(8)][Column(0)], 6);
- assert_eq!(grid[Line(8)].occ, 1);
- assert_eq!(grid[Line(9)][Column(0)], 7);
- assert_eq!(grid[Line(9)].occ, 1);
-}
-
-// Test that GridIterator works
-#[test]
-fn test_iter() {
- let mut grid = Grid::new(Line(5), Column(5), 0, 0);
- for i in 0..5 {
- for j in 0..5 {
- grid[Line(i)][Column(j)] = i * 5 + j;
- }
- }
-
- let mut iter = grid.iter_from(Point { line: 4, col: Column(0) });
-
- assert_eq!(None, iter.prev());
- assert_eq!(Some(&1), iter.next());
- assert_eq!(Column(1), iter.cur.col);
- assert_eq!(4, iter.cur.line);
-
- assert_eq!(Some(&2), iter.next());
- assert_eq!(Some(&3), iter.next());
- assert_eq!(Some(&4), iter.next());
-
- // test linewrapping
- assert_eq!(Some(&5), iter.next());
- assert_eq!(Column(0), iter.cur.col);
- assert_eq!(3, iter.cur.line);
-
- assert_eq!(Some(&4), iter.prev());
- assert_eq!(Column(4), iter.cur.col);
- assert_eq!(4, iter.cur.line);
-
- // test that iter ends at end of grid
- let mut final_iter = grid.iter_from(Point { line: 0, col: Column(4) });
- assert_eq!(None, final_iter.next());
- assert_eq!(Some(&23), final_iter.prev());
-}
-
-#[test]
-fn shrink_reflow() {
- let mut grid = Grid::new(Line(1), Column(5), 2, cell('x'));
- grid[Line(0)][Column(0)] = cell('1');
- grid[Line(0)][Column(1)] = cell('2');
- grid[Line(0)][Column(2)] = cell('3');
- grid[Line(0)][Column(3)] = cell('4');
- grid[Line(0)][Column(4)] = cell('5');
-
- grid.resize(Line(1), Column(2), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 3);
-
- assert_eq!(grid[2].len(), 2);
- assert_eq!(grid[2][Column(0)], cell('1'));
- assert_eq!(grid[2][Column(1)], wrap_cell('2'));
-
- assert_eq!(grid[1].len(), 2);
- assert_eq!(grid[1][Column(0)], cell('3'));
- assert_eq!(grid[1][Column(1)], wrap_cell('4'));
-
- assert_eq!(grid[0].len(), 2);
- assert_eq!(grid[0][Column(0)], cell('5'));
- assert_eq!(grid[0][Column(1)], Cell::default());
-}
-
-#[test]
-fn shrink_reflow_twice() {
- let mut grid = Grid::new(Line(1), Column(5), 2, cell('x'));
- grid[Line(0)][Column(0)] = cell('1');
- grid[Line(0)][Column(1)] = cell('2');
- grid[Line(0)][Column(2)] = cell('3');
- grid[Line(0)][Column(3)] = cell('4');
- grid[Line(0)][Column(4)] = cell('5');
-
- grid.resize(Line(1), Column(4), &mut Point::new(Line(0), Column(0)), &Cell::default());
- grid.resize(Line(1), Column(2), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 3);
-
- assert_eq!(grid[2].len(), 2);
- assert_eq!(grid[2][Column(0)], cell('1'));
- assert_eq!(grid[2][Column(1)], wrap_cell('2'));
-
- assert_eq!(grid[1].len(), 2);
- assert_eq!(grid[1][Column(0)], cell('3'));
- assert_eq!(grid[1][Column(1)], wrap_cell('4'));
-
- assert_eq!(grid[0].len(), 2);
- assert_eq!(grid[0][Column(0)], cell('5'));
- assert_eq!(grid[0][Column(1)], Cell::default());
-}
-
-#[test]
-fn shrink_reflow_empty_cell_inside_line() {
- let mut grid = Grid::new(Line(1), Column(5), 3, cell('x'));
- grid[Line(0)][Column(0)] = cell('1');
- grid[Line(0)][Column(1)] = Cell::default();
- grid[Line(0)][Column(2)] = cell('3');
- grid[Line(0)][Column(3)] = cell('4');
- grid[Line(0)][Column(4)] = Cell::default();
-
- grid.resize(Line(1), Column(2), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 2);
-
- assert_eq!(grid[1].len(), 2);
- assert_eq!(grid[1][Column(0)], cell('1'));
- assert_eq!(grid[1][Column(1)], wrap_cell(' '));
-
- assert_eq!(grid[0].len(), 2);
- assert_eq!(grid[0][Column(0)], cell('3'));
- assert_eq!(grid[0][Column(1)], cell('4'));
-
- grid.resize(Line(1), Column(1), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 4);
-
- assert_eq!(grid[3].len(), 1);
- assert_eq!(grid[3][Column(0)], wrap_cell('1'));
-
- assert_eq!(grid[2].len(), 1);
- assert_eq!(grid[2][Column(0)], wrap_cell(' '));
-
- assert_eq!(grid[1].len(), 1);
- assert_eq!(grid[1][Column(0)], wrap_cell('3'));
-
- assert_eq!(grid[0].len(), 1);
- assert_eq!(grid[0][Column(0)], cell('4'));
-}
-
-#[test]
-fn grow_reflow() {
- let mut grid = Grid::new(Line(2), Column(2), 0, cell('x'));
- grid[Line(0)][Column(0)] = cell('1');
- grid[Line(0)][Column(1)] = wrap_cell('2');
- grid[Line(1)][Column(0)] = cell('3');
- grid[Line(1)][Column(1)] = Cell::default();
-
- grid.resize(Line(2), Column(3), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 2);
-
- assert_eq!(grid[1].len(), 3);
- assert_eq!(grid[1][Column(0)], cell('1'));
- assert_eq!(grid[1][Column(1)], cell('2'));
- assert_eq!(grid[1][Column(2)], cell('3'));
-
- // Make sure rest of grid is empty
- assert_eq!(grid[0].len(), 3);
- assert_eq!(grid[0][Column(0)], Cell::default());
- assert_eq!(grid[0][Column(1)], Cell::default());
- assert_eq!(grid[0][Column(2)], Cell::default());
-}
-
-#[test]
-fn grow_reflow_multiline() {
- let mut grid = Grid::new(Line(3), Column(2), 0, cell('x'));
- grid[Line(0)][Column(0)] = cell('1');
- grid[Line(0)][Column(1)] = wrap_cell('2');
- grid[Line(1)][Column(0)] = cell('3');
- grid[Line(1)][Column(1)] = wrap_cell('4');
- grid[Line(2)][Column(0)] = cell('5');
- grid[Line(2)][Column(1)] = cell('6');
-
- grid.resize(Line(3), Column(6), &mut Point::new(Line(0), Column(0)), &Cell::default());
-
- assert_eq!(grid.len(), 3);
-
- assert_eq!(grid[2].len(), 6);
- assert_eq!(grid[2][Column(0)], cell('1'));
- assert_eq!(grid[2][Column(1)], cell('2'));
- assert_eq!(grid[2][Column(2)], cell('3'));
- assert_eq!(grid[2][Column(3)], cell('4'));
- assert_eq!(grid[2][Column(4)], cell('5'));
- assert_eq!(grid[2][Column(5)], cell('6'));
-
- // Make sure rest of grid is empty
- // https://github.com/rust-lang/rust-clippy/issues/3788
- #[allow(clippy::needless_range_loop)]
- for r in 0..2 {
- assert_eq!(grid[r].len(), 6);
- for c in 0..6 {
- assert_eq!(grid[r][Column(c)], Cell::default());
- }
- }
-}
-
-fn cell(c: char) -> Cell {
- let mut cell = Cell::default();
- cell.c = c;
- cell
-}
-
-fn wrap_cell(c: char) -> Cell {
- let mut cell = cell(c);
- cell.flags.insert(Flags::WRAPLINE);
- cell
-}