|
1 |
+ |
//! Checks that a hand-written frontend still agrees with the crate that
|
|
2 |
+ |
//! generates its siblings.
|
|
3 |
+ |
//!
|
|
4 |
+ |
//! The generated files cannot drift: they ask makeover-geometry for the answer.
|
|
5 |
+ |
//! The hand-written ones state it, and a stylesheet or a script that disagrees
|
|
6 |
+ |
//! with the crate is not an error at any point -- it is a rule that quietly
|
|
7 |
+ |
//! stops matching where it used to. Cheaper to read a panic naming the line.
|
|
8 |
+ |
//!
|
|
9 |
+ |
//! Deliberately assertions and not substitutions. A JS or CSS file that has to
|
|
10 |
+ |
//! be generated to be correct stops being readable on its own, and it is worth
|
|
11 |
+ |
//! something that you can still open the frontend in a browser and have it
|
|
12 |
+ |
//! work.
|
|
13 |
+ |
|
|
14 |
+ |
use std::path::{Path, PathBuf};
|
|
15 |
+ |
|
|
16 |
+ |
use makeover_geometry::Density;
|
|
17 |
+ |
|
|
18 |
+ |
/// The declaration this check reads. Shared vocabulary, not a parameter: two
|
|
19 |
+ |
/// apps and a server naming the same string want the same name for it.
|
|
20 |
+ |
const CONST_NAME: &str = "TOUCH_DENSITY";
|
|
21 |
+ |
|
|
22 |
+ |
/// The capability sniffs the media query replaced, so neither can come back by
|
|
23 |
+ |
/// copy-paste.
|
|
24 |
+ |
///
|
|
25 |
+ |
/// Both ask the hardware what it has rather than what is pointing at the
|
|
26 |
+ |
/// screen, so both say yes to a touchscreen laptop driving a mouse.
|
|
27 |
+ |
const SNIFFS: &[&str] = &["ontouchstart", "maxTouchPoints"];
|
|
28 |
+ |
|
|
29 |
+ |
/// Fail the build if a JS copy of the touch-density query has drifted from
|
|
30 |
+ |
/// [`Density::Touch`].
|
|
31 |
+ |
///
|
|
32 |
+ |
/// Every `.js` file under `js_dir`, recursively, must state the crate's own
|
|
33 |
+ |
/// media condition in a `const TOUCH_DENSITY = '...'`, at least one file must
|
|
34 |
+ |
/// declare it, and no file may name a capability sniff.
|
|
35 |
+ |
///
|
|
36 |
+ |
/// The string is the crate's and no app gets a say in it, which is why this
|
|
37 |
+ |
/// check takes no policy argument. The generated `geometry.css` already keys
|
|
38 |
+ |
/// its touch gap overrides on the same condition, so the gestures and the
|
|
39 |
+ |
/// spacing agree by construction rather than by two people remembering.
|
|
40 |
+ |
///
|
|
41 |
+ |
/// Emits `cargo:rerun-if-changed` for every file it read.
|
|
42 |
+ |
///
|
|
43 |
+ |
/// # Panics
|
|
44 |
+ |
///
|
|
45 |
+ |
/// If `js_dir` cannot be read, if no declaration is found, or if any file
|
|
46 |
+ |
/// disagrees with the crate. A build script has nowhere useful to return an
|
|
47 |
+ |
/// error to, and a frontend that disagrees with its own stylesheet is worse
|
|
48 |
+ |
/// than a failed build.
|
|
49 |
+ |
pub fn check_touch_density(js_dir: impl AsRef<Path>) {
|
|
50 |
+ |
let js_dir = js_dir.as_ref();
|
|
51 |
+ |
let want = Density::Touch.media_condition();
|
|
52 |
+ |
let mut wrong: Vec<String> = Vec::new();
|
|
53 |
+ |
let mut found = 0usize;
|
|
54 |
+ |
|
|
55 |
+ |
let files = js_files(js_dir);
|
|
56 |
+ |
for path in &files {
|
|
57 |
+ |
let src = std::fs::read_to_string(path).expect("read js file");
|
|
58 |
+ |
let name = path
|
|
59 |
+ |
.strip_prefix(js_dir)
|
|
60 |
+ |
.unwrap_or(path)
|
|
61 |
+ |
.display()
|
|
62 |
+ |
.to_string();
|
|
63 |
+ |
|
|
64 |
+ |
for (offset, literal) in touch_density_literals(&src) {
|
|
65 |
+ |
found += 1;
|
|
66 |
+ |
if literal != want {
|
|
67 |
+ |
wrong.push(format!(
|
|
68 |
+ |
" {name}:{} {CONST_NAME} = '{literal}'",
|
|
69 |
+ |
line_of(&src, offset)
|
|
70 |
+ |
));
|
|
71 |
+ |
}
|
|
72 |
+ |
}
|
|
73 |
+ |
|
|
74 |
+ |
for needle in SNIFFS {
|
|
75 |
+ |
if let Some(offset) = src.find(needle) {
|
|
76 |
+ |
wrong.push(format!(
|
|
77 |
+ |
" {name}:{} {needle} -- device sniff, not a density question",
|
|
78 |
+ |
line_of(&src, offset)
|
|
79 |
+ |
));
|
|
80 |
+ |
}
|
|
81 |
+ |
}
|
|
82 |
+ |
}
|
|
83 |
+ |
|
|
84 |
+ |
assert!(
|
|
85 |
+ |
found > 0,
|
|
86 |
+ |
"no {CONST_NAME} literal found under {}.\n\n\
|
|
87 |
+ |
A frontend that asks whether it is being touched states\n\
|
|
88 |
+ |
makeover_geometry::Density::Touch's media condition in a const of that\n\
|
|
89 |
+ |
name, and this check exists to keep every copy equal to it. If the\n\
|
|
90 |
+ |
const was renamed, rename it back rather than dropping the check; if\n\
|
|
91 |
+ |
this frontend genuinely asks no density question, drop the call.",
|
|
92 |
+ |
js_dir.display()
|
|
93 |
+ |
);
|
|
94 |
+ |
|
|
95 |
+ |
assert!(
|
|
96 |
+ |
wrong.is_empty(),
|
|
97 |
+ |
"hand-written touch detection disagrees with makeover_geometry::Density.\n\n\
|
|
98 |
+ |
Density::Touch.media_condition() is: {want}\n\n\
|
|
99 |
+ |
Wrong:\n{}\n\n\
|
|
100 |
+ |
Fix the JS to state the crate's string. Never widen it to catch a\n\
|
|
101 |
+ |
device the query misses: density is what is pointing at the screen,\n\
|
|
102 |
+ |
and a laptop with a touchscreen and a mouse is a pointer device.",
|
|
103 |
+ |
wrong.join("\n")
|
|
104 |
+ |
);
|
|
105 |
+ |
|
|
106 |
+ |
for path in &files {
|
|
107 |
+ |
println!("cargo:rerun-if-changed={}", path.display());
|
|
108 |
+ |
}
|
|
109 |
+ |
}
|
|
110 |
+ |
|
|
111 |
+ |
/// Every `.js` file under `dir`, recursively, sorted.
|
|
112 |
+ |
///
|
|
113 |
+ |
/// Recursive because a consumer's scripts are not always one flat directory:
|
|
114 |
+ |
/// the Tauri apps keep `js/*.js`, the server keeps subdirectories under
|
|
115 |
+ |
/// `static/`, and a check that silently skipped the nested half would report
|
|
116 |
+ |
/// clean on the files most likely to have been copied.
|
|
117 |
+ |
fn js_files(dir: &Path) -> Vec<PathBuf> {
|
|
118 |
+ |
let mut out = Vec::new();
|
|
119 |
+ |
let mut stack = vec![dir.to_path_buf()];
|
|
120 |
+ |
while let Some(d) = stack.pop() {
|
|
121 |
+ |
for entry in std::fs::read_dir(&d)
|
|
122 |
+ |
.unwrap_or_else(|e| panic!("read {}: {e}", d.display()))
|
|
123 |
+ |
.flatten()
|
|
124 |
+ |
{
|
|
125 |
+ |
let path = entry.path();
|
|
126 |
+ |
if path.is_dir() {
|
|
127 |
+ |
stack.push(path);
|
|
128 |
+ |
} else if path.extension().is_some_and(|x| x == "js") {
|
|
129 |
+ |
out.push(path);
|
|
130 |
+ |
}
|
|
131 |
+ |
}
|
|
132 |
+ |
}
|
|
133 |
+ |
out.sort();
|
|
134 |
+ |
out
|
|
135 |
+ |
}
|
|
136 |
+ |
|
|
137 |
+ |
/// `(byte offset of the declaration, the literal's contents)` for every
|
|
138 |
+ |
/// `const TOUCH_DENSITY = '...'` in a JS source.
|
|
139 |
+ |
fn touch_density_literals(src: &str) -> Vec<(usize, &str)> {
|
|
140 |
+ |
let mut out = Vec::new();
|
|
141 |
+ |
let mut at = 0;
|
|
142 |
+ |
while let Some(i) = src[at..].find(CONST_NAME) {
|
|
143 |
+ |
let start = at + i;
|
|
144 |
+ |
at = start + CONST_NAME.len();
|
|
145 |
+ |
// Only the declaration states the string; a use site reads the const.
|
|
146 |
+ |
let Some(rest) = src[at..].strip_prefix(" = ") else {
|
|
147 |
+ |
continue;
|
|
148 |
+ |
};
|
|
149 |
+ |
let open = at + " = ".len();
|
|
150 |
+ |
let Some(quote @ ('\'' | '"')) = rest.chars().next() else {
|
|
151 |
+ |
continue;
|
|
152 |
+ |
};
|
|
153 |
+ |
let body = open + 1;
|
|
154 |
+ |
if let Some(j) = src[body..].find(quote) {
|
|
155 |
+ |
out.push((start, &src[body..body + j]));
|
|
156 |
+ |
at = body + j + 1;
|
|
157 |
+ |
}
|
|
158 |
+ |
}
|
|
159 |
+ |
out
|
|
160 |
+ |
}
|
|
161 |
+ |
|
|
162 |
+ |
fn line_of(src: &str, offset: usize) -> usize {
|
|
163 |
+ |
src[..offset].matches('\n').count() + 1
|
|
164 |
+ |
}
|
|
165 |
+ |
|
|
166 |
+ |
#[cfg(test)]
|
|
167 |
+ |
mod tests {
|
|
168 |
+ |
use super::*;
|
|
169 |
+ |
|
|
170 |
+ |
fn scratch(name: &str) -> PathBuf {
|
|
171 |
+ |
let dir = std::env::temp_dir().join(format!("makeover-drift-{}-{name}", std::process::id()));
|
|
172 |
+ |
let _ = std::fs::remove_dir_all(&dir);
|
|
173 |
+ |
std::fs::create_dir_all(&dir).expect("create scratch");
|
|
174 |
+ |
dir
|
|
175 |
+ |
}
|
|
176 |
+ |
|
|
177 |
+ |
fn write(dir: &Path, name: &str, src: &str) {
|
|
178 |
+ |
if let Some(parent) = dir.join(name).parent() {
|
|
179 |
+ |
std::fs::create_dir_all(parent).unwrap();
|
|
180 |
+ |
}
|
|
181 |
+ |
std::fs::write(dir.join(name), src).unwrap();
|
|
182 |
+ |
}
|
|
183 |
+ |
|
|
184 |
+ |
fn declaring() -> String {
|
|
185 |
+ |
format!(
|
|
186 |
+ |
"const {CONST_NAME} = '{}';\n",
|
|
187 |
+ |
Density::Touch.media_condition()
|
|
188 |
+ |
)
|
|
189 |
+ |
}
|
|
190 |
+ |
|
|
191 |
+ |
#[test]
|
|
192 |
+ |
fn the_crates_own_string_passes() {
|
|
193 |
+ |
let dir = scratch("ok");
|
|
194 |
+ |
write(&dir, "touch.js", &declaring());
|
|
195 |
+ |
check_touch_density(&dir);
|
|
196 |
+ |
}
|
|
197 |
+ |
|
|
198 |
+ |
#[test]
|
|
199 |
+ |
#[should_panic(expected = "disagrees with makeover_geometry::Density")]
|
|
200 |
+ |
fn a_drifted_literal_fails() {
|
|
201 |
+ |
let dir = scratch("drift");
|
|
202 |
+ |
write(&dir, "touch.js", &declaring());
|
|
203 |
+ |
write(
|
|
204 |
+ |
&dir,
|
|
205 |
+ |
"haptics.js",
|
|
206 |
+ |
&format!("const {CONST_NAME} = '(pointer: coarse)';\n"),
|
|
207 |
+ |
);
|
|
208 |
+ |
check_touch_density(&dir);
|
|
209 |
+ |
}
|
|
210 |
+ |
|
|
211 |
+ |
#[test]
|
|
212 |
+ |
#[should_panic(expected = "device sniff")]
|
|
213 |
+ |
fn the_sniff_cannot_come_back() {
|
|
214 |
+ |
let dir = scratch("sniff");
|
|
215 |
+ |
write(&dir, "touch.js", &declaring());
|
|
216 |
+ |
write(&dir, "legacy.js", "if ('ontouchstart' in window) {}\n");
|
|
217 |
+ |
check_touch_density(&dir);
|
|
218 |
+ |
}
|
|
219 |
+ |
|
|
220 |
+ |
#[test]
|
|
221 |
+ |
#[should_panic(expected = "no TOUCH_DENSITY literal found")]
|
|
222 |
+ |
fn a_frontend_that_states_nothing_fails() {
|
|
223 |
+ |
let dir = scratch("empty");
|
|
224 |
+ |
write(&dir, "app.js", "export const x = 1;\n");
|
|
225 |
+ |
check_touch_density(&dir);
|
|
226 |
+ |
}
|
|
227 |
+ |
|
|
228 |
+ |
#[test]
|
|
229 |
+ |
fn a_use_site_is_not_a_declaration() {
|
|
230 |
+ |
// The const is read far more often than it is declared, and a read
|
|
231 |
+ |
// states no string. Counting one as a declaration would make the
|
|
232 |
+ |
// `found > 0` assertion pass on a frontend that only imports it.
|
|
233 |
+ |
let src = format!("import {{ {CONST_NAME} }} from './touch.js';\nmatchMedia({CONST_NAME});\n");
|
|
234 |
+ |
assert!(touch_density_literals(&src).is_empty());
|
|
235 |
+ |
}
|
|
236 |
+ |
|
|
237 |
+ |
#[test]
|
|
238 |
+ |
fn nested_files_are_read() {
|
|
239 |
+ |
// The server keeps its scripts in subdirectories, and the nested half
|
|
240 |
+ |
// is the half most likely to be a copy.
|
|
241 |
+ |
let dir = scratch("nested");
|
|
242 |
+ |
write(&dir, "touch.js", &declaring());
|
|
243 |
+ |
write(&dir, "screens/legacy.js", "navigator.maxTouchPoints > 0;\n");
|
|
244 |
+ |
let files = js_files(&dir);
|
|
245 |
+ |
assert_eq!(files.len(), 2);
|
|
246 |
+ |
}
|
|
247 |
+ |
|
|
248 |
+ |
#[test]
|
|
249 |
+ |
fn a_non_js_file_is_ignored() {
|
|
250 |
+ |
let dir = scratch("nonjs");
|
|
251 |
+ |
write(&dir, "touch.js", &declaring());
|
|
252 |
+ |
write(&dir, "styles.css", "body { }\n");
|
|
253 |
+ |
assert_eq!(js_files(&dir).len(), 1);
|
|
254 |
+ |
}
|
|
255 |
+ |
|
|
256 |
+ |
#[test]
|
|
257 |
+ |
fn both_quote_styles_read() {
|
|
258 |
+ |
let want = Density::Touch.media_condition();
|
|
259 |
+ |
for q in ['\'', '"'] {
|
|
260 |
+ |
let src = format!("const {CONST_NAME} = {q}{want}{q};\n");
|
|
261 |
+ |
let found = touch_density_literals(&src);
|
|
262 |
+ |
assert_eq!(found.len(), 1);
|
|
263 |
+ |
assert_eq!(found[0].1, want);
|
|
264 |
+ |
}
|
|
265 |
+ |
}
|
|
266 |
+ |
}
|