Source file css_compare.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
(** CSS comparison utilities for testing using the proper CSS parser *)
open Cascade
let = 3
module D = Tree_diff
let is_empty = D.is_empty
type stats = {
expected : string;
actual : string;
expected_chars : int;
actual_chars : int;
added_rules : int;
removed_rules : int;
modified_rules : int;
reordered_rules : int;
regrouped_rules : int;
container_changes : int;
}
(** Extract path component for an at-rule statement. Returns Some (path_segment,
inner_statements) if the statement is an at-rule, None otherwise. *)
let supports_path_and_inner stmt =
match Css.as_supports stmt with
| Some (cond, inner) ->
Some ("@supports " ^ Css.Supports.to_string cond, inner)
| None -> None
let media_path_and_inner stmt =
match Css.as_media stmt with
| Some (cond, inner) -> Some ("@media " ^ Css.Media.to_string cond, inner)
| None -> None
let layer_path_and_inner stmt =
match Css.as_layer stmt with
| Some (name_opt, inner) ->
let name = match name_opt with Some n -> n | None -> "" in
Some ("@layer " ^ name, inner)
| None -> None
let container_path_and_inner stmt =
match Css.as_container stmt with
| Some (name_opt, cond, inner) ->
let prefix = match name_opt with Some n -> n ^ " " | None -> "" in
let cond_str =
match cond with Some c -> Css.Container.to_string c | None -> ""
in
Some ("@container " ^ prefix ^ cond_str, inner)
| None -> None
let first_some thunks stmt =
let rec try_each = function
| [] -> None
| f :: rest -> (
match f stmt with Some _ as r -> r | None -> try_each rest)
in
try_each thunks
let at_rule_path_and_inner stmt =
first_some
[
supports_path_and_inner;
media_path_and_inner;
layer_path_and_inner;
container_path_and_inner;
]
stmt
let css =
let stripped =
if not (String.starts_with ~prefix:"/*!" css) then css
else
let len = String.length css in
let rec i =
if i + 1 >= len then None
else if css.[i] = '*' && css.[i + 1] = '/' then Some (i + 2)
else find_comment_end (i + 1)
in
match find_comment_end header_comment_start with
| None -> css
| Some j ->
let start_pos = if j < len && css.[j] = '\n' then j + 1 else j in
if start_pos >= len then ""
else String.sub css start_pos (len - start_pos)
in
String.trim stripped
let tree_diff ~(expected : Css.t) ~(actual : Css.t) : Tree_diff.t =
D.diff ~expected ~actual
let rec collect_keyed_rules acc path stmts =
List.fold_left
(fun acc stmt ->
match Css.as_rule stmt with
| Some (sel, decls, _) ->
let key = String.concat " " (path @ [ Css.Selector.to_string sel ]) in
(key, decls) :: acc
| None -> (
match at_rule_path_and_inner stmt with
| Some (segment, inner) ->
collect_keyed_rules acc (path @ [ segment ]) inner
| None -> acc))
acc stmts
let sig_of_decls decls =
decls
|> List.map (fun d -> (Css.declaration_name d, Css.declaration_value d))
|> List.sort (fun (a1, b1) (a2, b2) ->
let c = String.compare a1 a2 in
if c <> 0 then c else String.compare b1 b2)
let group_into_table rules =
let tbl = Hashtbl.create 128 in
List.iter
(fun (k, d) ->
let lst = match Hashtbl.find_opt tbl k with Some l -> l | None -> [] in
Hashtbl.replace tbl k (lst @ [ d ]))
rules;
tbl
let diff_same_key_pair key d1 d2 =
let sig1 = sig_of_decls d1 in
let sig2 = sig_of_decls d2 in
if sig1 = sig2 && d1 <> d2 && D.reorder_is_significant d1 d2 then
Some
(D.Reordered
{
selector = key;
expected_pos = -1;
actual_pos = -1;
swapped_with = None;
old_declarations = Some d1;
new_declarations = Some d2;
}
: D.rule_diff)
else if sig1 <> sig2 then
Some
(D.Content_changed
{
selector = key;
old_declarations = d1;
new_declarations = d2;
property_changes = [];
added_properties =
List.filter_map
(fun (p, _) -> if List.mem_assoc p sig1 then None else Some p)
sig2;
removed_properties =
List.filter_map
(fun (p, _) -> if List.mem_assoc p sig2 then None else Some p)
sig1;
})
else None
let diff_count_mismatch key ds1 ds2 =
let n1 = List.length ds1 in
let n2 = List.length ds2 in
if n2 > n1 then
(D.Added
{ selector = key ^ " (duplicate)"; declarations = List.nth ds2 (n2 - 1) }
: D.rule_diff)
else
(D.Removed
{ selector = key ^ " (missing)"; declarations = List.nth ds1 (n1 - 1) }
: D.rule_diff)
let collect_pairwise_diffs ~diffs key ds1 ds2 =
List.iter2
(fun d1 d2 ->
match diff_same_key_pair key d1 d2 with
| Some d -> diffs := d :: !diffs
| None -> ())
ds1 ds2
let collect_key_diffs ~tbl2 ~diffs key ds1 =
match Hashtbl.find_opt tbl2 key with
| Some ds2 when List.length ds1 = List.length ds2 ->
collect_pairwise_diffs ~diffs key ds1 ds2
| Some ds2 -> diffs := diff_count_mismatch key ds1 ds2 :: !diffs
| None -> ()
let build_reorder_diff expected_css actual_css =
let rules1 =
collect_keyed_rules [] [] (Css.statements expected_css) |> List.rev
in
let rules2 =
collect_keyed_rules [] [] (Css.statements actual_css) |> List.rev
in
let tbl1 = group_into_table rules1 in
let tbl2 = group_into_table rules2 in
let diffs = ref [] in
Hashtbl.iter (collect_key_diffs ~tbl2 ~diffs) tbl1;
if !diffs = [] then None
else Some D.{ rules = List.rev !diffs; containers = [] }
let css_for_semantic_comparison ?property css =
match property with
| None -> css
| Some property -> ":root{" ^ property ^ ":" ^ css ^ "}"
let canonical_semantic_css ~strict ~lossless
?(prune_unused_custom_props = false) css =
match Css.of_string ~strict css with
| Ok { stylesheet; _ } -> (
try
Some
(stylesheet
|> Css.optimize ~lossless ~prune_unused_custom_props
|> Css.canonicalize_rule_order
|> Css.to_string ~minify:true ~lossless)
with Invalid_argument _ -> None)
| Error _ -> None
let canonical_css ~strict ~lossless ?(prune_unused_custom_props = false) css =
canonical_semantic_css ~strict ~lossless ~prune_unused_custom_props css
let canonical_pair ~strict ~lossless expected actual =
match
( canonical_css ~strict ~lossless expected,
canonical_css ~strict ~lossless actual )
with
| Some expected_norm, Some actual_norm ->
Some (String.equal expected_norm actual_norm)
| _ -> None
let canonical_diff_inputs ~strict ~lossless ?(prune_unused_custom_props = false)
expected actual =
match
( canonical_css ~strict ~lossless ~prune_unused_custom_props expected,
canonical_css ~strict ~lossless ~prune_unused_custom_props actual )
with
| Some expected, Some actual -> Some (expected, actual)
| _ -> None
let canonical_diff_inputs_with_fallback ~lossless
?(prune_unused_custom_props = false) expected actual =
match
canonical_diff_inputs ~strict:true ~lossless ~prune_unused_custom_props
expected actual
with
| Some _ as result -> result
| None ->
canonical_diff_inputs ~strict:false ~lossless ~prune_unused_custom_props
expected actual
let semantic_equal ?property ?(lossless = false) expected actual =
let expected = strip_tool_header expected in
let actual = strip_tool_header actual in
if expected = actual then true
else
let expected_css = css_for_semantic_comparison ?property expected in
let actual_css = css_for_semantic_comparison ?property actual in
match canonical_pair ~strict:true ~lossless expected_css actual_css with
| Some equal -> equal
| None -> (
match
canonical_pair ~strict:false ~lossless expected_css actual_css
with
| Some equal -> equal
| None -> false)
let equivalent_value ?lossless ~property a b =
semantic_equal ?lossless ~property a b
type result =
| Tree_diff of Tree_diff.t
| String_diff of String_diff.t
| No_diff of { canonical_byte_diff : (string * string) option }
(** Structurally equivalent. [canonical_byte_diff = None] means the two
inputs were bytewise equal (after header strip / canonical minify).
[Some (expected, actual)] means the structural comparator (tree-diff
in [`Canonical] mode) found no difference but the canonical minified
forms still differed - i.e. a canonical-pass gap to chip away at in
future. The two strings let maintainers inspect what cascade hasn't
normalised yet. *)
| Both_errors of Error.t * Error.t
| Expected_error of Error.t
| Actual_error of Error.t
type t = {
result : result;
expected_warnings : Error.t list;
actual_warnings : Error.t list;
}
type mode = [ `Auto | `Tree | `String | `Canonical ]
let fallback_to_string_diff ~expected ~actual =
match String_diff.diff ~expected actual with
| Some sdiff -> String_diff sdiff
| None ->
failwith "BUG: different strings but String_diff found no difference"
let diff_after_empty_structural ~expected ~actual ~expected_norm ~actual_norm =
match build_reorder_diff expected_norm actual_norm with
| Some d -> Tree_diff d
| None -> fallback_to_string_diff ~expected ~actual
let diff_two_parsed ~expected ~actual ~expected_ast ~actual_ast =
let expected_norm = expected_ast in
let actual_norm = actual_ast in
let structural_diff = tree_diff ~expected:expected_norm ~actual:actual_norm in
if not (is_empty structural_diff) then Tree_diff structural_diff
else diff_after_empty_structural ~expected ~actual ~expected_norm ~actual_norm
let diff_auto ~expected ~actual ~expected_parse ~actual_parse =
if expected = actual then No_diff { canonical_byte_diff = None }
else
match (expected_parse, actual_parse) with
| ( Ok { Css.stylesheet = expected_ast; _ },
Ok { Css.stylesheet = actual_ast; _ } ) ->
diff_two_parsed ~expected ~actual ~expected_ast ~actual_ast
| Error e1, Error e2 -> Both_errors (e1, e2)
| Ok _, Error e -> Actual_error e
| Error e, Ok _ -> Expected_error e
let diff_canonical_parsed ~expected ~actual ~expected_parse ~actual_parse
~expected_canon ~actual_canon =
match (Css.of_string expected_canon, Css.of_string actual_canon) with
| Ok { stylesheet = expected_ast; _ }, Ok { stylesheet = actual_ast; _ } ->
let structural_diff =
tree_diff ~expected:expected_ast ~actual:actual_ast
in
if is_empty structural_diff then
No_diff { canonical_byte_diff = Some (expected_canon, actual_canon) }
else Tree_diff structural_diff
| _ -> diff_auto ~expected ~actual ~expected_parse ~actual_parse
let diff_canonical ~lossless ~prune_unused_custom_props ~expected ~actual
~expected_parse ~actual_parse =
if expected = actual then No_diff { canonical_byte_diff = None }
else
match
canonical_diff_inputs_with_fallback ~lossless ~prune_unused_custom_props
expected actual
with
| None -> diff_auto ~expected ~actual ~expected_parse ~actual_parse
| Some (expected_canon, actual_canon) ->
if String.equal expected_canon actual_canon then
No_diff { canonical_byte_diff = None }
else
diff_canonical_parsed ~expected ~actual ~expected_parse ~actual_parse
~expected_canon ~actual_canon
let diff_string ~expected ~actual =
if expected = actual then No_diff { canonical_byte_diff = None }
else
match String_diff.diff ~expected actual with
| Some sdiff -> String_diff sdiff
| None -> No_diff { canonical_byte_diff = None }
let diff_tree ~expected_parse ~actual_parse =
match (expected_parse, actual_parse) with
| ( Ok { Css.stylesheet = expected_ast; _ },
Ok { Css.stylesheet = actual_ast; _ } ) ->
let structural_diff =
tree_diff ~expected:expected_ast ~actual:actual_ast
in
if is_empty structural_diff then No_diff { canonical_byte_diff = None }
else Tree_diff structural_diff
| Error e1, Error e2 -> Both_errors (e1, e2)
| Ok _, Error e -> Actual_error e
| Error e, Ok _ -> Expected_error e
let parse_warnings = function
| Ok { Css.warnings; _ } -> warnings
| Error _ -> []
let diff ?(mode = `Auto) ?(lossless = false)
?(prune_unused_custom_props = false) expected actual =
let expected = strip_tool_header expected in
let actual = strip_tool_header actual in
if expected = actual then
{
result = No_diff { canonical_byte_diff = None };
expected_warnings = [];
actual_warnings = [];
}
else
match mode with
| `String ->
{
result = diff_string ~expected ~actual;
expected_warnings = [];
actual_warnings = [];
}
| (`Auto | `Tree | `Canonical) as mode ->
let expected_parse = Css.of_string expected in
let actual_parse = Css.of_string actual in
let result =
match mode with
| `Auto -> diff_auto ~expected ~actual ~expected_parse ~actual_parse
| `Canonical ->
diff_canonical ~lossless ~prune_unused_custom_props ~expected
~actual ~expected_parse ~actual_parse
| `Tree -> diff_tree ~expected_parse ~actual_parse
in
{
result;
expected_warnings = parse_warnings expected_parse;
actual_warnings = parse_warnings actual_parse;
}
let equal ?mode ?lossless ?prune_unused_custom_props a b =
match (diff ?mode ?lossless ?prune_unused_custom_props a b).result with
| No_diff _ -> true
| _ -> false
let as_tree_diff t =
match t.result with
| Tree_diff d -> Some d
| String_diff _ | No_diff _ | Both_errors _ | Expected_error _
| Actual_error _ ->
None
let compute_stats ~expected_str ~actual_str diff_result =
let expected_chars = String.length expected_str in
let actual_chars = String.length actual_str in
match diff_result.result with
| Tree_diff d ->
let count_rule_type pred = List.filter pred d.rules |> List.length in
{
expected = expected_str;
actual = actual_str;
expected_chars;
actual_chars;
added_rules =
count_rule_type (function D.Added _ -> true | _ -> false);
removed_rules =
count_rule_type (function D.Removed _ -> true | _ -> false);
modified_rules =
count_rule_type (function
| D.Content_changed _ | D.Selector_changed _ -> true
| _ -> false);
reordered_rules =
count_rule_type (function D.Reordered _ -> true | _ -> false);
regrouped_rules =
count_rule_type (function D.Regrouped _ -> true | _ -> false);
container_changes = List.length d.containers;
}
| _ ->
{
expected = expected_str;
actual = actual_str;
expected_chars;
actual_chars;
added_rules = 0;
removed_rules = 0;
modified_rules = 0;
reordered_rules = 0;
regrouped_rules = 0;
container_changes = 0;
}
let stats = compute_stats
let add_strings b ls = List.iter (Buffer.add_string b) ls
let pp_parse_warnings buf label warnings =
List.iter
(fun w ->
if Buffer.length buf > 0 && Buffer.nth buf (Buffer.length buf - 1) <> '\n'
then Buffer.add_char buf '\n';
add_strings buf [ label; " parse warning: "; Error.to_string w; "\n" ])
warnings
let pp_result ?(expected = "Expected") ?(actual = "Actual") ?(color = false) buf
= function
| Tree_diff d ->
D.pp ~expected ~actual ~color buf d
| String_diff sdiff -> String_diff.pp buf sdiff
| No_diff _ ->
()
| Both_errors (e1, e2) ->
let err1 = Error.to_string e1 in
let err2 = Error.to_string e2 in
if String.equal err1 err2 then
add_strings buf [ "Both CSS have same parse error: "; err1 ]
else
add_strings buf
[
"Parse errors:\n ";
expected;
": ";
err1;
"\n ";
actual;
": ";
err2;
]
| Expected_error e ->
add_strings buf [ expected; " CSS parse error: "; Error.to_string e ]
| Actual_error e ->
add_strings buf [ actual; " CSS parse error: "; Error.to_string e ]
let pp ?(expected = "Expected") ?(actual = "Actual") ?(color = false) buf t =
pp_result ~expected ~actual ~color buf t.result;
pp_parse_warnings buf expected t.expected_warnings;
pp_parse_warnings buf actual t.actual_warnings
let add_pct buf char_diff_pct =
let rounded = Float.round (char_diff_pct *. 10.0) /. 10.0 in
let s = string_of_float rounded in
if String.contains s '.' then
match String.split_on_char '.' s with
| [ i; d ] ->
let frac = if String.length d >= 1 then String.sub d 0 1 else d ^ "0" in
add_strings buf [ i; "."; frac ]
| _ -> Buffer.add_string buf s
else add_strings buf [ s; ".0" ]
let add_change buf count action singular =
let noun = if count = 1 then singular else singular ^ "s" in
add_strings buf [ string_of_int count; " "; action; " "; noun ]
let emit_changes buf stats =
let entries =
[
(stats.added_rules, "added", "rule");
(stats.removed_rules, "removed", "rule");
(stats.modified_rules, "modified", "rule");
(stats.reordered_rules, "reordered", "rule");
(stats.regrouped_rules, "regrouped", "rule");
]
|> List.filter (fun (n, _, _) -> n > 0)
in
let container = stats.container_changes in
if entries = [] && container = 0 then
Buffer.add_string buf "No structural differences\n"
else (
Buffer.add_string buf "Changes: ";
List.iteri
(fun i (n, action, singular) ->
if i > 0 then Buffer.add_string buf ", ";
add_change buf n action singular)
entries;
if container > 0 then (
if entries <> [] then Buffer.add_string buf ", ";
add_strings buf [ string_of_int container; " containers" ]);
Buffer.add_char buf '\n')
let pp_stats buf stats =
let char_diff = abs (stats.actual_chars - stats.expected_chars) in
let char_diff_pct =
if stats.expected_chars > 0 then
float_of_int char_diff *. 100.0 /. float_of_int stats.expected_chars
else 0.0
in
add_strings buf
[
"CSS: ";
string_of_int stats.actual_chars;
" chars vs ";
string_of_int stats.expected_chars;
" chars (";
];
add_pct buf char_diff_pct;
Buffer.add_string buf "% diff)\n";
emit_changes buf stats