1use std::path::{Path, PathBuf};
15
16use makeover_geometry::{Density, SizeClass};
17use makeover_webview::Emit;
18
19const CONST_NAME: &str = "TOUCH_DENSITY";
22
23const SNIFFS: &[&str] = &["ontouchstart", "maxTouchPoints"];
29
30pub fn check_touch_density(js_dir: impl AsRef<Path>) {
51 let js_dir = js_dir.as_ref();
52 let want = Density::Touch.media_condition();
53 let mut wrong: Vec<String> = Vec::new();
54 let mut found = 0usize;
55
56 let files = js_files(js_dir);
57 for path in &files {
58 let src = std::fs::read_to_string(path).expect("read js file");
59 let name = path
60 .strip_prefix(js_dir)
61 .unwrap_or(path)
62 .display()
63 .to_string();
64
65 for (offset, literal) in touch_density_literals(&src) {
66 found += 1;
67 if literal != want {
68 wrong.push(format!(
69 " {name}:{} {CONST_NAME} = '{literal}'",
70 line_of(&src, offset)
71 ));
72 }
73 }
74
75 for needle in SNIFFS {
76 if let Some(offset) = src.find(needle) {
77 wrong.push(format!(
78 " {name}:{} {needle} -- device sniff, not a density question",
79 line_of(&src, offset)
80 ));
81 }
82 }
83 }
84
85 assert!(
86 found > 0,
87 "no {CONST_NAME} literal found under {}.\n\n\
88 A frontend that asks whether it is being touched states\n\
89 makeover_geometry::Density::Touch's media condition in a const of that\n\
90 name, and this check exists to keep every copy equal to it. If the\n\
91 const was renamed, rename it back rather than dropping the check; if\n\
92 this frontend genuinely asks no density question, drop the call.",
93 js_dir.display()
94 );
95
96 assert!(
97 wrong.is_empty(),
98 "hand-written touch detection disagrees with makeover_geometry::Density.\n\n\
99 Density::Touch.media_condition() is: {want}\n\n\
100 Wrong:\n{}\n\n\
101 Fix the JS to state the crate's string. Never widen it to catch a\n\
102 device the query misses: density is what is pointing at the screen,\n\
103 and a laptop with a touchscreen and a mouse is a pointer device.",
104 wrong.join("\n")
105 );
106
107 for path in &files {
108 println!("cargo:rerun-if-changed={}", path.display());
109 }
110}
111
112fn js_files(dir: &Path) -> Vec<PathBuf> {
114 files_with_extension(dir, "js")
115}
116
117fn files_with_extension(dir: &Path, ext: &str) -> Vec<PathBuf> {
124 let mut out = Vec::new();
125 let mut stack = vec![dir.to_path_buf()];
126 while let Some(d) = stack.pop() {
127 for entry in std::fs::read_dir(&d)
128 .unwrap_or_else(|e| panic!("read {}: {e}", d.display()))
129 .flatten()
130 {
131 let path = entry.path();
132 if path.is_dir() {
133 stack.push(path);
134 } else if path.extension().is_some_and(|x| x == ext) {
135 out.push(path);
136 }
137 }
138 }
139 out.sort();
140 out
141}
142
143fn touch_density_literals(src: &str) -> Vec<(usize, &str)> {
146 let mut out = Vec::new();
147 let mut at = 0;
148 while let Some(i) = src[at..].find(CONST_NAME) {
149 let start = at + i;
150 at = start + CONST_NAME.len();
151 let Some(rest) = src[at..].strip_prefix(" = ") else {
153 continue;
154 };
155 let open = at + " = ".len();
156 let Some(quote @ ('\'' | '"')) = rest.chars().next() else {
157 continue;
158 };
159 let body = open + 1;
160 if let Some(j) = src[body..].find(quote) {
161 out.push((start, &src[body..body + j]));
162 at = body + j + 1;
163 }
164 }
165 out
166}
167
168fn line_of(src: &str, offset: usize) -> usize {
169 src[..offset].matches('\n').count() + 1
170}
171
172pub fn check_breakpoints(frontend: impl AsRef<Path>, tuning_widths: &[u16]) {
206 let frontend = frontend.as_ref();
207 let mut files = files_with_extension(&frontend.join("css"), "css");
208 files.extend(js_files(&frontend.join("js")));
209 check_paths(&files, tuning_widths, Some(frontend));
210}
211
212pub fn check_breakpoints_files<P: AsRef<Path>>(paths: &[P], tuning_widths: &[u16]) {
232 let paths: Vec<PathBuf> = paths.iter().map(|p| p.as_ref().to_path_buf()).collect();
233 check_paths(&paths, tuning_widths, None);
234}
235
236fn check_paths(paths: &[PathBuf], tuning_widths: &[u16], root: Option<&Path>) {
238 let allowed = allowed_widths(tuning_widths);
239 let mut stale: Vec<String> = Vec::new();
240
241 for path in paths {
242 let raw = std::fs::read_to_string(path)
243 .unwrap_or_else(|e| panic!("read {}: {e}", path.display()));
244 let name = match root {
245 Some(root) => display_name(root, path),
246 None => path.display().to_string(),
247 };
248
249 if path.extension().is_some_and(|x| x == "js") {
250 for (offset, px) in js_widths(&raw) {
252 if !allowed.contains(&px) {
253 stale.push(format!(" {name}:{} ({px}px)", line_of(&raw, offset)));
254 }
255 }
256 continue;
257 }
258
259 let src = strip_block_comments(&raw);
262 for (offset, condition) in media_conditions(&src) {
263 for px in media_widths(condition) {
264 if !allowed.contains(&px) {
265 stale.push(format!(
266 " {name}:{} @media{condition} ({px}px)",
267 line_of(&src, offset)
268 ));
269 }
270 }
271 }
272 }
273
274 assert!(
275 stale.is_empty(),
276 "hand-written breakpoints disagree with makeover_geometry::SizeClass.\n\n\
277 Allowed: {allowed:?}\n\
278 ({:?} come from SizeClass; {tuning_widths:?} were passed as tuning widths.)\n\n\
279 Stale:\n{}\n\n\
280 If a size class moved, update these to match. If one of these is a new\n\
281 tuning width inside the wide shell rather than a shell boundary, add it\n\
282 to the caller's tuning list with a note saying what it tunes.\n\n\
283 Best of all, make the rule dimensional so it needs no threshold: a grid\n\
284 wants repeat(auto-fit, minmax(<content floor>, 1fr)) and a size wants\n\
285 clamp(). A threshold is for what appears and disappears.",
286 allowed
287 .iter()
288 .filter(|px| !tuning_widths.contains(px))
289 .collect::<Vec<_>>(),
290 stale.join("\n")
291 );
292
293 for path in paths {
294 println!("cargo:rerun-if-changed={}", path.display());
295 }
296}
297
298fn display_name(frontend: &Path, path: &Path) -> String {
300 path.strip_prefix(frontend)
301 .unwrap_or(path)
302 .display()
303 .to_string()
304}
305
306fn allowed_widths(tuning_widths: &[u16]) -> Vec<u16> {
312 let mut widths: Vec<u16> = SizeClass::all()
313 .iter()
314 .flat_map(|c| media_widths(&c.media_condition()))
315 .collect();
316 widths.extend_from_slice(tuning_widths);
317 widths.sort_unstable();
318 widths.dedup();
319 widths
320}
321
322fn media_widths(condition: &str) -> Vec<u16> {
324 let mut out = Vec::new();
325 let mut rest = condition;
326 while let Some(i) = rest.find("-width:") {
327 rest = &rest[i + "-width:".len()..];
328 let digits: String = rest
329 .trim_start()
330 .chars()
331 .take_while(char::is_ascii_digit)
332 .collect();
333 if let Ok(px) = digits.parse() {
334 out.push(px);
335 }
336 }
337 out
338}
339
340fn media_conditions(css: &str) -> Vec<(usize, &str)> {
342 let mut out = Vec::new();
343 let mut at = 0;
344 while let Some(i) = css[at..].find("@media") {
345 let start = at + i;
346 let after = start + "@media".len();
347 match css[after..].find('{') {
348 Some(j) => {
349 out.push((start, &css[after..after + j]));
350 at = after + j;
351 }
352 None => break,
353 }
354 }
355 out
356}
357
358fn js_widths(src: &str) -> Vec<(usize, u16)> {
366 let mut out = Vec::new();
367 for pat in ["(max-width:", "(min-width:"] {
368 let mut at = 0;
369 while let Some(i) = src[at..].find(pat) {
370 let start = at + i;
371 let rest = src[start + pat.len()..].trim_start();
372 let digits: String = rest.chars().take_while(char::is_ascii_digit).collect();
373 if let Ok(px) = digits.parse()
374 && rest[digits.len()..].starts_with("px)")
375 {
376 out.push((start, px));
377 }
378 at = start + pat.len();
379 }
380 }
381 out
382}
383
384fn strip_block_comments(css: &str) -> String {
386 let bytes = css.as_bytes();
387 let mut out = String::with_capacity(css.len());
388 let mut i = 0;
389 while i < bytes.len() {
390 if bytes[i..].starts_with(b"/*") {
391 let end = css[i..].find("*/").map_or(bytes.len(), |j| i + j + 2);
392 for c in css[i..end].chars() {
393 out.push(if c == '\n' { '\n' } else { ' ' });
394 }
395 i = end;
396 } else {
397 let c = css[i..].chars().next().unwrap();
398 out.push(c);
399 i += c.len_utf8();
400 }
401 }
402 out
403}
404
405pub fn check_vocabulary(
490 frontend: impl AsRef<Path>,
491 opts: &Emit,
492 generated: &[&str],
493 allowed: &[(&str, &str)],
494 allowed_elements: &[(&str, &str, &str)],
495) {
496 let frontend = frontend.as_ref();
497 let css = frontend.join("css");
498 let files: Vec<PathBuf> = files_with_extension(&css, "css")
499 .into_iter()
500 .filter(|p| {
501 let name = p.strip_prefix(&css).unwrap_or(p).display().to_string();
502 !generated.contains(&name.as_str())
503 })
504 .collect();
505 check_vocabulary_paths(&files, opts, Some(frontend), allowed, allowed_elements);
506}
507
508pub fn check_vocabulary_files<P: AsRef<Path>>(
519 paths: &[P],
520 opts: &Emit,
521 allowed: &[(&str, &str)],
522 allowed_elements: &[(&str, &str, &str)],
523) {
524 let paths: Vec<PathBuf> = paths.iter().map(|p| p.as_ref().to_path_buf()).collect();
525 check_vocabulary_paths(&paths, opts, None, allowed, allowed_elements);
526}
527
528fn check_vocabulary_paths(
530 paths: &[PathBuf],
531 opts: &Emit,
532 root: Option<&Path>,
533 allowed: &[(&str, &str)],
534 allowed_elements: &[(&str, &str, &str)],
535) {
536 let generated =
537 makeover_webview::vocabulary::declarations_by_class(&makeover_webview::stylesheet(opts));
538 let mut clashes: Vec<String> = Vec::new();
539 let mut seen: Vec<(String, String)> = Vec::new();
540 let mut element_clashes: Vec<String> = Vec::new();
541 let mut element_seen: Vec<(String, String, String)> = Vec::new();
542
543 for path in paths {
544 println!("cargo::rerun-if-changed={}", path.display());
545 let raw = std::fs::read_to_string(path)
546 .unwrap_or_else(|e| panic!("read {}: {e}", path.display()));
547 let name = match root {
548 Some(root) => display_name(root, path),
549 None => path.display().to_string(),
550 };
551 let local = makeover_webview::vocabulary::declarations_by_class(&raw);
554 for (class, properties) in &local {
555 let Some(theirs) = generated.get(class) else {
556 continue;
557 };
558 for property in properties.intersection(theirs) {
559 seen.push((class.clone(), property.clone()));
560 if allowed.contains(&(class.as_str(), property.as_str())) {
561 continue;
562 }
563 clashes.push(format!(" {name} .{class} {{ {property} }}"));
564 }
565 }
566
567 let mentioned = makeover_webview::vocabulary::mentions_by_class(&raw);
573 let by_element = makeover_webview::vocabulary::declarations_by_element(&raw);
574 for (element, properties) in &by_element {
575 for class in makeover_webview::vocabulary::classes_for_element(element, opts) {
576 let Some(theirs) = generated.get(&class) else {
577 continue;
578 };
579 for (property, rank) in properties {
580 if !theirs.contains(property) {
581 continue;
582 }
583 let spoken_for = mentioned
587 .get(&class)
588 .and_then(|properties| properties.get(property))
589 .is_some_and(|theirs| theirs >= rank);
590 if spoken_for {
591 continue;
592 }
593 element_seen.push((element.clone(), class.clone(), property.clone()));
594 if allowed_elements.contains(&(
595 element.as_str(),
596 class.as_str(),
597 property.as_str(),
598 )) {
599 continue;
600 }
601 element_clashes.push(format!(
602 " {name} {element} {{ {property} }} beats .{class} {{ {property} }}"
603 ));
604 }
605 }
606 }
607 }
608
609 assert!(
610 clashes.is_empty(),
611 "{} hand-written declaration(s) take a property the generated stylesheet \
612 already sets on the same class. App CSS wins over @layer makeover, \
613 whether by a later layer or by being unlayered, so each of these wins \
614 over the design system silently:\n{}\n\nDelete the declaration, or, if \
615 it is a deliberate pairing on a different selector arm, add \
616 (class, property) to this check's allowed list and say why beside it. \
617 Count the consumers before deciding a divergence is worth keeping.",
618 clashes.len(),
619 clashes.join("\n")
620 );
621
622 assert!(
623 element_clashes.is_empty(),
624 "{} hand-written element rule(s) take a property the generated \
625 stylesheet sets on a class that element carries. App CSS wins over \
626 @layer makeover, whether by a later layer or by being unlayered, so a \
627 described component rendered on one of these elements loses the \
628 design system's version of that property silently -- which is how a \
629 destructive act came to look like an ordinary one:\n{}\n\nHand the \
630 property back on the arms makeover paints \
631 (`.{{class}}:disabled {{ color: revert-layer }}`), scope the element \
632 rule so it stops reaching described markup, or add \
633 (element, class, property) to this check's allowed-elements list and \
634 say why beside it.",
635 element_clashes.len(),
636 element_clashes.join("\n")
637 );
638
639 let stale: Vec<&(&str, &str)> = allowed
640 .iter()
641 .filter(|(class, property)| {
642 !seen.contains(&((*class).to_string(), (*property).to_string()))
643 })
644 .collect();
645 assert!(
646 stale.is_empty(),
647 "the allowed list declares {stale:?}, which no longer collides with \
648 anything. Delete the entries: an exception nobody is using is where the \
649 next real collision lands and reads as company."
650 );
651
652 let stale: Vec<&(&str, &str, &str)> = allowed_elements
653 .iter()
654 .filter(|(element, class, property)| {
655 !element_seen.contains(&(
656 (*element).to_string(),
657 (*class).to_string(),
658 (*property).to_string(),
659 ))
660 })
661 .collect();
662 assert!(
663 stale.is_empty(),
664 "the allowed-elements list declares {stale:?}, which no longer collides \
665 with anything. Delete the entries: an exception nobody is using is \
666 where the next real collision lands and reads as company."
667 );
668}
669
670fn haystack_names(haystack: &str, class: &str) -> bool {
699 haystack.match_indices(class).any(|(at, found)| {
700 haystack[at + found.len()..]
701 .chars()
702 .next()
703 .is_none_or(|c| !c.is_ascii_alphanumeric() && c != '-' && c != '_')
704 })
705}
706
707pub fn check_vocabulary_use<P: AsRef<Path>>(markup: &[P], opts: &Emit, high_water: usize) {
708 let generated = makeover_webview::vocabulary::names(opts);
709 let mut haystack = String::new();
710 for path in markup {
711 let path = path.as_ref();
712 println!("cargo::rerun-if-changed={}", path.display());
713 haystack.push_str(
714 &std::fs::read_to_string(path)
715 .unwrap_or_else(|e| panic!("read {}: {e}", path.display())),
716 );
717 haystack.push('\n');
718 }
719
720 let rung = |class: &str| {
725 class
726 .strip_prefix(opts.class_prefix)
727 .and_then(|name| name.strip_prefix("min-"))
728 .is_some_and(|n| !n.is_empty() && n.bytes().all(|b| b.is_ascii_digit()))
729 };
730 let ladder_used = generated
731 .iter()
732 .any(|class| rung(class) && haystack_names(&haystack, class));
733 let mut unused: Vec<&String> = generated
734 .iter()
735 .filter(|class| !rung(class) && !haystack.contains(class.as_str()))
736 .collect();
737 let ladder_name = format!("{}min-N", opts.class_prefix);
738 if !ladder_used && generated.iter().any(|class| rung(class)) {
739 unused.push(&ladder_name);
740 }
741
742 assert!(
743 unused.len() <= high_water,
744 "{} of {} generated classes are emitted by no markup, above the recorded {}. \
745 The vocabulary grew or the markup stopped using it:\n{}",
746 unused.len(),
747 generated.len(),
748 high_water,
749 unused
750 .iter()
751 .map(|c| format!(" .{c}"))
752 .collect::<Vec<_>>()
753 .join("\n")
754 );
755
756 if unused.len() < high_water {
757 println!(
758 "cargo::warning=dead makeover vocabulary is down to {} from a sealed {}; \
759 lower the seal so it cannot grow back",
760 unused.len(),
761 high_water
762 );
763 }
764}
765
766#[cfg(test)]
767mod tests {
768 use super::*;
769
770 fn scratch(name: &str) -> PathBuf {
771 let dir =
772 std::env::temp_dir().join(format!("makeover-drift-{}-{name}", std::process::id()));
773 let _ = std::fs::remove_dir_all(&dir);
774 std::fs::create_dir_all(&dir).expect("create scratch");
775 dir
776 }
777
778 fn write(dir: &Path, name: &str, src: &str) {
779 if let Some(parent) = dir.join(name).parent() {
780 std::fs::create_dir_all(parent).unwrap();
781 }
782 std::fs::write(dir.join(name), src).unwrap();
783 }
784
785 fn declaring() -> String {
786 format!(
787 "const {CONST_NAME} = '{}';\n",
788 Density::Touch.media_condition()
789 )
790 }
791
792 #[test]
793 fn the_crates_own_string_passes() {
794 let dir = scratch("ok");
795 write(&dir, "touch.js", &declaring());
796 check_touch_density(&dir);
797 }
798
799 #[test]
800 #[should_panic(expected = "disagrees with makeover_geometry::Density")]
801 fn a_drifted_literal_fails() {
802 let dir = scratch("drift");
803 write(&dir, "touch.js", &declaring());
804 write(
805 &dir,
806 "haptics.js",
807 &format!("const {CONST_NAME} = '(pointer: coarse)';\n"),
808 );
809 check_touch_density(&dir);
810 }
811
812 #[test]
813 #[should_panic(expected = "device sniff")]
814 fn the_sniff_cannot_come_back() {
815 let dir = scratch("sniff");
816 write(&dir, "touch.js", &declaring());
817 write(&dir, "legacy.js", "if ('ontouchstart' in window) {}\n");
818 check_touch_density(&dir);
819 }
820
821 #[test]
822 #[should_panic(expected = "no TOUCH_DENSITY literal found")]
823 fn a_frontend_that_states_nothing_fails() {
824 let dir = scratch("empty");
825 write(&dir, "app.js", "export const x = 1;\n");
826 check_touch_density(&dir);
827 }
828
829 #[test]
830 fn a_use_site_is_not_a_declaration() {
831 let src =
835 format!("import {{ {CONST_NAME} }} from './touch.js';\nmatchMedia({CONST_NAME});\n");
836 assert!(touch_density_literals(&src).is_empty());
837 }
838
839 #[test]
840 fn nested_files_are_read() {
841 let dir = scratch("nested");
844 write(&dir, "touch.js", &declaring());
845 write(&dir, "screens/legacy.js", "navigator.maxTouchPoints > 0;\n");
846 let files = js_files(&dir);
847 assert_eq!(files.len(), 2);
848 }
849
850 #[test]
851 fn a_non_js_file_is_ignored() {
852 let dir = scratch("nonjs");
853 write(&dir, "touch.js", &declaring());
854 write(&dir, "styles.css", "body { }\n");
855 assert_eq!(js_files(&dir).len(), 1);
856 }
857
858 fn frontend(name: &str) -> PathBuf {
859 let dir = scratch(name);
860 std::fs::create_dir_all(dir.join("css")).unwrap();
861 std::fs::create_dir_all(dir.join("js")).unwrap();
862 dir
863 }
864
865 fn boundary() -> u16 {
867 SizeClass::Medium.min_px()
868 }
869
870 #[test]
871 fn the_crates_own_boundaries_pass() {
872 let dir = frontend("bp-ok");
873 write(
874 &dir,
875 "css/styles.css",
876 &format!("@media (min-width: {}px) {{ body {{ }} }}\n", boundary()),
877 );
878 check_breakpoints(&dir, &[]);
879 }
880
881 #[test]
882 #[should_panic(expected = "disagree with makeover_geometry::SizeClass")]
883 fn a_stale_css_width_fails() {
884 let dir = frontend("bp-css");
885 write(&dir, "css/styles.css", "@media (max-width: 768px) { }\n");
886 check_breakpoints(&dir, &[]);
887 }
888
889 #[test]
890 #[should_panic(expected = "disagree with makeover_geometry::SizeClass")]
891 fn a_stale_js_width_fails() {
892 let dir = frontend("bp-js");
893 write(&dir, "js/shell.js", "matchMedia('(max-width: 768px)');\n");
894 check_breakpoints(&dir, &[]);
895 }
896
897 #[test]
898 fn a_declared_tuning_width_passes() {
899 let dir = frontend("bp-tuning");
900 write(&dir, "css/styles.css", "@media (min-width: 1400px) { }\n");
901 check_breakpoints(&dir, &[1400]);
902 }
903
904 #[test]
905 fn a_width_in_a_comment_is_prose() {
906 let dir = frontend("bp-comment");
909 write(
910 &dir,
911 "css/styles.css",
912 "/* was @media (max-width: 768px) until the size classes landed */\n",
913 );
914 check_breakpoints(&dir, &[]);
915 }
916
917 #[test]
918 fn an_unparenthesized_width_is_not_a_breakpoint() {
919 let dir = frontend("bp-inline");
923 write(
924 &dir,
925 "js/style.js",
926 "el.style.cssText = 'max-width: 320px; display: block';\n",
927 );
928 check_breakpoints(&dir, &[]);
929 }
930
931 #[test]
932 fn nested_css_is_read() {
933 let dir = frontend("bp-nested");
936 write(
937 &dir,
938 "css/screens/detail.css",
939 "@media (max-width: 768px) { }\n",
940 );
941 let found = std::panic::catch_unwind(|| check_breakpoints(&dir, &[]));
942 assert!(found.is_err(), "a nested stylesheet must be scanned");
943 }
944
945 #[test]
946 fn a_named_list_is_checked() {
947 let dir = frontend("bp-list");
948 write(&dir, "css/style.css", "@media (max-width: 768px) { }\n");
949 let listed = dir.join("css/style.css");
950 let err =
951 std::panic::catch_unwind(|| check_breakpoints_files(&[&listed], &[])).unwrap_err();
952 let msg = err.downcast_ref::<String>().expect("String payload");
953 assert!(msg.contains("style.css:1"), "got: {msg}");
954 }
955
956 #[test]
957 #[should_panic(expected = "read ")]
958 fn a_listed_file_that_is_gone_fails() {
959 let dir = frontend("bp-missing");
962 check_breakpoints_files(&[dir.join("css/never-written.css")], &[]);
963 }
964
965 #[test]
966 fn a_listed_js_file_is_parsed_as_script() {
967 let dir = frontend("bp-list-js");
970 write(
971 &dir,
972 "js/style.js",
973 "el.style.cssText = 'max-width: 320px';\n",
974 );
975 check_breakpoints_files(&[dir.join("js/style.js")], &[]);
976 }
977
978 #[test]
979 fn the_error_names_the_file_and_line() {
980 let dir = frontend("bp-message");
981 write(
982 &dir,
983 "css/styles.css",
984 "body { }\n@media (max-width: 768px) { }\n",
985 );
986 let err = std::panic::catch_unwind(|| check_breakpoints(&dir, &[])).unwrap_err();
987 let msg = err
988 .downcast_ref::<String>()
989 .expect("panic payload is a String");
990 assert!(msg.contains("css/styles.css:2"), "got: {msg}");
991 }
992
993 #[test]
994 fn a_rule_restating_a_generated_class_fails_and_names_it() {
995 let dir = scratch("vocab-clash");
996 write(
999 &dir,
1000 "css/styles.css",
1001 "body { color: red; }\n.card { box-shadow: none; }\n",
1002 );
1003 let err =
1004 std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[]))
1005 .unwrap_err();
1006 let msg = err
1007 .downcast_ref::<String>()
1008 .expect("panic payload is a String");
1009 assert!(msg.contains(".card"), "got: {msg}");
1010 assert!(msg.contains("box-shadow"), "got: {msg}");
1011 assert!(msg.contains("css/styles.css"), "got: {msg}");
1012 }
1013
1014 #[test]
1015 fn an_app_class_of_its_own_is_left_alone() {
1016 let dir = scratch("vocab-clean");
1017 write(
1018 &dir,
1019 "css/styles.css",
1020 ".task-list-container { overflow: auto; }\n.day-plan-slot { height: 1rem; }\n",
1021 );
1022 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1023 }
1024
1025 #[test]
1026 fn the_generated_sheet_is_skipped_rather_than_reported_against_itself() {
1027 let dir = scratch("vocab-generated");
1028 let opts = Emit::default();
1029 write(&dir, "css/layout.css", &makeover_webview::stylesheet(&opts));
1030 check_vocabulary(&dir, &opts, &["layout.css"], &[], &[]);
1033 }
1034
1035 #[test]
1036 fn a_prefixed_app_is_checked_against_its_own_prefix() {
1037 let dir = scratch("vocab-prefix");
1038 let opts = Emit {
1039 class_prefix: "mo-",
1040 ..Emit::default()
1041 };
1042 write(&dir, "css/styles.css", ".card { box-shadow: none; }\n");
1045 check_vocabulary(&dir, &opts, &[], &[], &[]);
1046
1047 let dir = scratch("vocab-prefix-clash");
1048 write(&dir, "css/styles.css", ".mo-card { box-shadow: none; }\n");
1049 assert!(std::panic::catch_unwind(|| check_vocabulary(&dir, &opts, &[], &[], &[])).is_err());
1050 }
1051
1052 #[test]
1053 fn a_class_shared_without_a_shared_property_is_left_alone() {
1054 let dir = scratch("vocab-additive");
1055 write(
1058 &dir,
1059 "css/styles.css",
1060 ".cell-value { padding: 2px; border-radius: 3px; font-weight: 600; }\n",
1061 );
1062 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1063 }
1064
1065 #[test]
1066 fn a_reviewed_pair_passes_and_stops_passing_when_it_stops_colliding() {
1067 let dir = scratch("vocab-allowed");
1068 write(&dir, "css/styles.css", ".card { box-shadow: none; }\n");
1069 check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")], &[]);
1070
1071 let dir = scratch("vocab-allowed-stale");
1074 write(&dir, "css/styles.css", ".card { padding: 2px; }\n");
1075 let err = std::panic::catch_unwind(|| {
1076 check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")], &[]);
1077 })
1078 .unwrap_err();
1079 let msg = err
1080 .downcast_ref::<String>()
1081 .expect("panic payload is a String");
1082 assert!(msg.contains("no longer collides"), "got: {msg}");
1083 }
1084
1085 #[test]
1086 fn an_element_rule_clobbering_a_generated_class_fails_and_names_all_three() {
1087 let dir = scratch("vocab-element");
1088 write(&dir, "css/styles.css", "select { box-shadow: none; }\n");
1092 let err =
1093 std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[]))
1094 .unwrap_err();
1095 let msg = err
1096 .downcast_ref::<String>()
1097 .expect("panic payload is a String");
1098 assert!(msg.contains("select {"), "got: {msg}");
1099 assert!(msg.contains(".field"), "got: {msg}");
1100 assert!(msg.contains("box-shadow"), "got: {msg}");
1101 assert!(msg.contains("css/styles.css"), "got: {msg}");
1102 }
1103
1104 #[test]
1105 fn a_handoff_on_the_class_is_the_remedy_and_reads_as_one() {
1106 let dir = scratch("vocab-element-handoff");
1107 write(
1112 &dir,
1113 "css/styles.css",
1114 "select { box-shadow: none; }\n.field { box-shadow: revert-layer; }\n",
1115 );
1116 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1117 }
1118
1119 #[test]
1120 fn a_property_the_app_states_on_the_class_is_not_the_element_rules_doing() {
1121 let dir = scratch("vocab-element-spoken-for");
1122 write(
1127 &dir,
1128 "css/styles.css",
1129 "select { box-shadow: none; }\n.field { box-shadow: none; }\n",
1130 );
1131 check_vocabulary(&dir, &Emit::default(), &[], &[("field", "box-shadow")], &[]);
1132 }
1133
1134 #[test]
1135 fn a_handoff_that_loses_to_the_rule_it_remedies_is_not_a_remedy() {
1136 let dir = scratch("vocab-element-weak-handoff");
1137 write(
1141 &dir,
1142 "css/styles.css",
1143 "select:focus { box-shadow: none; }\n.field { box-shadow: revert-layer; }\n",
1144 );
1145 let err =
1146 std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[]))
1147 .unwrap_err();
1148 let msg = err
1149 .downcast_ref::<String>()
1150 .expect("panic payload is a String");
1151 assert!(msg.contains(".field"), "got: {msg}");
1152
1153 let dir = scratch("vocab-element-strong-handoff");
1155 write(
1156 &dir,
1157 "css/styles.css",
1158 "select:focus { box-shadow: none; }\nselect.field { box-shadow: revert-layer; }\n",
1159 );
1160 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1161 }
1162
1163 #[test]
1164 fn a_scoped_rule_is_not_read_as_an_element_rule() {
1165 let dir = scratch("vocab-element-scoped");
1166 write(
1170 &dir,
1171 "css/styles.css",
1172 ".wizard select { box-shadow: none; }\n",
1173 );
1174 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1175 }
1176
1177 #[test]
1178 fn an_element_the_design_system_never_renders_onto_is_left_alone() {
1179 let dir = scratch("vocab-element-unpaired");
1180 write(&dir, "css/styles.css", "footer { box-shadow: none; }\n");
1183 check_vocabulary(&dir, &Emit::default(), &[], &[], &[]);
1184 }
1185
1186 #[test]
1187 fn a_reviewed_element_pairing_passes_and_stops_passing_when_it_stops_colliding() {
1188 let dir = scratch("vocab-element-allowed");
1189 write(&dir, "css/styles.css", "select { box-shadow: none; }\n");
1190 check_vocabulary(
1191 &dir,
1192 &Emit::default(),
1193 &[],
1194 &[],
1195 &[("select", "field", "box-shadow")],
1196 );
1197
1198 let dir = scratch("vocab-element-allowed-stale");
1201 write(&dir, "css/styles.css", "select { padding: 2px; }\n");
1202 let err = std::panic::catch_unwind(|| {
1203 check_vocabulary(
1204 &dir,
1205 &Emit::default(),
1206 &[],
1207 &[],
1208 &[("select", "field", "box-shadow")],
1209 );
1210 })
1211 .unwrap_err();
1212 let msg = err
1213 .downcast_ref::<String>()
1214 .expect("panic payload is a String");
1215 assert!(msg.contains("no longer collides"), "got: {msg}");
1216 }
1217
1218 #[test]
1219 fn dead_vocabulary_above_the_seal_fails_and_below_it_passes() {
1220 let dir = scratch("vocab-seal");
1221 let opts = Emit::default();
1222 let names = makeover_webview::vocabulary::names(&opts);
1223 let rungs = names.iter().filter(|c| c.starts_with("min-")).count();
1224 assert!(rungs > 1, "the floor ladder is in the vocabulary");
1225 let dead = names.len() - rungs + 1;
1228 write(&dir, "index.html", "<div></div>\n");
1229 let markup = [dir.join("index.html")];
1230
1231 check_vocabulary_use(&markup, &opts, dead);
1232 assert!(
1233 std::panic::catch_unwind(|| check_vocabulary_use(&markup, &opts, dead - 1)).is_err(),
1234 "a vocabulary deader than the seal has to fail"
1235 );
1236 }
1237
1238 #[test]
1239 fn one_rung_of_the_floor_ladder_uses_the_ladder() {
1240 let opts = Emit::default();
1243 let names = makeover_webview::vocabulary::names(&opts);
1244 let rungs = names.iter().filter(|c| c.starts_with("min-")).count();
1245 let dead = names.len() - rungs + 1;
1246
1247 let dir = scratch("vocab-ladder");
1248 write(&dir, "index.html", "<div class=\"cell min-16\"></div>\n");
1249 let one_rung = [dir.join("index.html")];
1250 check_vocabulary_use(&one_rung, &opts, dead - 2);
1252
1253 write(&dir, "index.html", "<div class=\"min-24\"></div>\n");
1255 assert!(haystack_names("<div class=\"min-24\">", "min-24"));
1256 assert!(!haystack_names("<div class=\"min-24\">", "min-2"));
1257 }
1258
1259 #[test]
1260 fn both_quote_styles_read() {
1261 let want = Density::Touch.media_condition();
1262 for q in ['\'', '"'] {
1263 let src = format!("const {CONST_NAME} = {q}{want}{q};\n");
1264 let found = touch_density_literals(&src);
1265 assert_eq!(found.len(), 1);
1266 assert_eq!(found[0].1, want);
1267 }
1268 }
1269}