newts 0.3.0

A cross-language notebook terminal interface and server.
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
use axum::{
    body::Body,
    http::{Request, StatusCode},
};
use newts::server::app;
use newts::{CommandRequest, CommandResponse};
use newts::server::kernel::{RUST_KERNEL, C_KERNEL, CPP_KERNEL, GO_KERNEL};
use tower::ServiceExt; // for `oneshot`
use http_body_util::BodyExt; // for `collect`

fn clear_kernels() {
    if let Ok(mut guard) = RUST_KERNEL.lock() {
        if let Some(kernel) = guard.as_mut() {
            kernel.clear();
        }
    }
    if let Ok(mut guard) = C_KERNEL.lock() {
        if let Some(kernel) = guard.as_mut() {
            kernel.clear();
        }
    }
    if let Ok(mut guard) = CPP_KERNEL.lock() {
        if let Some(kernel) = guard.as_mut() {
            kernel.clear();
        }
    }
    if let Ok(mut guard) = GO_KERNEL.lock() {
        if let Some(kernel) = guard.as_mut() {
            kernel.clear();
        }
    }
}

#[tokio::test]
async fn test_echo_command() {
    let app = app();

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "echo hello".to_string(),
                    language: None,
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.stdout.trim(), "hello");
}

#[tokio::test]
async fn test_cargo_version() {
    let app = app();

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "cargo --version".to_string(),
                    language: None,
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert!(resp.stdout.contains("cargo"));
}

#[tokio::test]
async fn test_state_persistence_fail() {
    // This test demonstrates that state is NOT persisted between commands
    // which is a limitation of the current implementation (no REPL session).
    let app = app();

    // 1. Change directory
    let _ = app.clone()
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "cd /".to_string(),
                    language: None,
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    // 2. Check directory
    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "pwd".to_string(),
                    language: None,
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    // It should NOT be "/" because the previous `cd` happened in a separate process
    assert_ne!(resp.stdout.trim(), "/");
}

#[tokio::test]
async fn test_quoted_arguments_fail() {
    // This test demonstrates that quoted arguments are NOT handled correctly
    // by the naive split_whitespace() implementation.
    let app = app();

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "echo \"hello world\"".to_string(),
                    language: None,
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    // Naive split will result in: echo, "hello, world"
    // Output will likely include the quotes: "hello world"
    // A proper shell would output: hello world
    assert_eq!(resp.stdout.trim(), "\"hello world\"");
}

#[tokio::test]
async fn test_rust_snippet_execution() {
    clear_kernels();
    let app = app();

    let code = r#"
        const foo: &str = "bar";
        println!("{}", foo);
    "#;

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: code.to_string(),
                    language: Some("rust".to_string()),
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.stdout.trim(), "bar");
    assert!(resp.stderr.is_empty());
}

#[tokio::test]
async fn test_python_statefulness() {
    let app = app();

    // Step 1: Set variable
    let response1 = app.clone()
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "x = 42".to_string(),
                    language: Some("python".to_string()),
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response1.status(), StatusCode::OK);

    // Step 2: Read variable
    let response2 = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "print(x)".to_string(),
                    language: Some("python".to_string()),
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response2.status(), StatusCode::OK);

    let body = response2.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.stdout.trim(), "42");
}

#[tokio::test]
async fn test_rust_statefulness() {
    clear_kernels();
    let app = app();

    // Cell 1: let x = 100;
    // Cell 2: println!("{}", x);
    // Context: let x = 100;

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "println!(\"{}\", x);".to_string(),
                    language: Some("rust".to_string()),
                    context: Some(vec!["let x = 100;".to_string()]),
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.stdout.trim(), "100");
}

#[tokio::test]
async fn test_c_statefulness() {
    clear_kernels();
    let app = app();

    // Cell 1: int x = 55; (Global)
    // Cell 2: int main() { printf("%d", x); return 0; }
    // Context: int x = 55;

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "int main() { printf(\"%d\", x); return 0; }".to_string(),
                    language: Some("c".to_string()),
                    context: Some(vec!["#include <stdio.h>\nint x = 55;".to_string()]),
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.stdout.trim(), "55");
}

#[tokio::test]
async fn test_rust_mixed_context() {
    clear_kernels();
    let app = app();

    // Scenario 1: Context has main, Code is snippet
    let response = app.clone()
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "println!(\"hi\");".to_string(),
                    language: Some("rust".to_string()),
                    context: Some(vec!["fn main() { println!(\"Hello, world!\"); }".to_string()]),
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    assert_eq!(resp.stdout.trim(), "hi");

    // Scenario 2: Context is snippet, Code is snippet
    let response = app.clone()
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "println!(\"curr\");".to_string(),
                    language: Some("rust".to_string()),
                    context: Some(vec!["println!(\"prev\");".to_string()]),
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    // Output should contain both because they are combined in one main
    assert!(resp.stdout.contains("prev"));
    assert!(resp.stdout.contains("curr"));
}

#[tokio::test]
async fn test_rust_comment_main() {
    clear_kernels();
    let app = app();

    let response = app.clone()
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: "println!(\"hi\");".to_string(),
                    language: Some("rust".to_string()),
                    context: Some(vec!["// fn main".to_string()]),
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    assert_eq!(resp.stdout.trim(), "hi");
}

#[tokio::test]
async fn test_python_matplotlib_plot() {
    let app = app();

    let code = r#"
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 2, 3])
plt.show()
"#;

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: code.to_string(),
                    language: Some("python".to_string()),
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    if resp.status != Some(0) {
        println!("Stderr: {}", resp.stderr);
        println!("Stdout: {}", resp.stdout);
    }
    assert_eq!(resp.status, Some(0));
    assert!(resp.display_data.is_some());
    let display_data = resp.display_data.unwrap();
    assert!(!display_data.is_empty());
    
    // Check for image data (Base64)
    let has_image = display_data.iter().any(|d| {
        d.data.iter().any(|(k, v)| {
            if k.starts_with("image/") {
                // In persistent kernel, we return Base64 string
                if let Some(b64) = v.as_str() {
                    // Just check it's a reasonably long string
                    b64.len() > 100
                } else {
                    false
                }
            } else {
                false
            }
        })
    });
    assert!(has_image, "Should have image output (Base64)");
}

#[tokio::test]
async fn test_python_display_json() {
    let app = app();

    let code = r#"
class MyJSON:
    def _repr_json_(self):
        return {"foo": "bar"}

display(MyJSON())
"#;

    let response = app
        .oneshot(
            Request::builder()
                .method("POST")
                .uri("/exec")
                .header("content-type", "application/json")
                .body(Body::from(serde_json::to_string(&CommandRequest {
                    command: code.to_string(),
                    language: Some("python".to_string()),
                    context: None,
                    client_type: None,
                    notebook_path: None,
                }).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(response.status(), StatusCode::OK);

    let body = response.into_body().collect().await.unwrap().to_bytes();
    let resp: CommandResponse = serde_json::from_slice(&body).unwrap();
    
    assert_eq!(resp.status, Some(0));
    assert!(resp.display_data.is_some());
    let display_data = resp.display_data.unwrap();
    
    // Check for json data
    let has_json = display_data.iter().any(|d| {
        d.data.contains_key("application/json")
    });
    assert!(has_json, "Should have json output");
}