reovim-module-commands 0.14.4

Ex-commands (:w, :q, :set) for reovim - POLICY module
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
use super::*;

// ========================================================================
// WriteCommand tests
// ========================================================================

#[test]
fn test_write_command_id() {
    let cmd = WriteCommand;
    assert_eq!(cmd.id().name(), "write");
    assert_eq!(cmd.id().module().as_str(), "commands");
}

#[test]
fn test_write_command_names() {
    let cmd = WriteCommand;
    let names = cmd.names();
    assert_eq!(names.len(), 2);
    assert!(names.contains(&"w"));
    assert!(names.contains(&"write"));
}

#[test]
fn test_write_command_description() {
    let cmd = WriteCommand;
    let desc = cmd.description();
    assert!(!desc.is_empty());
    assert!(desc.contains("Write"));
}

#[test]
fn test_write_command_args() {
    let cmd = WriteCommand;
    let args = cmd.args();
    assert_eq!(args.len(), 1);
    assert_eq!(args[0].name, "file");
    assert_eq!(args[0].kind, reovim_driver_command::ArgKind::Rest);
    assert!(!args[0].required);
}

#[test]
fn test_write_command_complete_returns_empty() {
    let cmd = WriteCommand;
    let completions = cmd.complete("some_partial");
    assert!(completions.is_empty());
}

#[test]
fn test_write_command_debug() {
    let cmd = WriteCommand;
    let debug = format!("{cmd:?}");
    assert!(debug.contains("WriteCommand"));
}

#[test]
fn test_write_command_is_send_sync() {
    fn assert_send_sync<T: Send + Sync>() {}
    assert_send_sync::<WriteCommand>();
}

#[test]
fn test_write_cmd_id_const() {
    assert_eq!(WRITE_CMD_ID.name(), "write");
    assert_eq!(WRITE_CMD_ID.module().as_str(), "commands");
}

// ========================================================================
// WriteQuitCommand tests
// ========================================================================

#[test]
fn test_write_quit_command_id() {
    let cmd = WriteQuitCommand;
    assert_eq!(cmd.id().name(), "write-quit");
    assert_eq!(cmd.id().module().as_str(), "commands");
}

#[test]
fn test_write_quit_command_names() {
    let cmd = WriteQuitCommand;
    let names = cmd.names();
    assert_eq!(names.len(), 1);
    assert!(names.contains(&"wq"));
}

#[test]
fn test_write_quit_command_description() {
    let cmd = WriteQuitCommand;
    let desc = cmd.description();
    assert!(!desc.is_empty());
    assert!(desc.contains("Write"));
    assert!(desc.contains("quit"));
}

#[test]
fn test_write_quit_command_complete_returns_empty() {
    let cmd = WriteQuitCommand;
    let completions = cmd.complete("anything");
    assert!(completions.is_empty());
}

#[test]
fn test_write_quit_command_debug() {
    let cmd = WriteQuitCommand;
    let debug = format!("{cmd:?}");
    assert!(debug.contains("WriteQuitCommand"));
}

#[test]
fn test_write_quit_command_is_send_sync() {
    fn assert_send_sync<T: Send + Sync>() {}
    assert_send_sync::<WriteQuitCommand>();
}

// ========================================================================
// WriteCommand execution tests
// ========================================================================

#[test]
fn test_write_no_buffer_returns_error() {
    use reovim_driver_session::testing::TestSessionRuntime;

    let mut harness = TestSessionRuntime::with_buffer("hello");
    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        // No buffer_id set on context
        let ctx = CommandContext::new();
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_error());
        if let CommandResult::Error(msg) = &result {
            assert!(msg.contains("no buffer"));
        }
    });
}

#[test]
fn test_write_no_filename_returns_error() {
    use {
        reovim_driver_session::testing::TestSessionRuntime, reovim_driver_vfs::MockVfs,
        std::sync::Arc,
    };

    let mut harness = TestSessionRuntime::with_buffer("hello");
    let buffer_id = harness.active_buffer().unwrap();
    // Buffer has no file path, no explicit file arg → error
    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        let mock_vfs = Arc::new(MockVfs::new());
        ctx.set_vfs(mock_vfs as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_error());
        if let CommandResult::Error(msg) = &result {
            assert!(msg.contains("No file name"));
        }
    });
}

#[test]
fn test_write_vfs_not_available_returns_error() {
    use reovim_driver_session::testing::TestSessionRuntime;

    let mut harness = TestSessionRuntime::with_buffer("hello");
    let buffer_id = harness.active_buffer().unwrap();
    // Set file path on buffer but don't set VFS
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/test.txt".to_string()));

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        // No VFS set
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_error());
        if let CommandResult::Error(msg) = &result {
            assert!(msg.contains("VFS not available"));
        }
    });
}

#[test]
fn test_write_vfs_error_returns_error() {
    use {
        reovim_driver_session::testing::TestSessionRuntime,
        reovim_driver_vfs::{MockErrorKind, MockVfs},
        std::sync::Arc,
    };

    let mut harness = TestSessionRuntime::with_buffer("hello");
    let buffer_id = harness.active_buffer().unwrap();
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/test.txt".to_string()));

    let mock_vfs = Arc::new(MockVfs::new());
    mock_vfs.set_error("/tmp/test.txt", MockErrorKind::PermissionDenied);

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_error());
        if let CommandResult::Error(msg) = &result {
            assert!(msg.contains("Write failed"));
        }
    });
}

#[test]
fn test_write_success_with_existing_path() {
    use {
        reovim_driver_session::testing::TestSessionRuntime, reovim_driver_vfs::MockVfs,
        std::sync::Arc,
    };

    let mut harness = TestSessionRuntime::with_buffer("hello world");
    let buffer_id = harness.active_buffer().unwrap();
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/test.txt".to_string()));
    // Mark buffer as modified
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_modified(true);

    let mock_vfs = Arc::new(MockVfs::new());

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_success());

        // Verify VFS was called
        let calls = mock_vfs.write_calls();
        assert_eq!(calls.len(), 1);
        assert_eq!(calls[0].0, std::path::PathBuf::from("/tmp/test.txt"));
        assert_eq!(String::from_utf8_lossy(&calls[0].1), "hello world");

        // Modified flag should be cleared
        let is_modified = runtime
            .kernel()
            .buffers
            .get(buffer_id)
            .unwrap()
            .read()
            .is_modified();
        assert!(!is_modified);
    });
}

#[test]
fn test_write_with_explicit_file_renames_buffer() {
    use {
        reovim_driver_command_types::ArgValue, reovim_driver_session::testing::TestSessionRuntime,
        reovim_driver_vfs::MockVfs, std::sync::Arc,
    };

    let mut harness = TestSessionRuntime::with_buffer("save as content");
    let buffer_id = harness.active_buffer().unwrap();

    let mock_vfs = Arc::new(MockVfs::new());

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set("file", ArgValue::String("/tmp/new_file.txt".to_string()));
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_success());

        // Verify VFS wrote to the new path
        let calls = mock_vfs.write_calls();
        assert_eq!(calls.len(), 1);
        assert_eq!(calls[0].0, std::path::PathBuf::from("/tmp/new_file.txt"));

        // Buffer should be renamed
        let path = runtime
            .kernel()
            .buffers
            .get(buffer_id)
            .unwrap()
            .read()
            .file_path()
            .map(String::from);
        assert_eq!(path.as_deref(), Some("/tmp/new_file.txt"));
    });
}

#[test]
fn test_write_emits_buffer_saved_event() {
    use {
        reovim_driver_session::testing::TestSessionRuntime,
        reovim_driver_vfs::MockVfs,
        reovim_kernel::api::v1::events::kernel::BufferSaved,
        std::sync::{
            Arc,
            atomic::{AtomicBool, Ordering},
        },
    };

    let mut harness = TestSessionRuntime::with_buffer("event test");
    let buffer_id = harness.active_buffer().unwrap();
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/saved.txt".to_string()));

    let mock_vfs = Arc::new(MockVfs::new());

    // Subscribe to BufferSaved events
    let event_received = Arc::new(AtomicBool::new(false));
    let event_flag = Arc::clone(&event_received);
    let _sub = harness
        .kernel()
        .event_bus
        .subscribe::<BufferSaved, _>(0, move |_event| {
            event_flag.store(true, Ordering::SeqCst);
            reovim_kernel::api::v1::EventResult::Handled
        });

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_success());
    });

    assert!(event_received.load(Ordering::SeqCst), "BufferSaved event should be emitted");
}

#[test]
fn test_write_emits_buffer_will_save_event() {
    use {
        reovim_driver_session::testing::TestSessionRuntime,
        reovim_driver_vfs::MockVfs,
        reovim_kernel::api::v1::events::kernel::BufferWillSave,
        std::sync::{
            Arc,
            atomic::{AtomicBool, Ordering},
        },
    };

    let mut harness = TestSessionRuntime::with_buffer("format me");
    let buffer_id = harness.active_buffer().unwrap();
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/will-save.txt".to_string()));

    let mock_vfs = Arc::new(MockVfs::new());

    let event_received = Arc::new(AtomicBool::new(false));
    let event_flag = Arc::clone(&event_received);
    let _sub = harness
        .kernel()
        .event_bus
        .subscribe::<BufferWillSave, _>(0, move |_event| {
            event_flag.store(true, Ordering::SeqCst);
            reovim_kernel::api::v1::EventResult::Handled
        });

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_success());
    });

    assert!(
        event_received.load(Ordering::SeqCst),
        "BufferWillSave event should be emitted before write"
    );
}

#[test]
fn test_write_will_save_fires_before_saved() {
    use {
        reovim_driver_session::testing::TestSessionRuntime,
        reovim_driver_vfs::MockVfs,
        reovim_kernel::api::v1::events::kernel::{BufferSaved, BufferWillSave},
        std::sync::{Arc, Mutex},
    };

    let mut harness = TestSessionRuntime::with_buffer("order test");
    let buffer_id = harness.active_buffer().unwrap();
    harness
        .kernel()
        .buffers
        .get(buffer_id)
        .unwrap()
        .write()
        .set_file_path(Some("/tmp/order.txt".to_string()));

    let mock_vfs = Arc::new(MockVfs::new());

    // Track event ordering
    let order = Arc::new(Mutex::new(Vec::<&'static str>::new()));

    let order_will = Arc::clone(&order);
    let _sub1 = harness
        .kernel()
        .event_bus
        .subscribe::<BufferWillSave, _>(0, move |_| {
            order_will.lock().unwrap().push("will_save");
            reovim_kernel::api::v1::EventResult::Handled
        });

    let order_saved = Arc::clone(&order);
    let _sub2 = harness
        .kernel()
        .event_bus
        .subscribe::<BufferSaved, _>(0, move |_| {
            order_saved.lock().unwrap().push("saved");
            reovim_kernel::api::v1::EventResult::Handled
        });

    harness.with_runtime(|runtime| {
        let cmd = WriteCommand;
        let mut ctx = CommandContext::new();
        ctx.set_buffer_id(buffer_id);
        ctx.set_vfs(Arc::clone(&mock_vfs) as Arc<dyn reovim_driver_vfs::VfsDriver>);
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_success());
    });

    let events = order.lock().unwrap();
    assert_eq!(&*events, &["will_save", "saved"]);
    drop(events);
}

// ========================================================================
// WriteQuitCommand execution tests
// ========================================================================

#[test]
fn test_write_quit_propagates_write_error() {
    use reovim_driver_session::testing::TestSessionRuntime;

    let mut harness = TestSessionRuntime::with_buffer("hello");
    harness.with_runtime(|runtime| {
        let cmd = WriteQuitCommand;
        // StubExecutor returns None → execute_command returns "command not found"
        let ctx = CommandContext::new();
        let result = cmd.execute(runtime, &ctx);
        assert!(result.is_error());
        // Should NOT signal quit when write fails
        let signals = runtime.take_signals();
        assert!(signals.is_empty());
    });
}