]> git.scottworley.com Git - tablify/blame - src/lib.rs
Verify double-line-skip behavior without spacer rows
[tablify] / src / lib.rs
CommitLineData
88a08162
SW
1use std::borrow::ToOwned;
2use std::collections::HashMap;
7067975b 3use std::fmt::Write;
9dfa98b7 4use std::io::BufRead;
75bb888a
SW
5use std::iter::Iterator;
6
31af9aac
SW
7pub struct Config {
8 pub column_threshold: usize,
9}
28cf4fa2 10
5ffe8e3a 11const HEADER: &str = r#"<!DOCTYPE html>
cc2378d5
SW
12<html>
13<head>
5ffe8e3a
SW
14 <meta charset="utf-8">
15 <meta name="viewport" content="width=device-width, initial-scale=1">
cc2378d5 16 <style>
b8b365ce 17 td { text-align: center; }
cc2378d5
SW
18 /* h/t https://wabain.github.io/2019/10/13/css-rotated-table-header.html */
19 th, td { white-space: nowrap; }
20 th { text-align: left; font-weight: normal; }
21 table { border-collapse: collapse }
3bc643e9 22 tr.key > th { height: 10em; vertical-align: bottom; line-height: 1 }
cc2378d5
SW
23 tr.key > th > div { width: 1em; }
24 tr.key > th > div > div { width: 5em; transform-origin: bottom left; transform: translateX(1em) rotate(-65deg) }
25 td { border: thin solid gray; }
36bc3a39 26 td.leftover { text-align: left; border: none; padding-left: .4em; }
1dda21e6 27 td.yes { border: thin solid gray; background-color: #ddd; }
cc2378d5
SW
28 /* h/t https://stackoverflow.com/questions/5687035/css-bolding-some-text-without-changing-its-containers-size/46452396#46452396 */
29 .highlight { text-shadow: -0.06ex 0 black, 0.06ex 0 black; }
cc2378d5
SW
30 </style>
31 <script>
5ffe8e3a
SW
32 function highlight(id) { const e = document.getElementById(id); if (e) { e.classList.add( "highlight"); } }
33 function clear_highlight(id) { const e = document.getElementById(id); if (e) { e.classList.remove("highlight"); } }
cc2378d5
SW
34 function h2(a, b) { highlight(a); highlight(b); }
35 function ch2(a, b) { clear_highlight(a); clear_highlight(b); }
36 </script>
37</head>
38<body>
39 <table>
76638ea1 40 <tbody>
5ffe8e3a 41"#;
cc2378d5
SW
42const FOOTER: &str = " </tbody>
43 </table>
44</body>
45</html>";
46
70436f23
SW
47#[derive(PartialEq, Eq, Debug)]
48pub struct HTML(String);
49impl HTML {
50 fn escape(value: &str) -> HTML {
51 let mut escaped: String = String::new();
52 for c in value.chars() {
53 match c {
54 '>' => escaped.push_str("&gt;"),
55 '<' => escaped.push_str("&lt;"),
56 '\'' => escaped.push_str("&#39;"),
57 '"' => escaped.push_str("&quot;"),
58 '&' => escaped.push_str("&amp;"),
59 ok_c => escaped.push(ok_c),
60 }
61 }
62 HTML(escaped)
63 }
64}
65impl From<&str> for HTML {
66 fn from(value: &str) -> HTML {
67 HTML(String::from(value))
68 }
69}
70impl FromIterator<HTML> for HTML {
71 fn from_iter<T>(iter: T) -> HTML
72 where
73 T: IntoIterator<Item = HTML>,
74 {
75 HTML(iter.into_iter().map(|html| html.0).collect::<String>())
76 }
77}
78impl std::fmt::Display for HTML {
79 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
80 write!(f, "{}", self.0)
81 }
82}
83
88a08162
SW
84#[derive(Debug, PartialEq, Eq)]
85enum InputLine<'a> {
86 Blank,
87 RowHeader(&'a str),
88 Entry(&'a str, Option<&'a str>),
e8657dff 89}
88a08162
SW
90impl<'a> From<&'a str> for InputLine<'a> {
91 fn from(value: &'a str) -> InputLine<'a> {
92 let trimmed = value.trim_end();
93 if trimmed.is_empty() {
94 InputLine::Blank
95 } else if !trimmed.starts_with(' ') {
96 InputLine::RowHeader(value.trim())
97 } else {
98 match value.split_once(':') {
99 None => InputLine::Entry(value.trim(), None),
100 Some((col, instance)) => InputLine::Entry(col.trim(), Some(instance.trim())),
101 }
e8657dff
SW
102 }
103 }
104}
14e9852b 105
75bb888a 106#[derive(Debug, PartialEq, Eq)]
88a08162
SW
107struct Row {
108 label: String,
109 entries: HashMap<String, Vec<Option<String>>>,
75bb888a
SW
110}
111
06a6a5ca
SW
112#[derive(Debug, PartialEq, Eq)]
113enum Rowlike {
114 Row(Row),
115 Spacer,
116}
117
88a08162 118struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
8110b492 119 input: std::iter::Enumerate<Input>,
88a08162 120 row: Option<Row>,
201b9ef3 121}
88a08162 122impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
201b9ef3 123 fn new(input: Input) -> Self {
8110b492
SW
124 Self {
125 input: input.enumerate(),
126 row: None,
127 }
201b9ef3
SW
128 }
129}
88a08162 130impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<Input> {
06a6a5ca 131 type Item = Result<Rowlike, std::io::Error>;
201b9ef3
SW
132 fn next(&mut self) -> Option<Self::Item> {
133 loop {
8bf0d5b1 134 match self.input.next() {
06a6a5ca 135 None => return Ok(std::mem::take(&mut self.row).map(Rowlike::Row)).transpose(),
8110b492 136 Some((_, Err(e))) => return Some(Err(e)),
88a08162
SW
137 Some((n, Ok(line))) => match InputLine::from(line.as_ref()) {
138 InputLine::Blank if self.row.is_some() => {
06a6a5ca 139 return Ok(std::mem::take(&mut self.row).map(Rowlike::Row)).transpose()
8110b492 140 }
88a08162
SW
141 InputLine::Blank => {}
142 InputLine::Entry(col, instance) => match &mut self.row {
143 None => {
144 return Some(Err(std::io::Error::other(format!(
145 "{}: Entry with no header",
146 n + 1
147 ))))
148 }
149 Some(ref mut row) => {
150 row.entries
151 .entry(col.to_owned())
152 .and_modify(|is| is.push(instance.map(ToOwned::to_owned)))
153 .or_insert_with(|| vec![instance.map(ToOwned::to_owned)]);
154 }
155 },
156 InputLine::RowHeader(row) => {
157 let prev = std::mem::take(&mut self.row);
158 self.row = Some(Row {
159 label: row.to_owned(),
160 entries: HashMap::new(),
161 });
162 if prev.is_some() {
06a6a5ca 163 return Ok(prev.map(Rowlike::Row)).transpose();
88a08162 164 }
201b9ef3 165 }
88a08162 166 },
201b9ef3
SW
167 }
168 }
169 }
170}
171
06a6a5ca 172fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<Rowlike, std::io::Error>> {
201b9ef3 173 Reader::new(std::io::BufReader::new(input).lines())
75bb888a
SW
174}
175
06a6a5ca
SW
176fn column_counts(rows: &[Rowlike]) -> Vec<(usize, String)> {
177 let empty = HashMap::new();
58b5f36d
SW
178 let mut counts: Vec<_> = rows
179 .iter()
06a6a5ca
SW
180 .flat_map(|rl| match rl {
181 Rowlike::Row(r) => r.entries.keys(),
182 Rowlike::Spacer => empty.keys(),
183 })
b8907770 184 .fold(HashMap::new(), |mut cs, col| {
88a08162 185 cs.entry(col.to_owned())
58b5f36d 186 .and_modify(|n| *n += 1)
f272e502 187 .or_insert(1);
58b5f36d 188 cs
f272e502 189 })
58b5f36d
SW
190 .into_iter()
191 .map(|(col, n)| (n, col))
192 .collect();
38d1167a 193 counts.sort_unstable_by(|(an, acol), (bn, bcol)| bn.cmp(an).then(acol.cmp(bcol)));
58b5f36d 194 counts
f272e502 195}
06a6a5ca 196fn column_order(config: &Config, rows: &[Rowlike]) -> Vec<String> {
d22b2e05
SW
197 column_counts(rows)
198 .into_iter()
31af9aac 199 .filter_map(|(n, col)| (n >= config.column_threshold).then_some(col))
d22b2e05
SW
200 .collect()
201}
f272e502 202
58c0a717 203fn render_one_instance(instance: &Option<String>) -> HTML {
88a08162 204 match instance {
70436f23
SW
205 None => HTML::from("✓"),
206 Some(instance) => HTML::escape(instance.as_ref()),
de408c29
SW
207 }
208}
209
f915bc90
SW
210fn render_instances(instances: &[Option<String>]) -> HTML {
211 let all_empty = instances.iter().all(Option::is_none);
212 if all_empty && instances.len() == 1 {
70436f23 213 HTML::from("")
de408c29 214 } else if all_empty {
f915bc90 215 HTML(format!("{}", instances.len()))
de408c29 216 } else {
70436f23 217 HTML(
88a08162 218 instances
70436f23 219 .iter()
58c0a717 220 .map(render_one_instance)
70436f23
SW
221 .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
222 .collect::<Vec<_>>()
223 .join(" "),
224 )
f915bc90
SW
225 }
226}
227
228fn render_cell(col: &str, row: &mut Row) -> HTML {
229 let row_label = HTML::escape(row.label.as_ref());
230 let col_label = HTML::escape(col);
231 let instances: Option<&Vec<Option<String>>> = row.entries.get(col);
232 let class = HTML::from(if instances.is_none() { "" } else { "yes" });
233 let contents = match instances {
234 None => HTML::from(""),
235 Some(is) => render_instances(is),
de408c29 236 };
d9bfcf4d 237 row.entries.remove(col);
5ffe8e3a
SW
238 HTML(format!(
239 r#"<td class="{class}" onmouseover="h2('{row_label}','{col_label}')" onmouseout="ch2('{row_label}','{col_label}')">{contents}</td>"#
240 ))
de408c29
SW
241}
242
9a626020
SW
243fn render_leftover(notcol: &str, instances: &[Option<String>]) -> HTML {
244 let label = HTML::escape(notcol);
245 let rest = render_instances(instances);
246 if rest == HTML::from("") {
247 HTML(format!("{label}"))
248 } else {
249 HTML(format!("{label}: {rest}"))
250 }
251}
252
253fn render_all_leftovers(row: &Row) -> HTML {
254 let mut order: Vec<_> = row.entries.keys().collect();
255 order.sort_unstable();
256 HTML(
257 order
258 .into_iter()
259 .map(|notcol| render_leftover(notcol, row.entries.get(notcol).expect("Key vanished?!")))
260 .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
261 .collect::<Vec<_>>()
262 .join(", "),
263 )
264}
265
06a6a5ca
SW
266fn render_row(columns: &[String], rowlike: &mut Rowlike) -> HTML {
267 match rowlike {
268 Rowlike::Spacer => HTML::from("<tr><td>&nbsp;</td></tr>"),
269 Rowlike::Row(row) => {
270 let row_label = HTML::escape(row.label.as_ref());
271 let cells = columns
272 .iter()
273 .map(|col| render_cell(col, row))
274 .collect::<HTML>();
275 let leftovers = render_all_leftovers(row);
276 HTML(format!(
277 "<tr><th id=\"{row_label}\">{row_label}</th>{cells}<td class=\"leftover\" onmouseover=\"highlight('{row_label}')\" onmouseout=\"clear_highlight('{row_label}')\">{leftovers}</td></tr>\n"
278 ))
279 }
280 }
de408c29
SW
281}
282
70436f23
SW
283fn render_column_headers(columns: &[String]) -> HTML {
284 HTML(
5ffe8e3a 285 String::from(r#"<tr class="key"><th></th>"#)
70436f23
SW
286 + &columns.iter().fold(String::new(), |mut acc, col| {
287 let col_header = HTML::escape(col.as_ref());
288 write!(
289 &mut acc,
5ffe8e3a 290 r#"<th id="{col_header}"><div><div>{col_header}</div></div></th>"#
70436f23
SW
291 )
292 .unwrap();
293 acc
294 })
295 + "</tr>\n",
296 )
76638ea1
SW
297}
298
4b99fb70
SW
299/// # Errors
300///
301/// Will return `Err` if
302/// * there's an i/o error while reading `input`
303/// * the log has invalid syntax:
304/// * an indented line with no preceding non-indented line
28cf4fa2 305pub fn tablify(config: &Config, input: impl std::io::Read) -> Result<HTML, std::io::Error> {
4b99fb70 306 let rows = read_rows(input).collect::<Result<Vec<_>, _>>()?;
31af9aac 307 let columns = column_order(config, &rows);
70436f23
SW
308 Ok(HTML(format!(
309 "{HEADER}{}{}{FOOTER}",
310 render_column_headers(&columns),
311 rows.into_iter()
d9bfcf4d 312 .map(|mut r| render_row(&columns, &mut r))
70436f23
SW
313 .collect::<HTML>()
314 )))
ece97615 315}
75bb888a
SW
316
317#[cfg(test)]
318mod tests {
319 use super::*;
320
b8907770 321 #[test]
88a08162
SW
322 fn test_parse_line() {
323 assert_eq!(InputLine::from(""), InputLine::Blank);
324 assert_eq!(InputLine::from(" "), InputLine::Blank);
325 assert_eq!(InputLine::from("foo"), InputLine::RowHeader("foo"));
326 assert_eq!(InputLine::from("foo "), InputLine::RowHeader("foo"));
327 assert_eq!(InputLine::from(" foo"), InputLine::Entry("foo", None));
b8907770 328 assert_eq!(
88a08162
SW
329 InputLine::from(" foo:bar"),
330 InputLine::Entry("foo", Some("bar"))
b8907770
SW
331 );
332 assert_eq!(
88a08162
SW
333 InputLine::from(" foo: bar"),
334 InputLine::Entry("foo", Some("bar"))
b8907770 335 );
0d999bc3 336 assert_eq!(
88a08162
SW
337 InputLine::from(" foo: bar "),
338 InputLine::Entry("foo", Some("bar"))
339 );
340 assert_eq!(
341 InputLine::from(" foo: bar "),
342 InputLine::Entry("foo", Some("bar"))
343 );
344 assert_eq!(
345 InputLine::from(" foo : bar "),
346 InputLine::Entry("foo", Some("bar"))
0d999bc3 347 );
b8907770
SW
348 }
349
75bb888a
SW
350 #[test]
351 fn test_read_rows() {
352 assert_eq!(
201b9ef3 353 read_rows(&b"foo"[..]).flatten().collect::<Vec<_>>(),
06a6a5ca 354 vec![Rowlike::Row(Row {
88a08162
SW
355 label: "foo".to_owned(),
356 entries: HashMap::new(),
06a6a5ca 357 })]
75bb888a 358 );
9dfa98b7 359 assert_eq!(
201b9ef3 360 read_rows(&b"bar"[..]).flatten().collect::<Vec<_>>(),
06a6a5ca 361 vec![Rowlike::Row(Row {
88a08162
SW
362 label: "bar".to_owned(),
363 entries: HashMap::new(),
06a6a5ca 364 })]
9dfa98b7 365 );
2aa9ef94 366 assert_eq!(
201b9ef3 367 read_rows(&b"foo\nbar\n"[..]).flatten().collect::<Vec<_>>(),
2aa9ef94 368 vec![
06a6a5ca 369 Rowlike::Row(Row {
88a08162
SW
370 label: "foo".to_owned(),
371 entries: HashMap::new(),
06a6a5ca
SW
372 }),
373 Rowlike::Row(Row {
88a08162
SW
374 label: "bar".to_owned(),
375 entries: HashMap::new(),
06a6a5ca 376 })
2aa9ef94
SW
377 ]
378 );
201b9ef3
SW
379 assert_eq!(
380 read_rows(&b"foo\n bar\n"[..]).flatten().collect::<Vec<_>>(),
06a6a5ca 381 vec![Rowlike::Row(Row {
88a08162
SW
382 label: "foo".to_owned(),
383 entries: HashMap::from([("bar".to_owned(), vec![None])]),
06a6a5ca 384 })]
201b9ef3
SW
385 );
386 assert_eq!(
387 read_rows(&b"foo\n bar\n baz\n"[..])
388 .flatten()
389 .collect::<Vec<_>>(),
06a6a5ca 390 vec![Rowlike::Row(Row {
88a08162
SW
391 label: "foo".to_owned(),
392 entries: HashMap::from([
393 ("bar".to_owned(), vec![None]),
394 ("baz".to_owned(), vec![None])
395 ]),
06a6a5ca 396 })]
201b9ef3
SW
397 );
398 assert_eq!(
399 read_rows(&b"foo\n\nbar\n"[..])
400 .flatten()
401 .collect::<Vec<_>>(),
722ea297
SW
402 vec![
403 Rowlike::Row(Row {
404 label: "foo".to_owned(),
405 entries: HashMap::new(),
406 }),
407 Rowlike::Row(Row {
408 label: "bar".to_owned(),
409 entries: HashMap::new(),
410 })
411 ]
412 );
413 assert_eq!(
414 read_rows(&b"foo\n\n\nbar\n"[..])
415 .flatten()
416 .collect::<Vec<_>>(),
201b9ef3 417 vec![
06a6a5ca 418 Rowlike::Row(Row {
88a08162
SW
419 label: "foo".to_owned(),
420 entries: HashMap::new(),
06a6a5ca
SW
421 }),
422 Rowlike::Row(Row {
88a08162
SW
423 label: "bar".to_owned(),
424 entries: HashMap::new(),
06a6a5ca 425 })
201b9ef3
SW
426 ]
427 );
1f6bd845
SW
428 assert_eq!(
429 read_rows(&b"foo\n \nbar\n"[..])
430 .flatten()
431 .collect::<Vec<_>>(),
432 vec![
06a6a5ca 433 Rowlike::Row(Row {
88a08162
SW
434 label: "foo".to_owned(),
435 entries: HashMap::new(),
06a6a5ca
SW
436 }),
437 Rowlike::Row(Row {
88a08162
SW
438 label: "bar".to_owned(),
439 entries: HashMap::new(),
06a6a5ca 440 })
1f6bd845
SW
441 ]
442 );
443 assert_eq!(
444 read_rows(&b"foo \n bar \n"[..])
445 .flatten()
446 .collect::<Vec<_>>(),
06a6a5ca 447 vec![Rowlike::Row(Row {
88a08162
SW
448 label: "foo".to_owned(),
449 entries: HashMap::from([("bar".to_owned(), vec![None])]),
06a6a5ca 450 })]
1f6bd845 451 );
201b9ef3
SW
452
453 let bad = read_rows(&b" foo"[..]).next().unwrap();
454 assert!(bad.is_err());
8110b492 455 assert!(format!("{bad:?}").contains("1: Entry with no header"));
201b9ef3
SW
456
457 let bad2 = read_rows(&b"foo\n\n bar"[..]).nth(1).unwrap();
458 assert!(bad2.is_err());
8110b492 459 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
75bb888a 460 }
f272e502
SW
461
462 #[test]
463 fn test_column_counts() {
464 assert_eq!(
465 column_counts(
466 &read_rows(&b"foo\n bar\n baz\n"[..])
467 .collect::<Result<Vec<_>, _>>()
468 .unwrap()
469 ),
58b5f36d 470 vec![(1, String::from("bar")), (1, String::from("baz"))]
f272e502
SW
471 );
472 assert_eq!(
473 column_counts(
474 &read_rows(&b"foo\n bar\n baz\nquux\n baz"[..])
475 .collect::<Result<Vec<_>, _>>()
476 .unwrap()
477 ),
38d1167a 478 vec![(2, String::from("baz")), (1, String::from("bar"))]
f272e502 479 );
397ef957
SW
480 assert_eq!(
481 column_counts(
482 &read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..])
483 .collect::<Result<Vec<_>, _>>()
484 .unwrap()
485 ),
38d1167a 486 vec![(2, String::from("baz")), (1, String::from("bar"))]
397ef957 487 );
b8907770
SW
488 assert_eq!(
489 column_counts(
490 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..])
491 .collect::<Result<Vec<_>, _>>()
492 .unwrap()
493 ),
38d1167a 494 vec![(2, String::from("baz")), (1, String::from("bar"))]
b8907770 495 );
f272e502 496 }
de408c29
SW
497
498 #[test]
499 fn test_render_cell() {
500 assert_eq!(
501 render_cell(
502 "foo",
d9bfcf4d 503 &mut Row {
88a08162
SW
504 label: "nope".to_owned(),
505 entries: HashMap::new(),
de408c29
SW
506 }
507 ),
5ffe8e3a
SW
508 HTML::from(
509 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
510 )
de408c29
SW
511 );
512 assert_eq!(
513 render_cell(
514 "foo",
d9bfcf4d 515 &mut Row {
88a08162
SW
516 label: "nope".to_owned(),
517 entries: HashMap::from([("bar".to_owned(), vec![None])]),
de408c29
SW
518 }
519 ),
5ffe8e3a
SW
520 HTML::from(
521 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
522 )
de408c29
SW
523 );
524 assert_eq!(
525 render_cell(
526 "foo",
d9bfcf4d 527 &mut Row {
88a08162
SW
528 label: "nope".to_owned(),
529 entries: HashMap::from([("foo".to_owned(), vec![None])]),
de408c29
SW
530 }
531 ),
5ffe8e3a
SW
532 HTML::from(
533 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
534 )
de408c29
SW
535 );
536 assert_eq!(
537 render_cell(
538 "foo",
d9bfcf4d 539 &mut Row {
88a08162
SW
540 label: "nope".to_owned(),
541 entries: HashMap::from([("foo".to_owned(), vec![None, None])]),
de408c29
SW
542 }
543 ),
5ffe8e3a
SW
544 HTML::from(
545 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">2</td>"#
546 )
de408c29
SW
547 );
548 assert_eq!(
549 render_cell(
550 "foo",
d9bfcf4d 551 &mut Row {
88a08162 552 label: "nope".to_owned(),
5ffe8e3a
SW
553 entries: HashMap::from([(
554 "foo".to_owned(),
555 vec![Some("5".to_owned()), Some("10".to_owned())]
556 )]),
de408c29
SW
557 }
558 ),
5ffe8e3a
SW
559 HTML::from(
560 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 10</td>"#
561 )
de408c29
SW
562 );
563 assert_eq!(
564 render_cell(
565 "foo",
d9bfcf4d 566 &mut Row {
88a08162
SW
567 label: "nope".to_owned(),
568 entries: HashMap::from([("foo".to_owned(), vec![Some("5".to_owned()), None])]),
de408c29
SW
569 }
570 ),
5ffe8e3a
SW
571 HTML::from(
572 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 ✓</td>"#
573 )
70436f23
SW
574 );
575 assert_eq!(
576 render_cell(
577 "heart",
d9bfcf4d 578 &mut Row {
88a08162
SW
579 label: "nope".to_owned(),
580 entries: HashMap::from([("heart".to_owned(), vec![Some("<3".to_owned())])]),
70436f23
SW
581 }
582 ),
5ffe8e3a
SW
583 HTML::from(
584 r#"<td class="yes" onmouseover="h2('nope','heart')" onmouseout="ch2('nope','heart')">&lt;3</td>"#
585 )
70436f23
SW
586 );
587 assert_eq!(
588 render_cell(
589 "foo",
d9bfcf4d 590 &mut Row {
88a08162
SW
591 label: "bob's".to_owned(),
592 entries: HashMap::from([("foo".to_owned(), vec![None])]),
70436f23
SW
593 }
594 ),
5ffe8e3a
SW
595 HTML::from(
596 r#"<td class="yes" onmouseover="h2('bob&#39;s','foo')" onmouseout="ch2('bob&#39;s','foo')"></td>"#
597 )
de408c29 598 );
d9bfcf4d
SW
599 let mut r = Row {
600 label: "nope".to_owned(),
601 entries: HashMap::from([
602 ("foo".to_owned(), vec![None]),
603 ("baz".to_owned(), vec![None]),
604 ]),
605 };
606 assert_eq!(r.entries.len(), 2);
607 render_cell("foo", &mut r);
608 assert_eq!(r.entries.len(), 1);
609 render_cell("bar", &mut r);
610 assert_eq!(r.entries.len(), 1);
611 render_cell("baz", &mut r);
612 assert_eq!(r.entries.len(), 0);
de408c29 613 }
25fd008e 614
9a626020
SW
615 #[test]
616 fn test_render_leftovers() {
617 assert_eq!(
618 render_all_leftovers(&Row {
619 label: "nope".to_owned(),
620 entries: HashMap::from([("foo".to_owned(), vec![None])]),
621 }),
622 HTML::from("foo")
623 );
624 assert_eq!(
625 render_all_leftovers(&Row {
626 label: "nope".to_owned(),
627 entries: HashMap::from([
628 ("foo".to_owned(), vec![None]),
629 ("bar".to_owned(), vec![None])
630 ]),
631 }),
632 HTML::from("bar, foo")
633 );
634 assert_eq!(
635 render_all_leftovers(&Row {
636 label: "nope".to_owned(),
637 entries: HashMap::from([
638 ("foo".to_owned(), vec![None]),
639 ("bar".to_owned(), vec![None, None])
640 ]),
641 }),
642 HTML::from("bar: 2, foo")
643 );
644 }
645
25fd008e
SW
646 #[test]
647 fn test_render_row() {
648 assert_eq!(
649 render_row(
650 &["foo".to_owned()],
06a6a5ca 651 &mut Rowlike::Row(Row {
25fd008e
SW
652 label: "nope".to_owned(),
653 entries: HashMap::from([("bar".to_owned(), vec![None])]),
06a6a5ca 654 })
25fd008e
SW
655 ),
656 HTML::from(
36bc3a39 657 r#"<tr><th id="nope">nope</th><td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td><td class="leftover" onmouseover="highlight('nope')" onmouseout="clear_highlight('nope')">bar</td></tr>
25fd008e
SW
658"#
659 )
660 );
661 }
75bb888a 662}