ff-rdp-cli 0.2.0

CLI for Firefox Remote Debugging Protocol
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
use super::support::{MockRdpServer, load_fixture};

fn ff_rdp_bin() -> std::path::PathBuf {
    std::path::PathBuf::from(env!("CARGO_BIN_EXE_ff-rdp"))
}

fn base_args(port: u16) -> Vec<String> {
    vec![
        "--host".to_owned(),
        "127.0.0.1".to_owned(),
        "--port".to_owned(),
        port.to_string(),
        "--no-daemon".to_owned(),
    ]
}

/// Build a mock server for a11y summary (uses JS eval path).
fn a11y_summary_server() -> MockRdpServer {
    MockRdpServer::new()
        .on("listTabs", load_fixture("list_tabs_response.json"))
        .on("getTarget", load_fixture("get_target_response.json"))
        .on_with_followup(
            "evaluateJSAsync",
            load_fixture("eval_immediate_response.json"),
            load_fixture("eval_result_a11y_summary.json"),
        )
}

/// Build a mock server that handles the full a11y protocol sequence.
///
/// Protocol flow:
///   listTabs → getTarget → getWalker → getRootNode → children (for nodes with childCount > 0)
fn a11y_server() -> MockRdpServer {
    MockRdpServer::new()
        .on("listTabs", load_fixture("list_tabs_response.json"))
        .on("getTarget", load_fixture("get_target_response.json"))
        .on("getWalker", load_fixture("a11y_get_walker_response.json"))
        .on("getDocument", load_fixture("a11y_get_root_response.json"))
        .on("getRootNode", load_fixture("a11y_get_root_response.json"))
        .on("children", load_fixture("a11y_children_response.json"))
}

/// Build a mock server for a11y contrast (uses JS eval path like snapshot).
fn a11y_contrast_server() -> MockRdpServer {
    MockRdpServer::new()
        .on("listTabs", load_fixture("list_tabs_response.json"))
        .on("getTarget", load_fixture("get_target_response.json"))
        .on_with_followup(
            "evaluateJSAsync",
            load_fixture("eval_immediate_response.json"),
            load_fixture("eval_result_contrast.json"),
        )
}

// ---------------------------------------------------------------------------
// a11y: basic output
// ---------------------------------------------------------------------------

#[test]
fn a11y_outputs_json_with_accessibility_tree() {
    let server = a11y_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.push("a11y".to_owned());

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout must be valid JSON");

    // Root node should be the document role.
    assert_eq!(
        json["results"]["role"], "document",
        "root role should be document"
    );
    assert_eq!(json["total"], 1);

    // Should have children populated from the children fixture.
    let children = json["results"]["children"]
        .as_array()
        .expect("results should have a children array");
    assert!(!children.is_empty(), "tree should have at least one child");

    // Actor IDs must be stripped from output.
    assert!(
        json["results"].get("actor").is_none(),
        "actor IDs should be stripped from output"
    );
}

// ---------------------------------------------------------------------------
// a11y: interactive filter
// ---------------------------------------------------------------------------

#[test]
fn a11y_interactive_filters_to_interactive_elements() {
    let server = a11y_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend(["a11y".to_owned(), "--interactive".to_owned()]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout must be valid JSON");

    // The fixture children include a "link" node which is interactive.
    // The root document is kept because it has an interactive descendant.
    let results = &json["results"];
    assert_eq!(json["total"], 1);

    // Interactive filter should retain only interactive roles in the subtree.
    // The link child must be present; the non-interactive heading must be absent.
    let children = results["children"]
        .as_array()
        .expect("filtered results should still have children");

    let link_present = children.iter().any(|c| c["role"] == "link");
    assert!(link_present, "interactive filter should retain link role");

    let heading_present = children.iter().any(|c| c["role"] == "heading");
    assert!(
        !heading_present,
        "interactive filter should remove heading role"
    );
}

// ---------------------------------------------------------------------------
// a11y: --jq filter
// ---------------------------------------------------------------------------

#[test]
fn a11y_with_jq_extracts_role() {
    let server = a11y_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend([
        "--jq".to_owned(),
        ".results.role".to_owned(),
        "a11y".to_owned(),
    ]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "\"document\"");
}

// ---------------------------------------------------------------------------
// a11y contrast: basic output
// ---------------------------------------------------------------------------

#[test]
fn a11y_contrast_outputs_json_with_checks() {
    let server = a11y_contrast_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend(["a11y".to_owned(), "contrast".to_owned()]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout must be valid JSON");

    // Results should be an array of contrast check objects.
    let results = json["results"]
        .as_array()
        .expect("contrast results should be an array");

    assert!(
        !results.is_empty(),
        "should have at least one contrast check"
    );

    // Each check should have the expected WCAG fields.
    let first = &results[0];
    assert!(
        first.get("ratio").is_some(),
        "check must have a ratio field"
    );
    assert!(
        first.get("foreground").is_some(),
        "check must have foreground"
    );
    assert!(
        first.get("background").is_some(),
        "check must have background"
    );
    assert!(
        first.get("aa_normal").is_some(),
        "check must have aa_normal"
    );

    // Meta should include summary.
    assert!(
        json["meta"]["summary"].is_object(),
        "meta should contain summary"
    );
    assert!(
        json["meta"]["summary"]["total"].is_number(),
        "summary should have total"
    );
}

// ---------------------------------------------------------------------------
// a11y contrast: --fail-only flag
// ---------------------------------------------------------------------------

#[test]
fn a11y_contrast_fail_only_filters_passing_checks() {
    let server = a11y_contrast_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend([
        "a11y".to_owned(),
        "contrast".to_owned(),
        "--fail-only".to_owned(),
    ]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout must be valid JSON");

    // The fixture has all checks passing (aa_normal: true), so --fail-only should return empty.
    let results = json["results"]
        .as_array()
        .expect("contrast results should be an array");
    assert!(
        results.is_empty(),
        "all fixture checks pass AA — fail-only should return empty array"
    );

    // total reflects the full summary count from the JS result (not the filtered count),
    // so the caller knows how many elements were checked in total.
    assert_eq!(
        json["total"], 2,
        "total reflects all checked elements even when filtered"
    );
}

// ---------------------------------------------------------------------------
// a11y contrast: --jq filter
// ---------------------------------------------------------------------------

#[test]
fn a11y_contrast_with_jq_extracts_total() {
    let server = a11y_contrast_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend([
        "--jq".to_owned(),
        ".meta.summary.total".to_owned(),
        "a11y".to_owned(),
        "contrast".to_owned(),
    ]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "2", "fixture has 2 contrast checks");
}

// ---------------------------------------------------------------------------
// a11y summary: JSON output
// ---------------------------------------------------------------------------

#[test]
fn a11y_summary_outputs_json_with_sections() {
    let server = a11y_summary_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend(["a11y".to_owned(), "summary".to_owned()]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let json: serde_json::Value =
        serde_json::from_slice(&output.stdout).expect("stdout must be valid JSON");

    // Results should have the three summary sections.
    assert!(
        json["results"]["landmarks"].is_array(),
        "results must have landmarks array"
    );
    assert!(
        json["results"]["headings"].is_array(),
        "results must have headings array"
    );
    assert!(
        json["results"]["interactive"].is_array(),
        "results must have interactive array"
    );

    // Fixture has 2 landmarks.
    assert_eq!(
        json["results"]["landmarks"].as_array().unwrap().len(),
        2,
        "fixture has 2 landmarks"
    );

    // Fixture has 2 headings.
    assert_eq!(
        json["results"]["headings"].as_array().unwrap().len(),
        2,
        "fixture has 2 headings"
    );

    // Fixture has 3 interactive elements.
    assert_eq!(
        json["results"]["interactive"].as_array().unwrap().len(),
        3,
        "fixture has 3 interactive elements"
    );
}

// ---------------------------------------------------------------------------
// a11y summary: --format text
// ---------------------------------------------------------------------------

#[test]
fn a11y_summary_text_format_renders_sections() {
    let server = a11y_summary_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend([
        "--format".to_owned(),
        "text".to_owned(),
        "a11y".to_owned(),
        "summary".to_owned(),
    ]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Text output should contain section headers and content.
    assert!(
        stdout.contains("LANDMARKS"),
        "should contain LANDMARKS header"
    );
    assert!(
        stdout.contains("HEADINGS"),
        "should contain HEADINGS header"
    );
    assert!(
        stdout.contains("INTERACTIVE"),
        "should contain INTERACTIVE header"
    );

    // Fixture headings: h1 "Example Domain", h2 "More information".
    assert!(
        stdout.contains("h1 Example Domain"),
        "should render h1 heading"
    );

    // Fixture has a link.
    assert!(
        stdout.contains("link") && stdout.contains("More information"),
        "should render the link element"
    );

    // Must not be wrapped in JSON quotes (the old bug).
    assert!(
        !stdout.trim().starts_with('"'),
        "text output must not be JSON-quoted"
    );
}

// ---------------------------------------------------------------------------
// a11y summary: --jq filter
// ---------------------------------------------------------------------------

#[test]
fn a11y_summary_with_jq_extracts_headings() {
    let server = a11y_summary_server();
    let port = server.port();
    let handle = std::thread::spawn(move || server.serve_one());

    let mut args = base_args(port);
    args.extend([
        "--jq".to_owned(),
        ".results.headings | length".to_owned(),
        "a11y".to_owned(),
        "summary".to_owned(),
    ]);

    let output = std::process::Command::new(ff_rdp_bin())
        .args(&args)
        .output()
        .expect("failed to spawn ff-rdp");

    handle.join().unwrap();

    assert!(
        output.status.success(),
        "expected success, stderr: {}",
        String::from_utf8_lossy(&output.stderr)
    );

    let stdout = String::from_utf8_lossy(&output.stdout);
    assert_eq!(stdout.trim(), "2", "fixture has 2 headings");
}