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
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
//! Tests for query result handling

use super::*;
use crate::ai::context::ContextParams;

fn empty_params() -> ContextParams<'static> {
    ContextParams {
        input_schema: None,
        base_query: None,
        base_query_result: None,
        is_empty_result: false,
    }
}

#[test]
fn test_poll_without_channel_does_nothing() {
    let mut ai_state = AiState::new(true);
    // No channel set

    poll_response_channel(&mut ai_state);

    // Should not crash, state unchanged
    assert!(!ai_state.loading);
    assert!(ai_state.response.is_empty());
}

#[test]
fn test_poll_processes_chunk() {
    let mut ai_state = AiState::new(true);
    let (_tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    ai_state.loading = true;

    // Send a chunk through a new channel
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    // Simulate starting a request to set request_id
    ai_state.start_request();
    let request_id = ai_state.current_request_id();
    tx.send(AiResponse::Chunk {
        text: "Hello ".to_string(),
        request_id,
    })
    .unwrap();

    poll_response_channel(&mut ai_state);

    assert_eq!(ai_state.response, "Hello ");
    assert!(ai_state.loading); // Still loading until Complete
}

#[test]
fn test_poll_processes_multiple_chunks() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    ai_state.start_request();
    let request_id = ai_state.current_request_id();

    tx.send(AiResponse::Chunk {
        text: "Hello ".to_string(),
        request_id,
    })
    .unwrap();
    tx.send(AiResponse::Chunk {
        text: "World".to_string(),
        request_id,
    })
    .unwrap();

    poll_response_channel(&mut ai_state);

    assert_eq!(ai_state.response, "Hello World");
}

#[test]
fn test_poll_processes_complete() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    ai_state.start_request();
    let request_id = ai_state.current_request_id();
    ai_state.response = "Full response".to_string();

    tx.send(AiResponse::Complete { request_id }).unwrap();

    poll_response_channel(&mut ai_state);

    assert!(!ai_state.loading);
    assert_eq!(ai_state.response, "Full response");
}

#[test]
fn test_poll_processes_error() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    ai_state.loading = true;

    tx.send(AiResponse::Error("Network error".to_string()))
        .unwrap();

    poll_response_channel(&mut ai_state);

    assert!(!ai_state.loading);
    assert_eq!(ai_state.error, Some("Network error".to_string()));
}

#[test]
fn test_poll_processes_cancelled() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);
    ai_state.start_request();
    let request_id = ai_state.current_request_id();

    tx.send(AiResponse::Cancelled { request_id }).unwrap();

    poll_response_channel(&mut ai_state);

    assert!(!ai_state.loading);
    assert!(ai_state.in_flight_request_id.is_none());
}

#[test]
fn test_poll_handles_disconnected_channel() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel::<AiResponse>();
    ai_state.response_rx = Some(rx);
    ai_state.loading = true;

    // Drop sender to disconnect channel
    drop(tx);

    poll_response_channel(&mut ai_state);

    // Should set error when loading and channel disconnects
    assert!(!ai_state.loading);
    assert!(ai_state.error.is_some());
}

#[test]
fn test_poll_empty_channel_does_nothing() {
    let mut ai_state = AiState::new(true);
    let (_tx, rx) = mpsc::channel::<AiResponse>();
    ai_state.response_rx = Some(rx);
    ai_state.loading = true;

    // Don't send anything

    poll_response_channel(&mut ai_state);

    // State should be unchanged
    assert!(ai_state.loading);
    assert!(ai_state.response.is_empty());
    assert!(ai_state.error.is_none());
}

#[test]
fn test_stale_responses_filtered() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);

    // Start first request
    ai_state.start_request();
    let old_request_id = ai_state.current_request_id();

    // Start second request (increments request_id)
    ai_state.start_request();
    let new_request_id = ai_state.current_request_id();

    assert!(new_request_id > old_request_id);

    // Send chunk from old request - should be ignored
    tx.send(AiResponse::Chunk {
        text: "old chunk".to_string(),
        request_id: old_request_id,
    })
    .unwrap();

    // Send chunk from new request - should be processed
    tx.send(AiResponse::Chunk {
        text: "new chunk".to_string(),
        request_id: new_request_id,
    })
    .unwrap();

    poll_response_channel(&mut ai_state);

    // Only the new chunk should be in the response
    assert_eq!(ai_state.response, "new chunk");
}

#[test]
fn test_stale_complete_filtered() {
    let mut ai_state = AiState::new(true);
    let (tx, rx) = mpsc::channel();
    ai_state.response_rx = Some(rx);

    // Start first request
    ai_state.start_request();
    let old_request_id = ai_state.current_request_id();

    // Start second request
    ai_state.start_request();

    // Send complete from old request - should be ignored
    tx.send(AiResponse::Complete {
        request_id: old_request_id,
    })
    .unwrap();

    poll_response_channel(&mut ai_state);

    // Loading should still be true (stale complete was ignored)
    assert!(ai_state.loading);
}

// Test: query changes from error to success → stale response cleared, new request sent
#[test]
fn test_query_error_to_success_clears_response() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true;
    ai_state.response = "Error explanation".to_string();
    ai_state.error = Some("Query error".to_string());
    ai_state.set_last_query_hash(".invalid");

    // Simulate successful query result with different query
    let result: Result<String, String> = Ok("success output".to_string());
    handle_execution_result(&mut ai_state, &result, ".valid", 6, empty_params());

    // Stale response should be cleared (query changed)
    // Note: response is cleared by clear_stale_response, then new request starts
    // Since we don't have a channel, send_request returns false but state is still cleared
    assert!(ai_state.error.is_none());
    // Visibility preserved
    assert!(ai_state.visible);
}

// Test: query changes from one error to different error → old response cleared
#[test]
fn test_query_error_to_different_error_clears_response() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true;
    ai_state.response = "Old error explanation".to_string();
    ai_state.set_last_query_hash(".old");

    // Simulate new error result with different query
    let result: Result<String, String> = Err("new error".to_string());
    handle_execution_result(&mut ai_state, &result, ".new", 4, empty_params());

    // Old response should be cleared (query changed)
    assert!(ai_state.response.is_empty());
}

// Test: different query with same error → new request (query changed)
#[test]
fn test_different_query_same_error_triggers_new_request() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.response = "Old explanation".to_string();
    ai_state.set_last_query_hash(".query1");

    // Different query should clear stale response (even with same error)
    let result: Result<String, String> = Err("same error".to_string());
    handle_execution_result(&mut ai_state, &result, ".query2", 7, empty_params());

    // Response should be cleared because query changed
    assert!(ai_state.response.is_empty());
}

// Test: same query with same error → no new request
#[test]
fn test_same_query_same_error_no_change() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.response = "Existing explanation".to_string();
    ai_state.set_last_query_hash(".same");

    // Same query should NOT clear response (regardless of error)
    let result: Result<String, String> = Err("same error".to_string());
    handle_execution_result(&mut ai_state, &result, ".same", 5, empty_params());

    // Response should be preserved (query didn't change)
    assert_eq!(ai_state.response, "Existing explanation");
}

// Test: same query with different error → no new request (query is the only trigger)
#[test]
fn test_same_query_different_error_no_change() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.response = "Existing explanation".to_string();
    ai_state.set_last_query_hash(".same");

    // Same query should NOT clear response even with different error
    let result: Result<String, String> = Err("different error".to_string());
    handle_execution_result(&mut ai_state, &result, ".same", 5, empty_params());

    // Response should be preserved (query didn't change)
    assert_eq!(ai_state.response, "Existing explanation");
}

// Test: different query with different error → new request (query changed)
#[test]
fn test_different_query_different_error_triggers_new_request() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.response = "Old explanation".to_string();
    ai_state.set_last_query_hash(".query1");

    // Different query should trigger new request
    let result: Result<String, String> = Err("different error".to_string());
    handle_execution_result(&mut ai_state, &result, ".query2", 7, empty_params());

    // Response should be cleared because query changed
    assert!(ai_state.response.is_empty());
}

// Test: successful query triggers AI request with output context
#[test]
fn test_success_triggers_ai_request() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true; // Popup must be visible for requests to be sent
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Simulate successful query result
    let result: Result<String, String> = Ok("output data".to_string());
    handle_execution_result(&mut ai_state, &result, ".name", 5, empty_params());

    // Should have sent a request
    let request = rx.try_recv();
    assert!(request.is_ok(), "Should have sent AI request for success");

    // Verify it's a Query request with success context
    let AiRequest::Query { prompt, .. } = request.unwrap();
    // Success prompt should contain "optimize" (from build_success_prompt)
    assert!(
        prompt.contains("optimize"),
        "Success prompt should mention optimization"
    );
}

// Test: error query triggers AI request with error context
#[test]
fn test_error_triggers_ai_request() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true; // Popup must be visible for requests to be sent
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Simulate error query result
    let result: Result<String, String> = Err("syntax error".to_string());
    handle_execution_result(&mut ai_state, &result, ".invalid", 8, empty_params());

    // Should have sent a request
    let request = rx.try_recv();
    assert!(request.is_ok(), "Should have sent AI request for error");

    // Verify it's a Query request with error context
    let AiRequest::Query { prompt, .. } = request.unwrap();
    // Error prompt should contain "troubleshoot" (from build_error_prompt)
    assert!(
        prompt.contains("troubleshoot"),
        "Error prompt should mention troubleshooting"
    );
    assert!(
        prompt.contains("syntax error"),
        "Error prompt should contain error message"
    );
}

// Test: query change clears in-flight request tracking
#[test]
fn test_query_change_clears_in_flight_request() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true; // Popup must be visible for requests to be sent
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Start an in-flight request
    ai_state.start_request();
    let _old_request_id = ai_state.current_request_id();
    assert!(ai_state.has_in_flight_request());

    // Clear the channel
    while rx.try_recv().is_ok() {}

    // Set up for new query
    ai_state.set_last_query_hash(".old");

    // Simulate new query result (different query)
    let result: Result<String, String> = Ok("output".to_string());
    handle_execution_result(&mut ai_state, &result, ".new", 4, empty_params());

    // Should have sent Query for new request
    // (cancellation is now handled via CancellationToken, not Cancel message)
    let mut found_query = false;

    while let Ok(msg) = rx.try_recv() {
        match msg {
            AiRequest::Query { .. } => {
                found_query = true;
            }
        }
    }

    assert!(found_query, "Should have sent new Query request");
}

// Test: handle_query_result wrapper works correctly
#[test]
fn test_handle_query_result_wrapper() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.set_last_query_hash(".old");

    // Test with generic type that implements ToString
    let result: Result<&str, String> = Ok("output");
    handle_query_result(&mut ai_state, &result, ".new", 4, empty_params());

    // Should have updated query hash
    assert!(!ai_state.is_query_changed(".new"));
}

// Test: same query repeated → no duplicate AI requests
#[test]
fn test_same_query_no_duplicate_requests() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // First execution
    let result: Result<String, String> = Ok(r#""test""#.to_string());
    handle_execution_result(&mut ai_state, &result, ".name", 5, empty_params());

    // Drain channel
    while rx.try_recv().is_ok() {}

    // Same query executed again (e.g., user pressed Enter)
    handle_execution_result(
        &mut ai_state,
        &result,
        ".name", // Same query
        5,
        empty_params(),
    );

    // Should NOT have sent any new requests
    let request = rx.try_recv();
    assert!(
        request.is_err(),
        "Should not send duplicate request for same query"
    );
}

// Test: AI disabled → no requests sent
#[test]
fn test_ai_disabled_no_requests() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = false; // AI disabled
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Execute query
    let result: Result<String, String> = Ok(r#""test""#.to_string());
    handle_execution_result(&mut ai_state, &result, ".name", 5, empty_params());

    // Should NOT have sent any requests
    let request = rx.try_recv();
    assert!(
        request.is_err(),
        "Should not send request when AI is disabled"
    );
}

/// Test: visible=true → AI requests sent on error
#[test]
fn test_visible_sends_requests_on_error() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true; // Popup visible
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Execute query with error
    let result: Result<String, String> = Err("syntax error".to_string());
    handle_execution_result(&mut ai_state, &result, ".invalid", 8, empty_params());

    // Should have sent AI request
    let request = rx.try_recv();
    assert!(
        request.is_ok(),
        "Should send AI request when popup is visible"
    );

    // Verify it's a Query request with error context
    let AiRequest::Query { prompt, .. } = request.unwrap();
    assert!(
        prompt.contains("troubleshoot"),
        "Error prompt should mention troubleshooting"
    );
    assert!(
        prompt.contains("syntax error"),
        "Error prompt should contain error message"
    );
}

/// Test: visible=false → no AI requests on error
#[test]
fn test_hidden_no_requests_on_error() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = false; // Popup hidden
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Execute query with error
    let result: Result<String, String> = Err("syntax error".to_string());
    handle_execution_result(&mut ai_state, &result, ".invalid", 8, empty_params());

    // Should NOT have sent AI request
    let request = rx.try_recv();
    assert!(
        request.is_err(),
        "Should not send AI request when popup is hidden"
    );
}

/// Test: visible=true with success → AI request sent
#[test]
fn test_visible_sends_requests_on_success() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = true; // Popup visible
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Execute query with success
    let result: Result<String, String> = Ok(r#""test_value""#.to_string());
    handle_execution_result(&mut ai_state, &result, ".name", 5, empty_params());

    // Should have sent AI request
    let request = rx.try_recv();
    assert!(
        request.is_ok(),
        "Should send AI request for success when popup is visible"
    );

    // Verify it's a Query request with success context
    let AiRequest::Query { prompt, .. } = request.unwrap();
    assert!(
        prompt.contains("optimize"),
        "Success prompt should mention optimization"
    );
}

/// Test: visible=false with success → no AI request sent
#[test]
fn test_hidden_no_requests_on_success() {
    let mut ai_state = AiState::new(true);
    ai_state.enabled = true;
    ai_state.visible = false; // Popup hidden
    let (tx, rx) = mpsc::channel();
    ai_state.request_tx = Some(tx);

    // Execute query with success
    let result: Result<String, String> = Ok(r#""test_value""#.to_string());
    handle_execution_result(&mut ai_state, &result, ".name", 5, empty_params());

    // Should NOT have sent AI request
    let request = rx.try_recv();
    assert!(
        request.is_err(),
        "Should not send AI request when popup is hidden"
    );
}