summaryrefslogtreecommitdiffstats
path: root/vendor/tabled/tests/core/compact_table.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/tabled/tests/core/compact_table.rs')
-rw-r--r--vendor/tabled/tests/core/compact_table.rs119
1 files changed, 119 insertions, 0 deletions
diff --git a/vendor/tabled/tests/core/compact_table.rs b/vendor/tabled/tests/core/compact_table.rs
new file mode 100644
index 000000000..1bdaad998
--- /dev/null
+++ b/vendor/tabled/tests/core/compact_table.rs
@@ -0,0 +1,119 @@
+#![cfg(feature = "std")]
+
+use tabled::{
+ grid::{
+ config::CompactConfig, dimension::CompactGridDimension, dimension::Estimate,
+ records::IterRecords,
+ },
+ tables::CompactTable,
+};
+
+use crate::matrix::Matrix;
+use testing_table::test_table;
+
+test_table!(
+ compact_new,
+ CompactTable::new(Matrix::new(3, 3).to_vec()).to_string(),
+ ""
+);
+
+test_table!(
+ compact_with_dimension,
+ {
+ let data = Matrix::with_no_frame(3, 3).to_vec();
+ let mut dims = CompactGridDimension::default();
+ dims.estimate(IterRecords::new(&data, 3, None), &CompactConfig::default());
+ CompactTable::with_dimension(data, dims).columns(3).to_string()
+ },
+ "+-----+-----+-----+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|-----+-----+-----|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|-----+-----+-----|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+-----+-----+-----+"
+);
+
+test_table!(
+ compact_width,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec().to_vec()).columns(3).width(5).to_string(),
+ "+-----+-----+-----+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|-----+-----+-----|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|-----+-----+-----|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+-----+-----+-----+"
+);
+
+test_table!(
+ compact_width_pad_not_included,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec()).columns(3).width(3).to_string(),
+ "+---+---+---+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|---+---+---|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|---+---+---|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+---+---+---+"
+);
+
+test_table!(
+ compact_width_bigger,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec()).columns(3).width(10).to_string(),
+ "+----------+----------+----------+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|----------+----------+----------|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|----------+----------+----------|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+----------+----------+----------+"
+);
+
+test_table!(
+ compact_columns,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec()).columns(3).to_string(),
+ "+--+--+--+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|--+--+--|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|--+--+--|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+--+--+--+"
+);
+
+test_table!(
+ compact_cols_zero,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec())
+ .columns(0)
+ .to_string(),
+ ""
+);
+
+test_table!(
+ compact_cols_less,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec())
+ .columns(1)
+ .to_string(),
+ "+--+"
+ "| 0-0 |"
+ "|--|"
+ "| 1-0 |"
+ "|--|"
+ "| 2-0 |"
+ "+--+"
+);
+
+test_table!(
+ compact_cols_more,
+ CompactTable::new(Matrix::with_no_frame(3, 3).to_vec())
+ .columns(5)
+ .to_string(),
+ "+--+--+--+--+--+"
+ "| 0-0 | 0-1 | 0-2 |"
+ "|--+--+--+--+--|"
+ "| 1-0 | 1-1 | 1-2 |"
+ "|--+--+--+--+--|"
+ "| 2-0 | 2-1 | 2-2 |"
+ "+--+--+--+--+--+"
+);