fslite-server 0.1.0

HTTP adapter exposing fslite-core's FileSystem trait as a resource-oriented REST API, gated by a pluggable AuthProvider.
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
mod support;

use axum::body::Body;
use axum::http::{Method, Request};
use fslite_core::{RequestContext, VirtualPath, WriteSource};
use fslite_server::app;
use http_body_util::BodyExt;
use tower::ServiceExt;

fn auth(builder: axum::http::request::Builder) -> axum::http::request::Builder {
    builder.header("authorization", format!("Bearer {}", support::TOKEN))
}

#[tokio::test]
async fn put_then_get_round_trips_bytes() {
    let (state, workspace_id) = support::fixture().await;

    let put = app(state.clone())
        .oneshot(
            auth(
                Request::builder()
                    .method(Method::PUT)
                    .uri(format!("/v1/workspaces/{workspace_id}/content/a.txt")),
            )
            .body(Body::from("hello world"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(put.status(), 200);

    let get = app(state)
        .oneshot(
            auth(Request::builder().uri(format!("/v1/workspaces/{workspace_id}/content/a.txt")))
                .body(Body::empty())
                .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(get.status(), 200);
    assert_eq!(get.headers().get("accept-ranges").unwrap(), "bytes");
    assert_eq!(get.headers().get("content-length").unwrap(), "11");
    assert!(get.headers().get("content-range").is_none());
    let body = get.into_body().collect().await.unwrap().to_bytes();
    assert_eq!(&body[..], b"hello world");
}

#[tokio::test]
async fn get_with_range_header_returns_206_and_a_slice() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    state
        .fs
        .write(
            &ctx,
            &VirtualPath::parse("/a.txt").unwrap(),
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state)
        .oneshot(
            auth(
                Request::builder()
                    .uri(format!("/v1/workspaces/{workspace_id}/content/a.txt"))
                    .header("range", "bytes=0-4"),
            )
            .body(Body::empty())
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 206);
    assert_eq!(
        response.headers().get("content-range").unwrap(),
        "bytes 0-4/11"
    );
    assert_eq!(response.headers().get("accept-ranges").unwrap(), "bytes");
    let body = response.into_body().collect().await.unwrap().to_bytes();
    assert_eq!(&body[..], b"hello");
}

#[tokio::test]
async fn get_with_unsatisfiable_range_returns_416_with_content_range() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    state
        .fs
        .write(
            &ctx,
            &VirtualPath::parse("/a.txt").unwrap(),
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state)
        .oneshot(
            auth(
                Request::builder()
                    .uri(format!("/v1/workspaces/{workspace_id}/content/a.txt"))
                    .header("range", "bytes=200-300"),
            )
            .body(Body::empty())
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 416);
    assert_eq!(
        response.headers().get("content-range").unwrap(),
        "bytes */11"
    );
}

#[tokio::test]
async fn get_with_malformed_range_returns_400() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    state
        .fs
        .write(
            &ctx,
            &VirtualPath::parse("/a.txt").unwrap(),
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state)
        .oneshot(
            auth(
                Request::builder()
                    .uri(format!("/v1/workspaces/{workspace_id}/content/a.txt"))
                    .header("range", "bytes=0-9,20-29"),
            )
            .body(Body::empty())
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 400);
}

#[tokio::test]
async fn action_append_extends_a_file() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello ".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state.clone())
        .oneshot(
            auth(Request::builder().method(Method::POST).uri(format!(
                "/v1/workspaces/{workspace_id}/content/a.txt?action=append"
            )))
            .body(Body::from("world"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 200);

    let read = state
        .fs
        .read(&ctx, &path, Default::default())
        .await
        .unwrap();
    let mut stream = read.into_stream();
    let mut bytes = Vec::new();
    use futures::StreamExt;
    while let Some(chunk) = stream.next().await {
        bytes.extend_from_slice(&chunk.unwrap());
    }
    assert_eq!(bytes, b"hello world");
}

#[tokio::test]
async fn action_truncate_shortens_a_file() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state.clone())
        .oneshot(
            auth(
                Request::builder()
                    .method(Method::POST)
                    .uri(format!(
                        "/v1/workspaces/{workspace_id}/content/a.txt?action=truncate"
                    ))
                    .header("content-type", "application/json"),
            )
            .body(Body::from(serde_json::json!({"length": 5}).to_string()))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 200);
    let body = response.into_body().collect().await.unwrap().to_bytes();
    let node: fslite_core::Node = serde_json::from_slice(&body).unwrap();
    assert_eq!(node.logical_size, 5);
}

#[tokio::test]
async fn patch_write_at_writes_bytes_at_an_offset() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let response = app(state.clone())
        .oneshot(
            auth(Request::builder().method(Method::PATCH).uri(format!(
                "/v1/workspaces/{workspace_id}/content/a.txt?offset=6"
            )))
            .body(Body::from("Rust!"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 200);

    let read = state
        .fs
        .read(&ctx, &path, Default::default())
        .await
        .unwrap();
    let mut stream = read.into_stream();
    let mut bytes = Vec::new();
    use futures::StreamExt;
    while let Some(chunk) = stream.next().await {
        bytes.extend_from_slice(&chunk.unwrap());
    }
    assert_eq!(bytes, b"hello Rust!");
}

#[tokio::test]
async fn write_at_without_offset_query_param_is_rejected() {
    let (state, workspace_id) = support::fixture().await;

    let response = app(state)
        .oneshot(
            auth(
                Request::builder()
                    .method(Method::PATCH)
                    .uri(format!("/v1/workspaces/{workspace_id}/content/a.txt")),
            )
            .body(Body::from("data"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 400);
}

// --- expected_revision round-trip regression tests ------------------------
//
// `expected_revision` was, until this fix wave, exercised end-to-end on
// only one route (`write`, in `tests/contract.rs`) across the entire suite —
// the systemic gap that let `append` (below) silently drop it in the first
// place. These tests close that gap for `content`'s remaining
// revision-aware routes.

/// Doubles as the regression test for the `append` fix itself: `append`
/// used to build `WriteOptions::default()` without ever reading
/// `expected_revision` from the query string, so a stale value was silently
/// ignored instead of being rejected with 412.
#[tokio::test]
async fn action_append_with_stale_expected_revision_is_412() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello ".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let revision = support::current_revision(app(state.clone()), workspace_id, "a.txt").await;

    let response = app(state.clone())
        .oneshot(
            auth(Request::builder().method(Method::POST).uri(format!(
                "/v1/workspaces/{workspace_id}/content/a.txt?action=append&expected_revision={}",
                revision + 1
            )))
            .body(Body::from("world"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 412);
    let body = response.into_body().collect().await.unwrap().to_bytes();
    let json: serde_json::Value = serde_json::from_slice(&body).unwrap();
    assert_eq!(json["error"]["code"], "revision_conflict");

    // The stale append must not have gone through.
    let read = state
        .fs
        .read(&ctx, &path, Default::default())
        .await
        .unwrap();
    let mut stream = read.into_stream();
    let mut bytes = Vec::new();
    use futures::StreamExt;
    while let Some(chunk) = stream.next().await {
        bytes.extend_from_slice(&chunk.unwrap());
    }
    assert_eq!(bytes, b"hello ");
}

#[tokio::test]
async fn action_truncate_with_stale_expected_revision_is_412() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let revision = support::current_revision(app(state.clone()), workspace_id, "a.txt").await;

    let response = app(state.clone())
        .oneshot(
            auth(
                Request::builder()
                    .method(Method::POST)
                    .uri(format!(
                        "/v1/workspaces/{workspace_id}/content/a.txt?action=truncate"
                    ))
                    .header("content-type", "application/json"),
            )
            .body(Body::from(
                serde_json::json!({"length": 5, "expected_revision": revision + 1}).to_string(),
            ))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 412);
    let body = response.into_body().collect().await.unwrap().to_bytes();
    let json: serde_json::Value = serde_json::from_slice(&body).unwrap();
    assert_eq!(json["error"]["code"], "revision_conflict");

    let node = state
        .fs
        .stat(&ctx, &path, Default::default())
        .await
        .unwrap();
    assert_eq!(
        node.logical_size, 11,
        "the stale truncate must not have gone through"
    );
}

#[tokio::test]
async fn patch_write_at_with_stale_expected_revision_is_412() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    let revision = support::current_revision(app(state.clone()), workspace_id, "a.txt").await;

    let response = app(state.clone())
        .oneshot(
            auth(Request::builder().method(Method::PATCH).uri(format!(
                "/v1/workspaces/{workspace_id}/content/a.txt?offset=6&expected_revision={}",
                revision + 1
            )))
            .body(Body::from("Rust!"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 412);
    let body = response.into_body().collect().await.unwrap().to_bytes();
    let json: serde_json::Value = serde_json::from_slice(&body).unwrap();
    assert_eq!(json["error"]["code"], "revision_conflict");

    let read = state
        .fs
        .read(&ctx, &path, Default::default())
        .await
        .unwrap();
    let mut stream = read.into_stream();
    let mut bytes = Vec::new();
    use futures::StreamExt;
    while let Some(chunk) = stream.next().await {
        bytes.extend_from_slice(&chunk.unwrap());
    }
    assert_eq!(
        bytes, b"hello world",
        "the stale write_at must not have gone through"
    );
}

/// Fix 6 regression: `?action=truncate` used to buffer the request body with
/// `axum::body::to_bytes(body, usize::MAX)` — no size limit — even though
/// its JSON payload is at most a few dozen bytes. It's now capped at 64 KiB;
/// this sends a body well over that cap and confirms it's rejected with 413
/// instead of being buffered without bound.
#[tokio::test]
async fn action_truncate_with_an_oversized_body_is_413() {
    let (state, workspace_id) = support::fixture().await;
    let ctx = RequestContext::trusted(workspace_id);
    let path = VirtualPath::parse("/a.txt").unwrap();
    state
        .fs
        .write(
            &ctx,
            &path,
            WriteSource::from_bytes(b"hello world".to_vec()),
            Default::default(),
        )
        .await
        .unwrap();

    // Valid JSON, but padded well past the 64 KiB cap with a `padding`
    // field the DTO doesn't recognize — `to_bytes`'s limit is enforced
    // during buffering, before deserialization ever gets a chance to
    // reject the unknown field.
    let oversized_padding = "x".repeat(100 * 1024);
    let body = serde_json::json!({ "length": 5, "padding": oversized_padding }).to_string();

    let response = app(state.clone())
        .oneshot(
            auth(
                Request::builder()
                    .method(Method::POST)
                    .uri(format!(
                        "/v1/workspaces/{workspace_id}/content/a.txt?action=truncate"
                    ))
                    .header("content-type", "application/json"),
            )
            .body(Body::from(body))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 413);
}

#[tokio::test]
async fn post_action_without_a_recognized_action_is_rejected() {
    let (state, workspace_id) = support::fixture().await;

    let response = app(state)
        .oneshot(
            auth(Request::builder().method(Method::POST).uri(format!(
                "/v1/workspaces/{workspace_id}/content/a.txt?action=bogus"
            )))
            .body(Body::from("data"))
            .unwrap(),
        )
        .await
        .unwrap();
    assert_eq!(response.status(), 400);
}