jiq 3.21.0

Interactive JSON query tool with real-time output
Documentation
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
//! Tests for app_events

use crate::app::Focus;
use crate::editor::EditorMode;
use crate::test_utils::test_helpers::{app_with_query, key_with_mods, test_app};
use proptest::prelude::*;
use ratatui::crossterm::event::{KeyCode, KeyModifiers, MouseButton, MouseEvent, MouseEventKind};
use std::sync::Arc;

#[test]
fn test_paste_event_inserts_text() {
    let mut app = test_app(r#"{"name": "test"}"#);

    app.handle_paste_event(".name".to_string());

    assert_eq!(app.query(), ".name");
}

#[test]
fn test_paste_event_executes_query() {
    let mut app = test_app(r#"{"name": "Alice"}"#);

    app.handle_paste_event(".name".to_string());

    assert!(app.query.as_ref().unwrap().result.is_ok());
    let result = app.query.as_ref().unwrap().result.as_ref().unwrap();
    assert!(result.contains("Alice"));
}

#[test]
fn test_paste_event_appends_to_existing_text() {
    let mut app = test_app(r#"{"user": {"name": "Bob"}}"#);

    app.input.textarea.insert_str(".user");

    app.handle_paste_event(".name".to_string());

    assert_eq!(app.query(), ".user.name");
}

#[test]
fn test_paste_event_with_empty_string() {
    let mut app = test_app(r#"{"name": "test"}"#);

    app.handle_paste_event(String::new());

    assert_eq!(app.query(), "");
}

#[test]
fn test_paste_event_with_multiline_text() {
    let mut app = test_app(r#"{"name": "test"}"#);

    app.handle_paste_event(".name\n| length".to_string());

    assert!(app.query().contains(".name"));
}

// Feature: performance, Property 1: Paste text insertion integrity
// *For any* string pasted into the application, the input field content after
// the paste operation should contain exactly that string at the cursor position.
// **Validates: Requirements 1.2**
proptest! {
    #![proptest_config(ProptestConfig::with_cases(100))]

    #[test]
    fn prop_paste_text_insertion_integrity(
        // Generate printable ASCII strings (avoiding control characters that might
        // cause issues with the textarea)
        text in "[a-zA-Z0-9._\\[\\]|? ]{0,50}"
    ) {
        let mut app = test_app(r#"{"test": true}"#);

        // Paste the text
        app.handle_paste_event(text.clone());

        // The query should contain exactly the pasted text
        prop_assert_eq!(
            app.query(), &text,
            "Pasted text should appear exactly in the input field"
        );
    }

    #[test]
    fn prop_paste_appends_at_cursor_position(
        // Generate two parts of text
        prefix in "[a-zA-Z0-9.]{0,20}",
        pasted in "[a-zA-Z0-9.]{0,20}",
    ) {
        let mut app = test_app(r#"{"test": true}"#);

        // First insert the prefix
        app.input.textarea.insert_str(&prefix);

        // Then paste additional text
        app.handle_paste_event(pasted.clone());

        // The query should be prefix + pasted
        let expected = format!("{}{}", prefix, pasted);
        prop_assert_eq!(
            app.query(), &expected,
            "Pasted text should be appended at cursor position"
        );
    }

    #[test]
    fn prop_paste_executes_query_once(
        // Generate valid jq-like queries
        query in "\\.[a-z]{1,10}"
    ) {
        let json = r#"{"name": "test", "value": 42}"#;
        let mut app = test_app(json);

        // Paste a query
        app.handle_paste_event(query.clone());

        // Query should have been executed (result should be set)
        // We can't easily verify "exactly once" but we can verify it was executed
        prop_assert!(
            app.query.as_ref().unwrap().result.is_ok() || app.query.as_ref().unwrap().result.is_err(),
            "Query should have been executed after paste"
        );

        // The query text should match what was pasted
        prop_assert_eq!(
            app.query(), &query,
            "Query text should match pasted text"
        );
    }
}

#[test]
fn test_ctrl_d_scrolls_results_from_input_field_insert_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Insert;

    let content: String = (0..50).map(|i| format!("line{}\n", i)).collect();
    let query_state = app.query.as_mut().unwrap();
    query_state.result = Ok(content.clone());
    query_state.last_successful_result = Some(Arc::new(content.clone()));
    query_state.cached_line_count = content.lines().count() as u32;

    let line_count = app.results_line_count_u32();
    app.results_scroll.update_bounds(line_count, 20);
    app.results_scroll.offset = 0;

    app.handle_key_event(key_with_mods(KeyCode::Char('d'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
}

#[test]
fn test_ctrl_u_scrolls_results_from_input_field_insert_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Insert;
    app.results_scroll.offset = 20;
    app.results_scroll.viewport_height = 20;

    app.handle_key_event(key_with_mods(KeyCode::Char('u'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
}

#[test]
fn test_ctrl_d_scrolls_results_from_input_field_normal_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Normal;

    let content: String = (0..50).map(|i| format!("line{}\n", i)).collect();
    let query_state = app.query.as_mut().unwrap();
    query_state.result = Ok(content.clone());
    query_state.last_successful_result = Some(Arc::new(content.clone()));
    query_state.cached_line_count = content.lines().count() as u32;

    let line_count = app.results_line_count_u32();
    app.results_scroll.update_bounds(line_count, 20);
    app.results_scroll.offset = 0;

    app.handle_key_event(key_with_mods(KeyCode::Char('d'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
    assert_eq!(app.input.editor_mode, EditorMode::Normal);
}

#[test]
fn test_ctrl_u_scrolls_results_from_input_field_normal_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Normal;
    app.results_scroll.offset = 20;
    app.results_scroll.viewport_height = 20;

    app.handle_key_event(key_with_mods(KeyCode::Char('u'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
    assert_eq!(app.input.editor_mode, EditorMode::Normal);
}

#[test]
fn test_ctrl_d_scrolls_results_from_input_field_operator_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Operator('d');

    let content: String = (0..50).map(|i| format!("line{}\n", i)).collect();
    let query_state = app.query.as_mut().unwrap();
    query_state.result = Ok(content.clone());
    query_state.last_successful_result = Some(Arc::new(content.clone()));
    query_state.cached_line_count = content.lines().count() as u32;

    let line_count = app.results_line_count_u32();
    app.results_scroll.update_bounds(line_count, 20);
    app.results_scroll.offset = 0;

    app.handle_key_event(key_with_mods(KeyCode::Char('d'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
}

#[test]
fn test_ctrl_u_scrolls_results_from_input_field_operator_mode() {
    let mut app = app_with_query(".");
    app.focus = Focus::InputField;
    app.input.editor_mode = EditorMode::Operator('c');
    app.results_scroll.offset = 20;
    app.results_scroll.viewport_height = 20;

    app.handle_key_event(key_with_mods(KeyCode::Char('u'), KeyModifiers::CONTROL));

    assert_eq!(app.results_scroll.offset, 10);
    assert_eq!(app.focus, Focus::InputField);
}

fn mouse_event(kind: MouseEventKind) -> MouseEvent {
    MouseEvent {
        kind,
        column: 0,
        row: 0,
        modifiers: KeyModifiers::NONE,
    }
}

#[test]
fn test_mouse_scroll_down_increases_offset() {
    let mut app = app_with_query(".");

    let content: String = (0..50).map(|i| format!("line{}\n", i)).collect();
    let query_state = app.query.as_mut().unwrap();
    query_state.result = Ok(content.clone());
    query_state.last_successful_result = Some(Arc::new(content.clone()));
    query_state.cached_line_count = content.lines().count() as u32;

    let line_count = app.results_line_count_u32();
    app.results_scroll.update_bounds(line_count, 20);
    app.results_scroll.offset = 0;

    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollDown));

    assert_eq!(app.results_scroll.offset, 3);
}

#[test]
fn test_mouse_scroll_up_decreases_offset() {
    let mut app = app_with_query(".");
    app.results_scroll.offset = 10;
    app.results_scroll.viewport_height = 20;

    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollUp));

    assert_eq!(app.results_scroll.offset, 7);
}

#[test]
fn test_mouse_scroll_up_stops_at_zero() {
    let mut app = app_with_query(".");
    app.results_scroll.offset = 2;
    app.results_scroll.viewport_height = 20;

    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollUp));

    assert_eq!(app.results_scroll.offset, 0);
}

#[test]
fn test_mouse_scroll_down_multiple_times() {
    let mut app = app_with_query(".");

    let content: String = (0..50).map(|i| format!("line{}\n", i)).collect();
    let query_state = app.query.as_mut().unwrap();
    query_state.result = Ok(content.clone());
    query_state.last_successful_result = Some(Arc::new(content.clone()));
    query_state.cached_line_count = content.lines().count() as u32;

    let line_count = app.results_line_count_u32();
    app.results_scroll.update_bounds(line_count, 20);
    app.results_scroll.offset = 0;

    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollDown));
    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollDown));
    app.handle_mouse_event(mouse_event(MouseEventKind::ScrollDown));

    assert_eq!(app.results_scroll.offset, 9);
}

#[test]
fn test_mouse_other_events_ignored() {
    let mut app = app_with_query(".");
    app.results_scroll.offset = 5;
    app.results_scroll.viewport_height = 20;

    app.handle_mouse_event(mouse_event(MouseEventKind::Down(MouseButton::Left)));
    assert_eq!(app.results_scroll.offset, 5);

    app.handle_mouse_event(mouse_event(MouseEventKind::Up(MouseButton::Left)));
    assert_eq!(app.results_scroll.offset, 5);

    app.handle_mouse_event(mouse_event(MouseEventKind::Moved));
    assert_eq!(app.results_scroll.offset, 5);
}

#[test]
fn test_snippets_receives_keys_when_focus_is_results_pane() {
    use crate::snippets::Snippet;
    let mut app = app_with_query(".");

    app.snippets.disable_persistence();
    app.snippets.set_snippets(vec![Snippet {
        name: "test".to_string(),
        query: ".test".to_string(),
        description: None,
    }]);
    app.snippets.open();
    app.focus = Focus::ResultsPane;

    assert!(app.snippets.is_visible());

    app.handle_key_event(key_with_mods(KeyCode::Esc, KeyModifiers::NONE));

    assert!(
        !app.snippets.is_visible(),
        "Esc should close snippets even when focus is ResultsPane"
    );
}

#[test]
fn test_snippets_navigation_works_when_focus_is_results_pane() {
    use crate::snippets::Snippet;
    let mut app = app_with_query(".");

    app.snippets.disable_persistence();
    app.snippets.set_snippets(vec![
        Snippet {
            name: "first".to_string(),
            query: ".first".to_string(),
            description: None,
        },
        Snippet {
            name: "second".to_string(),
            query: ".second".to_string(),
            description: None,
        },
    ]);
    app.snippets.open();
    app.focus = Focus::ResultsPane;

    assert_eq!(app.snippets.selected_index(), 0);

    app.handle_key_event(key_with_mods(KeyCode::Down, KeyModifiers::NONE));

    assert_eq!(
        app.snippets.selected_index(),
        1,
        "Down arrow should navigate snippets even when focus is ResultsPane"
    );
}

#[test]
fn test_history_receives_keys_when_focus_is_results_pane() {
    let mut app = app_with_query(".");

    app.history.add_entry(".test1");
    app.history.add_entry(".test2");
    app.history.open(None);
    app.focus = Focus::ResultsPane;

    assert!(app.history.is_visible());

    app.handle_key_event(key_with_mods(KeyCode::Esc, KeyModifiers::NONE));

    assert!(
        !app.history.is_visible(),
        "Esc should close history even when focus is ResultsPane"
    );
}

#[test]
fn test_global_keys_work_when_snippets_visible() {
    use crate::snippets::Snippet;
    let mut app = app_with_query(".");

    app.snippets.disable_persistence();
    app.snippets.set_snippets(vec![Snippet {
        name: "test".to_string(),
        query: ".test".to_string(),
        description: None,
    }]);
    app.snippets.open();

    assert!(app.snippets.is_visible());
    assert!(!app.help.visible);

    app.handle_key_event(key_with_mods(KeyCode::F(1), KeyModifiers::NONE));

    assert!(
        app.help.visible,
        "F1 should toggle help even when snippets is visible"
    );
    assert!(
        app.snippets.is_visible(),
        "Snippets should remain visible after F1"
    );
}

#[test]
fn test_ctrl_c_quits_when_snippets_visible() {
    use crate::snippets::Snippet;
    let mut app = app_with_query(".");

    app.snippets.disable_persistence();
    app.snippets.set_snippets(vec![Snippet {
        name: "test".to_string(),
        query: ".test".to_string(),
        description: None,
    }]);
    app.snippets.open();

    assert!(app.snippets.is_visible());
    assert!(!app.should_quit);

    app.handle_key_event(key_with_mods(KeyCode::Char('c'), KeyModifiers::CONTROL));

    assert!(
        app.should_quit,
        "Ctrl+C should quit even when snippets is visible"
    );
}

#[test]
fn test_esc_closes_help_before_snippets() {
    use crate::snippets::Snippet;
    let mut app = app_with_query(".");

    app.snippets.disable_persistence();
    app.snippets.set_snippets(vec![Snippet {
        name: "test".to_string(),
        query: ".test".to_string(),
        description: None,
    }]);
    app.snippets.open();
    app.help.visible = true;

    assert!(app.snippets.is_visible());
    assert!(app.help.visible);

    // First Esc should close help, not snippets
    app.handle_key_event(key_with_mods(KeyCode::Esc, KeyModifiers::NONE));

    assert!(
        !app.help.visible,
        "Esc should close help first when both help and snippets are visible"
    );
    assert!(
        app.snippets.is_visible(),
        "Snippets should remain visible after closing help"
    );

    // Second Esc should close snippets
    app.handle_key_event(key_with_mods(KeyCode::Esc, KeyModifiers::NONE));

    assert!(
        !app.snippets.is_visible(),
        "Second Esc should close snippets"
    );
}