| 1 |
|
| 2 |
|
| 3 |
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
|
| 8 |
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
use std::path::{Path, PathBuf}; |
| 15 |
|
| 16 |
use makeover_geometry::{Density, SizeClass}; |
| 17 |
use makeover_webview::Emit; |
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
const CONST_NAME: &str = "TOUCH_DENSITY"; |
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|
| 26 |
|
| 27 |
|
| 28 |
const SNIFFS: &[&str] = &["ontouchstart", "maxTouchPoints"]; |
| 29 |
|
| 30 |
|
| 31 |
|
| 32 |
|
| 33 |
|
| 34 |
|
| 35 |
|
| 36 |
|
| 37 |
|
| 38 |
|
| 39 |
|
| 40 |
|
| 41 |
|
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
|
| 46 |
|
| 47 |
|
| 48 |
|
| 49 |
|
| 50 |
pub 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 |
|
| 112 |
|
| 113 |
fn js_files(dir: &Path) -> Vec<PathBuf> { |
| 114 |
files_with_extension(dir, "js") |
| 115 |
} |
| 116 |
|
| 117 |
|
| 118 |
|
| 119 |
|
| 120 |
|
| 121 |
|
| 122 |
|
| 123 |
fn 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 |
|
| 143 |
|
| 144 |
|
| 145 |
fn 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 |
|
| 152 |
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 |
|
| 168 |
fn line_of(src: &str, offset: usize) -> usize { |
| 169 |
src[..offset].matches('\n').count() + 1 |
| 170 |
} |
| 171 |
|
| 172 |
|
| 173 |
|
| 174 |
|
| 175 |
|
| 176 |
|
| 177 |
|
| 178 |
|
| 179 |
|
| 180 |
|
| 181 |
|
| 182 |
|
| 183 |
|
| 184 |
|
| 185 |
|
| 186 |
|
| 187 |
|
| 188 |
|
| 189 |
|
| 190 |
|
| 191 |
|
| 192 |
|
| 193 |
|
| 194 |
|
| 195 |
|
| 196 |
|
| 197 |
|
| 198 |
|
| 199 |
|
| 200 |
|
| 201 |
|
| 202 |
|
| 203 |
|
| 204 |
|
| 205 |
pub 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 |
|
| 212 |
|
| 213 |
|
| 214 |
|
| 215 |
|
| 216 |
|
| 217 |
|
| 218 |
|
| 219 |
|
| 220 |
|
| 221 |
|
| 222 |
|
| 223 |
|
| 224 |
|
| 225 |
|
| 226 |
|
| 227 |
|
| 228 |
|
| 229 |
|
| 230 |
|
| 231 |
pub 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 |
|
| 236 |
|
| 237 |
fn 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 |
|
| 251 |
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 |
|
| 260 |
|
| 261 |
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 |
|
| 298 |
|
| 299 |
fn display_name(frontend: &Path, path: &Path) -> String { |
| 300 |
path.strip_prefix(frontend) |
| 301 |
.unwrap_or(path) |
| 302 |
.display() |
| 303 |
.to_string() |
| 304 |
} |
| 305 |
|
| 306 |
|
| 307 |
|
| 308 |
|
| 309 |
|
| 310 |
|
| 311 |
fn 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 |
|
| 322 |
|
| 323 |
fn 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 |
|
| 340 |
|
| 341 |
fn 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 |
|
| 358 |
|
| 359 |
|
| 360 |
|
| 361 |
|
| 362 |
|
| 363 |
|
| 364 |
|
| 365 |
fn 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 |
|
| 384 |
|
| 385 |
fn 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 |
|
| 405 |
|
| 406 |
|
| 407 |
|
| 408 |
|
| 409 |
|
| 410 |
|
| 411 |
|
| 412 |
|
| 413 |
|
| 414 |
|
| 415 |
|
| 416 |
|
| 417 |
|
| 418 |
|
| 419 |
|
| 420 |
|
| 421 |
|
| 422 |
|
| 423 |
|
| 424 |
|
| 425 |
|
| 426 |
|
| 427 |
|
| 428 |
|
| 429 |
|
| 430 |
|
| 431 |
|
| 432 |
|
| 433 |
|
| 434 |
|
| 435 |
|
| 436 |
|
| 437 |
|
| 438 |
|
| 439 |
|
| 440 |
|
| 441 |
|
| 442 |
|
| 443 |
|
| 444 |
|
| 445 |
|
| 446 |
|
| 447 |
|
| 448 |
|
| 449 |
|
| 450 |
|
| 451 |
|
| 452 |
|
| 453 |
|
| 454 |
|
| 455 |
|
| 456 |
|
| 457 |
|
| 458 |
|
| 459 |
|
| 460 |
|
| 461 |
|
| 462 |
|
| 463 |
|
| 464 |
|
| 465 |
|
| 466 |
|
| 467 |
|
| 468 |
|
| 469 |
|
| 470 |
|
| 471 |
|
| 472 |
|
| 473 |
|
| 474 |
|
| 475 |
|
| 476 |
|
| 477 |
|
| 478 |
|
| 479 |
|
| 480 |
|
| 481 |
|
| 482 |
|
| 483 |
|
| 484 |
|
| 485 |
|
| 486 |
|
| 487 |
|
| 488 |
|
| 489 |
|
| 490 |
|
| 491 |
|
| 492 |
|
| 493 |
|
| 494 |
|
| 495 |
|
| 496 |
pub fn check_vocabulary( |
| 497 |
frontend: impl AsRef<Path>, |
| 498 |
opts: &Emit, |
| 499 |
generated: &[&str], |
| 500 |
allowed: &[(&str, &str)], |
| 501 |
allowed_elements: &[(&str, &str, &str)], |
| 502 |
) { |
| 503 |
let frontend = frontend.as_ref(); |
| 504 |
let css = frontend.join("css"); |
| 505 |
let files: Vec<PathBuf> = files_with_extension(&css, "css") |
| 506 |
.into_iter() |
| 507 |
.filter(|p| { |
| 508 |
let name = p.strip_prefix(&css).unwrap_or(p).display().to_string(); |
| 509 |
!generated.contains(&name.as_str()) |
| 510 |
}) |
| 511 |
.collect(); |
| 512 |
check_vocabulary_paths(&files, opts, Some(frontend), allowed, allowed_elements); |
| 513 |
} |
| 514 |
|
| 515 |
|
| 516 |
|
| 517 |
|
| 518 |
|
| 519 |
|
| 520 |
|
| 521 |
|
| 522 |
|
| 523 |
|
| 524 |
|
| 525 |
pub fn check_vocabulary_files<P: AsRef<Path>>( |
| 526 |
paths: &[P], |
| 527 |
opts: &Emit, |
| 528 |
allowed: &[(&str, &str)], |
| 529 |
allowed_elements: &[(&str, &str, &str)], |
| 530 |
) { |
| 531 |
let paths: Vec<PathBuf> = paths.iter().map(|p| p.as_ref().to_path_buf()).collect(); |
| 532 |
check_vocabulary_paths(&paths, opts, None, allowed, allowed_elements); |
| 533 |
} |
| 534 |
|
| 535 |
|
| 536 |
fn check_vocabulary_paths( |
| 537 |
paths: &[PathBuf], |
| 538 |
opts: &Emit, |
| 539 |
root: Option<&Path>, |
| 540 |
allowed: &[(&str, &str)], |
| 541 |
allowed_elements: &[(&str, &str, &str)], |
| 542 |
) { |
| 543 |
let generated = |
| 544 |
makeover_webview::vocabulary::declarations_by_class(&makeover_webview::stylesheet(opts)); |
| 545 |
let mut clashes: Vec<String> = Vec::new(); |
| 546 |
let mut seen: Vec<(String, String)> = Vec::new(); |
| 547 |
let mut element_clashes: Vec<String> = Vec::new(); |
| 548 |
let mut element_seen: Vec<(String, String, String)> = Vec::new(); |
| 549 |
|
| 550 |
for path in paths { |
| 551 |
println!("cargo::rerun-if-changed={}", path.display()); |
| 552 |
let raw = std::fs::read_to_string(path) |
| 553 |
.unwrap_or_else(|e| panic!("read {}: {e}", path.display())); |
| 554 |
let name = match root { |
| 555 |
Some(root) => display_name(root, path), |
| 556 |
None => path.display().to_string(), |
| 557 |
}; |
| 558 |
|
| 559 |
|
| 560 |
let local = makeover_webview::vocabulary::declarations_by_class(&raw); |
| 561 |
for (class, properties) in &local { |
| 562 |
let Some(theirs) = generated.get(class) else { |
| 563 |
continue; |
| 564 |
}; |
| 565 |
for property in properties.intersection(theirs) { |
| 566 |
seen.push((class.clone(), property.clone())); |
| 567 |
if allowed.contains(&(class.as_str(), property.as_str())) { |
| 568 |
continue; |
| 569 |
} |
| 570 |
clashes.push(format!(" {name} .{class} {{ {property} }}")); |
| 571 |
} |
| 572 |
} |
| 573 |
|
| 574 |
|
| 575 |
|
| 576 |
|
| 577 |
|
| 578 |
|
| 579 |
let mentioned = makeover_webview::vocabulary::mentions_by_class(&raw); |
| 580 |
let by_element = makeover_webview::vocabulary::declarations_by_element(&raw); |
| 581 |
for (element, properties) in &by_element { |
| 582 |
for class in makeover_webview::vocabulary::classes_for_element(element, opts) { |
| 583 |
let Some(theirs) = generated.get(&class) else { |
| 584 |
continue; |
| 585 |
}; |
| 586 |
for (property, rank) in properties { |
| 587 |
if !theirs.contains(property) { |
| 588 |
continue; |
| 589 |
} |
| 590 |
|
| 591 |
|
| 592 |
|
| 593 |
let spoken_for = mentioned |
| 594 |
.get(&class) |
| 595 |
.and_then(|properties| properties.get(property)) |
| 596 |
.is_some_and(|theirs| theirs >= rank); |
| 597 |
if spoken_for { |
| 598 |
continue; |
| 599 |
} |
| 600 |
element_seen.push((element.clone(), class.clone(), property.clone())); |
| 601 |
if allowed_elements.contains(&( |
| 602 |
element.as_str(), |
| 603 |
class.as_str(), |
| 604 |
property.as_str(), |
| 605 |
)) { |
| 606 |
continue; |
| 607 |
} |
| 608 |
element_clashes.push(format!( |
| 609 |
" {name} {element} {{ {property} }} beats .{class} {{ {property} }}" |
| 610 |
)); |
| 611 |
} |
| 612 |
} |
| 613 |
} |
| 614 |
} |
| 615 |
|
| 616 |
assert!( |
| 617 |
clashes.is_empty(), |
| 618 |
"{} hand-written declaration(s) take a property the generated stylesheet \ |
| 619 |
already sets on the same class. App CSS wins over @layer makeover, \ |
| 620 |
whether by a later layer or by being unlayered, so each of these wins \ |
| 621 |
over the design system silently:\n{}\n\nDelete the declaration, or, if \ |
| 622 |
it is a deliberate pairing on a different selector arm, add \ |
| 623 |
(class, property) to this check's allowed list and say why beside it. \ |
| 624 |
Count the consumers before deciding a divergence is worth keeping.", |
| 625 |
clashes.len(), |
| 626 |
clashes.join("\n") |
| 627 |
); |
| 628 |
|
| 629 |
assert!( |
| 630 |
element_clashes.is_empty(), |
| 631 |
"{} hand-written element rule(s) take a property the generated \ |
| 632 |
stylesheet sets on a class that element carries. App CSS wins over \ |
| 633 |
@layer makeover, whether by a later layer or by being unlayered, so a \ |
| 634 |
described component rendered on one of these elements loses the \ |
| 635 |
design system's version of that property silently -- which is how a \ |
| 636 |
destructive act came to look like an ordinary one:\n{}\n\nHand the \ |
| 637 |
property back on the arms makeover paints \ |
| 638 |
(`.{{class}}:disabled {{ color: revert-layer }}`), scope the element \ |
| 639 |
rule so it stops reaching described markup, or add \ |
| 640 |
(element, class, property) to this check's allowed-elements list and \ |
| 641 |
say why beside it.", |
| 642 |
element_clashes.len(), |
| 643 |
element_clashes.join("\n") |
| 644 |
); |
| 645 |
|
| 646 |
let stale: Vec<&(&str, &str)> = allowed |
| 647 |
.iter() |
| 648 |
.filter(|(class, property)| { |
| 649 |
!seen.contains(&((*class).to_string(), (*property).to_string())) |
| 650 |
}) |
| 651 |
.collect(); |
| 652 |
assert!( |
| 653 |
stale.is_empty(), |
| 654 |
"the allowed list declares {stale:?}, which no longer collides with \ |
| 655 |
anything. Delete the entries: an exception nobody is using is where the \ |
| 656 |
next real collision lands and reads as company." |
| 657 |
); |
| 658 |
|
| 659 |
let stale: Vec<&(&str, &str, &str)> = allowed_elements |
| 660 |
.iter() |
| 661 |
.filter(|(element, class, property)| { |
| 662 |
!element_seen.contains(&( |
| 663 |
(*element).to_string(), |
| 664 |
(*class).to_string(), |
| 665 |
(*property).to_string(), |
| 666 |
)) |
| 667 |
}) |
| 668 |
.collect(); |
| 669 |
assert!( |
| 670 |
stale.is_empty(), |
| 671 |
"the allowed-elements list declares {stale:?}, which no longer collides \ |
| 672 |
with anything. Delete the entries: an exception nobody is using is \ |
| 673 |
where the next real collision lands and reads as company." |
| 674 |
); |
| 675 |
} |
| 676 |
|
| 677 |
|
| 678 |
|
| 679 |
|
| 680 |
|
| 681 |
|
| 682 |
|
| 683 |
|
| 684 |
|
| 685 |
|
| 686 |
|
| 687 |
|
| 688 |
|
| 689 |
|
| 690 |
|
| 691 |
|
| 692 |
|
| 693 |
|
| 694 |
|
| 695 |
|
| 696 |
|
| 697 |
|
| 698 |
|
| 699 |
|
| 700 |
|
| 701 |
|
| 702 |
|
| 703 |
pub fn check_vocabulary_use<P: AsRef<Path>>(markup: &[P], opts: &Emit, high_water: usize) { |
| 704 |
let generated = makeover_webview::vocabulary::names(opts); |
| 705 |
let mut haystack = String::new(); |
| 706 |
for path in markup { |
| 707 |
let path = path.as_ref(); |
| 708 |
println!("cargo::rerun-if-changed={}", path.display()); |
| 709 |
haystack.push_str( |
| 710 |
&std::fs::read_to_string(path) |
| 711 |
.unwrap_or_else(|e| panic!("read {}: {e}", path.display())), |
| 712 |
); |
| 713 |
haystack.push('\n'); |
| 714 |
} |
| 715 |
|
| 716 |
let unused: Vec<&String> = generated |
| 717 |
.iter() |
| 718 |
.filter(|class| !haystack.contains(class.as_str())) |
| 719 |
.collect(); |
| 720 |
|
| 721 |
assert!( |
| 722 |
unused.len() <= high_water, |
| 723 |
"{} of {} generated classes are emitted by no markup, above the recorded {}. \ |
| 724 |
The vocabulary grew or the markup stopped using it:\n{}", |
| 725 |
unused.len(), |
| 726 |
generated.len(), |
| 727 |
high_water, |
| 728 |
unused |
| 729 |
.iter() |
| 730 |
.map(|c| format!(" .{c}")) |
| 731 |
.collect::<Vec<_>>() |
| 732 |
.join("\n") |
| 733 |
); |
| 734 |
|
| 735 |
if unused.len() < high_water { |
| 736 |
println!( |
| 737 |
"cargo::warning=dead makeover vocabulary is down to {} from a sealed {}; \ |
| 738 |
lower the seal so it cannot grow back", |
| 739 |
unused.len(), |
| 740 |
high_water |
| 741 |
); |
| 742 |
} |
| 743 |
} |
| 744 |
|
| 745 |
#[cfg(test)] |
| 746 |
mod tests { |
| 747 |
use super::*; |
| 748 |
|
| 749 |
fn scratch(name: &str) -> PathBuf { |
| 750 |
let dir = |
| 751 |
std::env::temp_dir().join(format!("makeover-drift-{}-{name}", std::process::id())); |
| 752 |
let _ = std::fs::remove_dir_all(&dir); |
| 753 |
std::fs::create_dir_all(&dir).expect("create scratch"); |
| 754 |
dir |
| 755 |
} |
| 756 |
|
| 757 |
fn write(dir: &Path, name: &str, src: &str) { |
| 758 |
if let Some(parent) = dir.join(name).parent() { |
| 759 |
std::fs::create_dir_all(parent).unwrap(); |
| 760 |
} |
| 761 |
std::fs::write(dir.join(name), src).unwrap(); |
| 762 |
} |
| 763 |
|
| 764 |
fn declaring() -> String { |
| 765 |
format!( |
| 766 |
"const {CONST_NAME} = '{}';\n", |
| 767 |
Density::Touch.media_condition() |
| 768 |
) |
| 769 |
} |
| 770 |
|
| 771 |
#[test] |
| 772 |
fn the_crates_own_string_passes() { |
| 773 |
let dir = scratch("ok"); |
| 774 |
write(&dir, "touch.js", &declaring()); |
| 775 |
check_touch_density(&dir); |
| 776 |
} |
| 777 |
|
| 778 |
#[test] |
| 779 |
#[should_panic(expected = "disagrees with makeover_geometry::Density")] |
| 780 |
fn a_drifted_literal_fails() { |
| 781 |
let dir = scratch("drift"); |
| 782 |
write(&dir, "touch.js", &declaring()); |
| 783 |
write( |
| 784 |
&dir, |
| 785 |
"haptics.js", |
| 786 |
&format!("const {CONST_NAME} = '(pointer: coarse)';\n"), |
| 787 |
); |
| 788 |
check_touch_density(&dir); |
| 789 |
} |
| 790 |
|
| 791 |
#[test] |
| 792 |
#[should_panic(expected = "device sniff")] |
| 793 |
fn the_sniff_cannot_come_back() { |
| 794 |
let dir = scratch("sniff"); |
| 795 |
write(&dir, "touch.js", &declaring()); |
| 796 |
write(&dir, "legacy.js", "if ('ontouchstart' in window) {}\n"); |
| 797 |
check_touch_density(&dir); |
| 798 |
} |
| 799 |
|
| 800 |
#[test] |
| 801 |
#[should_panic(expected = "no TOUCH_DENSITY literal found")] |
| 802 |
fn a_frontend_that_states_nothing_fails() { |
| 803 |
let dir = scratch("empty"); |
| 804 |
write(&dir, "app.js", "export const x = 1;\n"); |
| 805 |
check_touch_density(&dir); |
| 806 |
} |
| 807 |
|
| 808 |
#[test] |
| 809 |
fn a_use_site_is_not_a_declaration() { |
| 810 |
|
| 811 |
|
| 812 |
|
| 813 |
let src = |
| 814 |
format!("import {{ {CONST_NAME} }} from './touch.js';\nmatchMedia({CONST_NAME});\n"); |
| 815 |
assert!(touch_density_literals(&src).is_empty()); |
| 816 |
} |
| 817 |
|
| 818 |
#[test] |
| 819 |
fn nested_files_are_read() { |
| 820 |
|
| 821 |
|
| 822 |
let dir = scratch("nested"); |
| 823 |
write(&dir, "touch.js", &declaring()); |
| 824 |
write(&dir, "screens/legacy.js", "navigator.maxTouchPoints > 0;\n"); |
| 825 |
let files = js_files(&dir); |
| 826 |
assert_eq!(files.len(), 2); |
| 827 |
} |
| 828 |
|
| 829 |
#[test] |
| 830 |
fn a_non_js_file_is_ignored() { |
| 831 |
let dir = scratch("nonjs"); |
| 832 |
write(&dir, "touch.js", &declaring()); |
| 833 |
write(&dir, "styles.css", "body { }\n"); |
| 834 |
assert_eq!(js_files(&dir).len(), 1); |
| 835 |
} |
| 836 |
|
| 837 |
fn frontend(name: &str) -> PathBuf { |
| 838 |
let dir = scratch(name); |
| 839 |
std::fs::create_dir_all(dir.join("css")).unwrap(); |
| 840 |
std::fs::create_dir_all(dir.join("js")).unwrap(); |
| 841 |
dir |
| 842 |
} |
| 843 |
|
| 844 |
|
| 845 |
fn boundary() -> u16 { |
| 846 |
SizeClass::Medium.min_px() |
| 847 |
} |
| 848 |
|
| 849 |
#[test] |
| 850 |
fn the_crates_own_boundaries_pass() { |
| 851 |
let dir = frontend("bp-ok"); |
| 852 |
write( |
| 853 |
&dir, |
| 854 |
"css/styles.css", |
| 855 |
&format!("@media (min-width: {}px) {{ body {{ }} }}\n", boundary()), |
| 856 |
); |
| 857 |
check_breakpoints(&dir, &[]); |
| 858 |
} |
| 859 |
|
| 860 |
#[test] |
| 861 |
#[should_panic(expected = "disagree with makeover_geometry::SizeClass")] |
| 862 |
fn a_stale_css_width_fails() { |
| 863 |
let dir = frontend("bp-css"); |
| 864 |
write(&dir, "css/styles.css", "@media (max-width: 768px) { }\n"); |
| 865 |
check_breakpoints(&dir, &[]); |
| 866 |
} |
| 867 |
|
| 868 |
#[test] |
| 869 |
#[should_panic(expected = "disagree with makeover_geometry::SizeClass")] |
| 870 |
fn a_stale_js_width_fails() { |
| 871 |
let dir = frontend("bp-js"); |
| 872 |
write(&dir, "js/shell.js", "matchMedia('(max-width: 768px)');\n"); |
| 873 |
check_breakpoints(&dir, &[]); |
| 874 |
} |
| 875 |
|
| 876 |
#[test] |
| 877 |
fn a_declared_tuning_width_passes() { |
| 878 |
let dir = frontend("bp-tuning"); |
| 879 |
write(&dir, "css/styles.css", "@media (min-width: 1400px) { }\n"); |
| 880 |
check_breakpoints(&dir, &[1400]); |
| 881 |
} |
| 882 |
|
| 883 |
#[test] |
| 884 |
fn a_width_in_a_comment_is_prose() { |
| 885 |
|
| 886 |
|
| 887 |
let dir = frontend("bp-comment"); |
| 888 |
write( |
| 889 |
&dir, |
| 890 |
"css/styles.css", |
| 891 |
"/* was @media (max-width: 768px) until the size classes landed */\n", |
| 892 |
); |
| 893 |
check_breakpoints(&dir, &[]); |
| 894 |
} |
| 895 |
|
| 896 |
#[test] |
| 897 |
fn an_unparenthesized_width_is_not_a_breakpoint() { |
| 898 |
|
| 899 |
|
| 900 |
|
| 901 |
let dir = frontend("bp-inline"); |
| 902 |
write( |
| 903 |
&dir, |
| 904 |
"js/style.js", |
| 905 |
"el.style.cssText = 'max-width: 320px; display: block';\n", |
| 906 |
); |
| 907 |
check_breakpoints(&dir, &[]); |
| 908 |
} |
| 909 |
|
| 910 |
#[test] |
| 911 |
fn nested_css_is_read() { |
| 912 |
|
| 913 |
|
| 914 |
let dir = frontend("bp-nested"); |
| 915 |
write( |
| 916 |
&dir, |
| 917 |
"css/screens/detail.css", |
| 918 |
"@media (max-width: 768px) { }\n", |
| 919 |
); |
| 920 |
let found = std::panic::catch_unwind(|| check_breakpoints(&dir, &[])); |
| 921 |
assert!(found.is_err(), "a nested stylesheet must be scanned"); |
| 922 |
} |
| 923 |
|
| 924 |
#[test] |
| 925 |
fn a_named_list_is_checked() { |
| 926 |
let dir = frontend("bp-list"); |
| 927 |
write(&dir, "css/style.css", "@media (max-width: 768px) { }\n"); |
| 928 |
let listed = dir.join("css/style.css"); |
| 929 |
let err = |
| 930 |
std::panic::catch_unwind(|| check_breakpoints_files(&[&listed], &[])).unwrap_err(); |
| 931 |
let msg = err.downcast_ref::<String>().expect("String payload"); |
| 932 |
assert!(msg.contains("style.css:1"), "got: {msg}"); |
| 933 |
} |
| 934 |
|
| 935 |
#[test] |
| 936 |
#[should_panic(expected = "read ")] |
| 937 |
fn a_listed_file_that_is_gone_fails() { |
| 938 |
|
| 939 |
|
| 940 |
let dir = frontend("bp-missing"); |
| 941 |
check_breakpoints_files(&[dir.join("css/never-written.css")], &[]); |
| 942 |
} |
| 943 |
|
| 944 |
#[test] |
| 945 |
fn a_listed_js_file_is_parsed_as_script() { |
| 946 |
|
| 947 |
|
| 948 |
let dir = frontend("bp-list-js"); |
| 949 |
write( |
| 950 |
&dir, |
| 951 |
"js/style.js", |
| 952 |
"el.style.cssText = 'max-width: 320px';\n", |
| 953 |
); |
| 954 |
check_breakpoints_files(&[dir.join("js/style.js")], &[]); |
| 955 |
} |
| 956 |
|
| 957 |
#[test] |
| 958 |
fn the_error_names_the_file_and_line() { |
| 959 |
let dir = frontend("bp-message"); |
| 960 |
write( |
| 961 |
&dir, |
| 962 |
"css/styles.css", |
| 963 |
"body { }\n@media (max-width: 768px) { }\n", |
| 964 |
); |
| 965 |
let err = std::panic::catch_unwind(|| check_breakpoints(&dir, &[])).unwrap_err(); |
| 966 |
let msg = err |
| 967 |
.downcast_ref::<String>() |
| 968 |
.expect("panic payload is a String"); |
| 969 |
assert!(msg.contains("css/styles.css:2"), "got: {msg}"); |
| 970 |
} |
| 971 |
|
| 972 |
#[test] |
| 973 |
fn a_rule_restating_a_generated_class_fails_and_names_it() { |
| 974 |
let dir = scratch("vocab-clash"); |
| 975 |
|
| 976 |
|
| 977 |
write( |
| 978 |
&dir, |
| 979 |
"css/styles.css", |
| 980 |
"body { color: red; }\n.card { box-shadow: none; }\n", |
| 981 |
); |
| 982 |
let err = |
| 983 |
std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[])) |
| 984 |
.unwrap_err(); |
| 985 |
let msg = err |
| 986 |
.downcast_ref::<String>() |
| 987 |
.expect("panic payload is a String"); |
| 988 |
assert!(msg.contains(".card"), "got: {msg}"); |
| 989 |
assert!(msg.contains("box-shadow"), "got: {msg}"); |
| 990 |
assert!(msg.contains("css/styles.css"), "got: {msg}"); |
| 991 |
} |
| 992 |
|
| 993 |
#[test] |
| 994 |
fn an_app_class_of_its_own_is_left_alone() { |
| 995 |
let dir = scratch("vocab-clean"); |
| 996 |
write( |
| 997 |
&dir, |
| 998 |
"css/styles.css", |
| 999 |
".task-list-container { overflow: auto; }\n.day-plan-slot { height: 1rem; }\n", |
| 1000 |
); |
| 1001 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1002 |
} |
| 1003 |
|
| 1004 |
#[test] |
| 1005 |
fn the_generated_sheet_is_skipped_rather_than_reported_against_itself() { |
| 1006 |
let dir = scratch("vocab-generated"); |
| 1007 |
let opts = Emit::default(); |
| 1008 |
write(&dir, "css/layout.css", &makeover_webview::stylesheet(&opts)); |
| 1009 |
|
| 1010 |
|
| 1011 |
check_vocabulary(&dir, &opts, &["layout.css"], &[], &[]); |
| 1012 |
} |
| 1013 |
|
| 1014 |
#[test] |
| 1015 |
fn a_prefixed_app_is_checked_against_its_own_prefix() { |
| 1016 |
let dir = scratch("vocab-prefix"); |
| 1017 |
let opts = Emit { |
| 1018 |
class_prefix: "mo-", |
| 1019 |
..Emit::default() |
| 1020 |
}; |
| 1021 |
|
| 1022 |
|
| 1023 |
write(&dir, "css/styles.css", ".card { box-shadow: none; }\n"); |
| 1024 |
check_vocabulary(&dir, &opts, &[], &[], &[]); |
| 1025 |
|
| 1026 |
let dir = scratch("vocab-prefix-clash"); |
| 1027 |
write(&dir, "css/styles.css", ".mo-card { box-shadow: none; }\n"); |
| 1028 |
assert!(std::panic::catch_unwind(|| check_vocabulary(&dir, &opts, &[], &[], &[])).is_err()); |
| 1029 |
} |
| 1030 |
|
| 1031 |
#[test] |
| 1032 |
fn a_class_shared_without_a_shared_property_is_left_alone() { |
| 1033 |
let dir = scratch("vocab-additive"); |
| 1034 |
|
| 1035 |
|
| 1036 |
write( |
| 1037 |
&dir, |
| 1038 |
"css/styles.css", |
| 1039 |
".badge { padding: 2px; border-radius: 3px; font-weight: 600; }\n", |
| 1040 |
); |
| 1041 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1042 |
} |
| 1043 |
|
| 1044 |
#[test] |
| 1045 |
fn a_reviewed_pair_passes_and_stops_passing_when_it_stops_colliding() { |
| 1046 |
let dir = scratch("vocab-allowed"); |
| 1047 |
write(&dir, "css/styles.css", ".card { box-shadow: none; }\n"); |
| 1048 |
check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")], &[]); |
| 1049 |
|
| 1050 |
|
| 1051 |
|
| 1052 |
let dir = scratch("vocab-allowed-stale"); |
| 1053 |
write(&dir, "css/styles.css", ".card { padding: 2px; }\n"); |
| 1054 |
let err = std::panic::catch_unwind(|| { |
| 1055 |
check_vocabulary(&dir, &Emit::default(), &[], &[("card", "box-shadow")], &[]); |
| 1056 |
}) |
| 1057 |
.unwrap_err(); |
| 1058 |
let msg = err |
| 1059 |
.downcast_ref::<String>() |
| 1060 |
.expect("panic payload is a String"); |
| 1061 |
assert!(msg.contains("no longer collides"), "got: {msg}"); |
| 1062 |
} |
| 1063 |
|
| 1064 |
#[test] |
| 1065 |
fn an_element_rule_clobbering_a_generated_class_fails_and_names_all_three() { |
| 1066 |
let dir = scratch("vocab-element"); |
| 1067 |
|
| 1068 |
|
| 1069 |
|
| 1070 |
write(&dir, "css/styles.css", "select { box-shadow: none; }\n"); |
| 1071 |
let err = |
| 1072 |
std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[])) |
| 1073 |
.unwrap_err(); |
| 1074 |
let msg = err |
| 1075 |
.downcast_ref::<String>() |
| 1076 |
.expect("panic payload is a String"); |
| 1077 |
assert!(msg.contains("select {"), "got: {msg}"); |
| 1078 |
assert!(msg.contains(".field"), "got: {msg}"); |
| 1079 |
assert!(msg.contains("box-shadow"), "got: {msg}"); |
| 1080 |
assert!(msg.contains("css/styles.css"), "got: {msg}"); |
| 1081 |
} |
| 1082 |
|
| 1083 |
#[test] |
| 1084 |
fn a_handoff_on_the_class_is_the_remedy_and_reads_as_one() { |
| 1085 |
let dir = scratch("vocab-element-handoff"); |
| 1086 |
|
| 1087 |
|
| 1088 |
|
| 1089 |
|
| 1090 |
write( |
| 1091 |
&dir, |
| 1092 |
"css/styles.css", |
| 1093 |
"select { box-shadow: none; }\n.field { box-shadow: revert-layer; }\n", |
| 1094 |
); |
| 1095 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1096 |
} |
| 1097 |
|
| 1098 |
#[test] |
| 1099 |
fn a_property_the_app_states_on_the_class_is_not_the_element_rules_doing() { |
| 1100 |
let dir = scratch("vocab-element-spoken-for"); |
| 1101 |
|
| 1102 |
|
| 1103 |
|
| 1104 |
|
| 1105 |
write( |
| 1106 |
&dir, |
| 1107 |
"css/styles.css", |
| 1108 |
"select { box-shadow: none; }\n.field { box-shadow: none; }\n", |
| 1109 |
); |
| 1110 |
check_vocabulary(&dir, &Emit::default(), &[], &[("field", "box-shadow")], &[]); |
| 1111 |
} |
| 1112 |
|
| 1113 |
#[test] |
| 1114 |
fn a_handoff_that_loses_to_the_rule_it_remedies_is_not_a_remedy() { |
| 1115 |
let dir = scratch("vocab-element-weak-handoff"); |
| 1116 |
|
| 1117 |
|
| 1118 |
|
| 1119 |
write( |
| 1120 |
&dir, |
| 1121 |
"css/styles.css", |
| 1122 |
"select:focus { box-shadow: none; }\n.field { box-shadow: revert-layer; }\n", |
| 1123 |
); |
| 1124 |
let err = |
| 1125 |
std::panic::catch_unwind(|| check_vocabulary(&dir, &Emit::default(), &[], &[], &[])) |
| 1126 |
.unwrap_err(); |
| 1127 |
let msg = err |
| 1128 |
.downcast_ref::<String>() |
| 1129 |
.expect("panic payload is a String"); |
| 1130 |
assert!(msg.contains(".field"), "got: {msg}"); |
| 1131 |
|
| 1132 |
|
| 1133 |
let dir = scratch("vocab-element-strong-handoff"); |
| 1134 |
write( |
| 1135 |
&dir, |
| 1136 |
"css/styles.css", |
| 1137 |
"select:focus { box-shadow: none; }\nselect.field { box-shadow: revert-layer; }\n", |
| 1138 |
); |
| 1139 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1140 |
} |
| 1141 |
|
| 1142 |
#[test] |
| 1143 |
fn a_scoped_rule_is_not_read_as_an_element_rule() { |
| 1144 |
let dir = scratch("vocab-element-scoped"); |
| 1145 |
|
| 1146 |
|
| 1147 |
|
| 1148 |
write( |
| 1149 |
&dir, |
| 1150 |
"css/styles.css", |
| 1151 |
".wizard select { box-shadow: none; }\n", |
| 1152 |
); |
| 1153 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1154 |
} |
| 1155 |
|
| 1156 |
#[test] |
| 1157 |
fn an_element_the_design_system_never_renders_onto_is_left_alone() { |
| 1158 |
let dir = scratch("vocab-element-unpaired"); |
| 1159 |
|
| 1160 |
|
| 1161 |
write(&dir, "css/styles.css", "footer { box-shadow: none; }\n"); |
| 1162 |
check_vocabulary(&dir, &Emit::default(), &[], &[], &[]); |
| 1163 |
} |
| 1164 |
|
| 1165 |
#[test] |
| 1166 |
fn a_reviewed_element_pairing_passes_and_stops_passing_when_it_stops_colliding() { |
| 1167 |
let dir = scratch("vocab-element-allowed"); |
| 1168 |
write(&dir, "css/styles.css", "select { box-shadow: none; }\n"); |
| 1169 |
check_vocabulary( |
| 1170 |
&dir, |
| 1171 |
&Emit::default(), |
| 1172 |
&[], |
| 1173 |
&[], |
| 1174 |
&[("select", "field", "box-shadow")], |
| 1175 |
); |
| 1176 |
|
| 1177 |
|
| 1178 |
|
| 1179 |
let dir = scratch("vocab-element-allowed-stale"); |
| 1180 |
write(&dir, "css/styles.css", "select { padding: 2px; }\n"); |
| 1181 |
let err = std::panic::catch_unwind(|| { |
| 1182 |
check_vocabulary( |
| 1183 |
&dir, |
| 1184 |
&Emit::default(), |
| 1185 |
&[], |
| 1186 |
&[], |
| 1187 |
&[("select", "field", "box-shadow")], |
| 1188 |
); |
| 1189 |
}) |
| 1190 |
.unwrap_err(); |
| 1191 |
let msg = err |
| 1192 |
.downcast_ref::<String>() |
| 1193 |
.expect("panic payload is a String"); |
| 1194 |
assert!(msg.contains("no longer collides"), "got: {msg}"); |
| 1195 |
} |
| 1196 |
|
| 1197 |
#[test] |
| 1198 |
fn dead_vocabulary_above_the_seal_fails_and_below_it_passes() { |
| 1199 |
let dir = scratch("vocab-seal"); |
| 1200 |
let opts = Emit::default(); |
| 1201 |
let all = makeover_webview::vocabulary::names(&opts).len(); |
| 1202 |
|
| 1203 |
write(&dir, "index.html", "<div></div>\n"); |
| 1204 |
let markup = [dir.join("index.html")]; |
| 1205 |
|
| 1206 |
check_vocabulary_use(&markup, &opts, all); |
| 1207 |
assert!( |
| 1208 |
std::panic::catch_unwind(|| check_vocabulary_use(&markup, &opts, all - 1)).is_err(), |
| 1209 |
"a vocabulary deader than the seal has to fail" |
| 1210 |
); |
| 1211 |
} |
| 1212 |
|
| 1213 |
#[test] |
| 1214 |
fn both_quote_styles_read() { |
| 1215 |
let want = Density::Touch.media_condition(); |
| 1216 |
for q in ['\'', '"'] { |
| 1217 |
let src = format!("const {CONST_NAME} = {q}{want}{q};\n"); |
| 1218 |
let found = touch_density_literals(&src); |
| 1219 |
assert_eq!(found.len(), 1); |
| 1220 |
assert_eq!(found[0].1, want); |
| 1221 |
} |
| 1222 |
} |
| 1223 |
} |
| 1224 |
|