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