wezterm-ssh 0.4.0

More convenient higher level wrapper around libssh2
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
use crate::sshd::session;
use assert_fs::prelude::*;
use assert_fs::TempDir;
use predicates::prelude::*;
use rstest::*;
use std::convert::TryInto;
use wezterm_ssh::{FileType, Session, SftpChannelError, SftpError, Utf8PathBuf};

// Sftp file tests
mod file;

#[inline]
fn file_type_to_str(file_type: FileType) -> &'static str {
    if file_type.is_dir() {
        "dir"
    } else if file_type.is_file() {
        "file"
    } else {
        "symlink"
    }
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn read_dir_should_return_list_of_directories_files_and_symlinks(#[future] session: Session) {
    let session: Session = session.await;

    // $TEMP/dir1/
    // $TEMP/dir2/
    // $TEMP/file1
    // $TEMP/file2
    // $TEMP/dir-link -> $TEMP/dir1/
    // $TEMP/file-link -> $TEMP/file1
    let temp = TempDir::new().unwrap();
    let dir1 = temp.child("dir1");
    dir1.create_dir_all().unwrap();
    let dir2 = temp.child("dir2");
    dir2.create_dir_all().unwrap();
    let file1 = temp.child("file1");
    file1.touch().unwrap();
    let file2 = temp.child("file2");
    file2.touch().unwrap();
    let link_dir = temp.child("link-dir");
    link_dir.symlink_to_dir(dir1.path()).unwrap();
    let link_file = temp.child("link-file");
    link_file.symlink_to_file(file1.path()).unwrap();

    let mut contents = session
        .sftp()
        .read_dir(temp.path().to_path_buf())
        .await
        .expect("Failed to read directory")
        .into_iter()
        .map(|(p, s)| (p, file_type_to_str(s.ty)))
        .collect::<Vec<(Utf8PathBuf, &'static str)>>();
    contents.sort_unstable_by_key(|(p, _)| p.to_path_buf());

    assert_eq!(
        contents,
        vec![
            (dir1.path().to_path_buf().try_into().unwrap(), "dir"),
            (dir2.path().to_path_buf().try_into().unwrap(), "dir"),
            (file1.path().to_path_buf().try_into().unwrap(), "file"),
            (file2.path().to_path_buf().try_into().unwrap(), "file"),
            (link_dir.path().to_path_buf().try_into().unwrap(), "symlink"),
            (
                link_file.path().to_path_buf().try_into().unwrap(),
                "symlink"
            ),
        ]
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn create_dir_should_create_a_directory_on_the_remote_filesystem(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    session
        .sftp()
        .create_dir(temp.child("dir").path().to_path_buf(), 0o644)
        .await
        .expect("Failed to create directory");

    // Verify the path exists and is to a directory
    temp.child("dir").assert(predicate::path::is_dir());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn create_dir_should_return_error_if_unable_to_create_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    // Attempt to create a nested directory structure, which is not supported
    let result = session
        .sftp()
        .create_dir(temp.child("dir").child("dir").path().to_path_buf(), 0o644)
        .await;
    assert!(
        result.is_err(),
        "Unexpectedly succeeded in creating directory: {:?}",
        result
    );

    // Verify the path is not a directory
    temp.child("dir")
        .child("dir")
        .assert(predicate::path::is_dir().not());
    temp.child("dir").assert(predicate::path::is_dir().not());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_dir_should_remove_a_remote_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    // Removing an empty directory should succeed
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    session
        .sftp()
        .remove_dir(dir.path().to_path_buf())
        .await
        .expect("Failed to remove directory");

    // Verify the directory no longer exists
    dir.assert(predicate::path::is_dir().not());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_dir_should_return_an_error_if_failed_to_remove_directory(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    // Attempt to remove a missing path
    let result = session
        .sftp()
        .remove_dir(temp.child("missing-dir").path().to_path_buf())
        .await;
    assert!(
        result.is_err(),
        "Unexpectedly succeeded in removing missing directory: {:?}",
        result
    );

    // Attempt to remove a non-empty directory
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    dir.child("file").touch().unwrap();

    let result = session.sftp().remove_dir(dir.path().to_path_buf()).await;
    assert!(
        result.is_err(),
        "Unexpectedly succeeded in removing non-empty directory: {:?}",
        result
    );

    // Verify the non-empty directory still exists
    dir.assert(predicate::path::is_dir());

    // Attempt to remove a file (not a directory)
    let file = temp.child("file");
    file.touch().unwrap();
    let result = session.sftp().remove_dir(file.path().to_path_buf()).await;
    assert!(
        result.is_err(),
        "Unexpectedly succeeded in removing file: {:?}",
        result
    );

    // Verify the file still exists
    file.assert(predicate::path::is_file());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn metadata_should_return_metadata_about_a_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.touch().unwrap();

    let metadata = session
        .sftp()
        .metadata(file.path().to_path_buf())
        .await
        .expect("Failed to get metadata for file");

    // Verify that file metadata makes sense
    assert!(metadata.is_file(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn metadata_should_return_metadata_about_a_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();

    let metadata = session
        .sftp()
        .metadata(dir.path().to_path_buf())
        .await
        .expect("Failed to get metadata for dir");

    // Verify that file metadata makes sense
    assert!(metadata.is_dir(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn metadata_should_return_metadata_about_the_file_pointed_to_by_a_symlink(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let file = temp.child("file");
    file.touch().unwrap();
    let link = temp.child("link");
    link.symlink_to_file(file.path()).unwrap();

    let metadata = session
        .sftp()
        .metadata(link.path().to_path_buf())
        .await
        .expect("Failed to get metadata for symlink");

    // Verify that file metadata makes sense
    assert!(metadata.is_file(), "Invalid file metadata returned");
    assert!(metadata.ty.is_file(), "Invalid file metadata returned");
    assert!(!metadata.ty.is_symlink(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn metadata_should_return_metadata_about_the_dir_pointed_to_by_a_symlink(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let link = temp.child("link");
    link.symlink_to_dir(dir.path()).unwrap();

    let metadata = session
        .sftp()
        .metadata(link.path().to_path_buf())
        .await
        .expect("Failed to get metadata for symlink");

    // Verify that file metadata makes sense
    assert!(metadata.is_dir(), "Invalid file metadata returned");
    assert!(metadata.ty.is_dir(), "Invalid file metadata returned");
    assert!(!metadata.ty.is_symlink(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn metadata_should_fail_if_path_missing(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let result = session
        .sftp()
        .metadata(temp.child("missing").path().to_path_buf())
        .await;
    assert!(
        result.is_err(),
        "Metadata unexpectedly succeeded: {:?}",
        result
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_metadata_should_return_metadata_about_a_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.touch().unwrap();

    let symlink_metadata = session
        .sftp()
        .symlink_metadata(file.path().to_path_buf())
        .await
        .expect("Failed to get metadata for file");

    // Verify that file metadata makes sense
    assert!(symlink_metadata.is_file(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_metadata_should_return_metadata_about_a_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();

    let symlink_metadata = session
        .sftp()
        .symlink_metadata(dir.path().to_path_buf())
        .await
        .expect("Failed to metadata for dir");

    // Verify that file metadata makes sense
    assert!(symlink_metadata.is_dir(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_metadata_should_return_metadata_about_symlink_pointing_to_a_file(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let file = temp.child("file");
    file.touch().unwrap();
    let link = temp.child("link");
    link.symlink_to_file(file.path()).unwrap();

    let metadata = session
        .sftp()
        .symlink_metadata(link.path().to_path_buf())
        .await
        .expect("Failed to get metadata for symlink");

    // Verify that file metadata makes sense
    assert!(!metadata.is_file(), "Invalid file metadata returned");
    assert!(!metadata.ty.is_file(), "Invalid file metadata returned");
    assert!(metadata.ty.is_symlink(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_metadata_should_return_metadata_about_symlink_pointing_to_a_directory(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let link = temp.child("link");
    link.symlink_to_dir(dir.path()).unwrap();

    let metadata = session
        .sftp()
        .symlink_metadata(link.path().to_path_buf())
        .await
        .expect("Failed to get metadata for symlink");

    // Verify that file metadata makes sense
    assert!(!metadata.is_dir(), "Invalid file metadata returned");
    assert!(!metadata.ty.is_dir(), "Invalid file metadata returned");
    assert!(metadata.ty.is_symlink(), "Invalid file metadata returned");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_metadata_should_fail_if_path_missing(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let result = session
        .sftp()
        .symlink_metadata(temp.child("missing").path().to_path_buf())
        .await;
    assert!(
        result.is_err(),
        "symlink_metadata unexpectedly succeeded: {:?}",
        result
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_should_create_symlink_pointing_to_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.touch().unwrap();

    let link = temp.child("link");

    session
        .sftp()
        .symlink(file.path().to_path_buf(), link.path().to_path_buf())
        .await
        .expect("Failed to create symlink");

    assert!(
        std::fs::symlink_metadata(link.path())
            .unwrap()
            .file_type()
            .is_symlink(),
        "Symlink is not a symlink!"
    );

    // TODO: This fails even though the type is a symlink:
    //       https://github.com/assert-rs/assert_fs/issues/70
    // link.assert(predicate::path::is_symlink());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_should_create_symlink_pointing_to_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();

    let link = temp.child("link");

    session
        .sftp()
        .symlink(dir.path().to_path_buf(), link.path().to_path_buf())
        .await
        .expect("Failed to create symlink");

    link.assert(predicate::path::is_symlink());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn symlink_should_succeed_even_if_path_missing(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");

    let link = temp.child("link");

    session
        .sftp()
        .symlink(file.path().to_path_buf(), link.path().to_path_buf())
        .await
        .expect("Failed to create symlink");

    link.assert(predicate::path::is_symlink());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn read_link_should_return_the_target_of_the_symlink(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    // Test a symlink to a directory
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let link = temp.child("link");
    link.symlink_to_dir(dir.path()).unwrap();

    let path = session
        .sftp()
        .read_link(link.path().to_path_buf())
        .await
        .expect("Failed to read symlink");
    assert_eq!(path, dir.path());

    // Test a symlink to a file
    let file = temp.child("file");
    file.touch().unwrap();
    let link = temp.child("link2");
    link.symlink_to_file(file.path()).unwrap();

    let path = session
        .sftp()
        .read_link(link.path().to_path_buf())
        .await
        .expect("Failed to read symlink");
    assert_eq!(path, file.path());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn read_link_should_fail_if_path_is_not_a_symlink(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    // Test missing path
    let result = session
        .sftp()
        .read_link(temp.child("missing").path().to_path_buf())
        .await;
    assert!(
        result.is_err(),
        "Unexpectedly read link for missing path: {:?}",
        result
    );

    // Test a directory
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let result = session.sftp().read_link(dir.path().to_path_buf()).await;
    assert!(
        result.is_err(),
        "Unexpectedly read link for directory: {:?}",
        result
    );

    // Test a file
    let file = temp.child("file");
    file.touch().unwrap();
    let result = session.sftp().read_link(file.path().to_path_buf()).await;
    assert!(
        result.is_err(),
        "Unexpectedly read link for file: {:?}",
        result
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn canonicalize_should_resolve_absolute_path_for_relative_path(#[future] session: Session) {
    let session: Session = session.await;

    // For resolving parts of a path, all components must exist
    let temp = TempDir::new().unwrap();
    temp.child("hello").create_dir_all().unwrap();
    temp.child("world").touch().unwrap();

    let rel = temp.child(".").child("hello").child("..").child("world");

    // NOTE: Because sftp realpath can still resolve symlinks within a missing path, there
    //       is no guarantee that the resulting path matches the missing path. In fact,
    //       on mac the /tmp dir is a symlink to /private/tmp; so, we cannot successfully
    //       check the accuracy of the path itself, meaning that we can only validate
    //       that the operation was okay.
    let result = session.sftp().canonicalize(rel.path().to_path_buf()).await;
    assert!(
        result.is_ok(),
        "Canonicalize unexpectedly failed: {:?}",
        result
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn canonicalize_should_either_return_resolved_path_or_error_if_missing(
    #[future] session: Session,
) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let missing = temp.child("missing");

    // NOTE: Because sftp realpath can still resolve symlinks within a missing path, there
    //       is no guarantee that the resulting path matches the missing path. In fact,
    //       on mac the /tmp dir is a symlink to /private/tmp; so, we cannot successfully
    //       check the accuracy of the path itself, meaning that we can only validate
    //       that the operation was okay.
    //
    //       Additionally, this has divergent behavior. On some platforms, this returns
    //       the path as is whereas on others this returns a missing path error. We
    //       have to support both checks.
    let result = session
        .sftp()
        .canonicalize(missing.path().to_path_buf())
        .await;
    match result {
        Ok(_) => {}
        Err(SftpChannelError::Sftp(SftpError::NoSuchFile)) => {}
        #[cfg(feature = "libssh-rs")]
        Err(SftpChannelError::LibSsh(libssh_rs::Error::Sftp(_))) => {}
        x => panic!(
            "Unexpected result from canonicalize({}: {:?}",
            missing.path().display(),
            x
        ),
    }
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn canonicalize_should_fail_if_resolving_missing_path_with_dots(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let missing = temp.child(".").child("hello").child("..").child("world");

    let result = session
        .sftp()
        .canonicalize(missing.path().to_path_buf())
        .await;
    assert!(result.is_err(), "Canonicalize unexpectedly succeeded");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn rename_should_support_singular_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.write_str("some text").unwrap();

    let dst = temp.child("dst");

    session
        .sftp()
        .rename(
            file.path().to_path_buf(),
            dst.path().to_path_buf(),
            Default::default(),
        )
        .await
        .expect("Failed to rename file");

    // Verify that file was moved to destination
    file.assert(predicate::path::missing());
    dst.assert("some text");
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn rename_should_support_dirtectory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let dir_file = dir.child("file");
    dir_file.write_str("some text").unwrap();
    let dir_dir = dir.child("dir");
    dir_dir.create_dir_all().unwrap();

    let dst = temp.child("dst");

    session
        .sftp()
        .rename(
            dir.path().to_path_buf(),
            dst.path().to_path_buf(),
            Default::default(),
        )
        .await
        .expect("Failed to rename directory");

    // Verify that directory was moved to destination
    dir.assert(predicate::path::missing());
    dir_file.assert(predicate::path::missing());
    dir_dir.assert(predicate::path::missing());

    dst.assert(predicate::path::is_dir());
    dst.child("file").assert("some text");
    dst.child("dir").assert(predicate::path::is_dir());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn rename_should_fail_if_source_path_missing(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let missing = temp.child("missing");
    let dst = temp.child("dst");

    let result = session
        .sftp()
        .rename(
            missing.path().to_path_buf(),
            dst.path().to_path_buf(),
            Default::default(),
        )
        .await;
    assert!(
        result.is_err(),
        "Rename unexpectedly succeeded with missing path: {:?}",
        result
    );
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_file_should_remove_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.touch().unwrap();

    session
        .sftp()
        .remove_file(file.path().to_path_buf())
        .await
        .expect("Failed to remove file");

    file.assert(predicate::path::missing());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_file_should_remove_symlink_to_file(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let file = temp.child("file");
    file.touch().unwrap();
    let link = temp.child("link");
    link.symlink_to_file(file.path()).unwrap();

    session
        .sftp()
        .remove_file(link.path().to_path_buf())
        .await
        .expect("Failed to remove symlink");

    // Verify link removed but file still exists
    link.assert(predicate::path::missing());
    file.assert(predicate::path::is_file());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_file_should_remove_symlink_to_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();
    let link = temp.child("link");
    link.symlink_to_dir(dir.path()).unwrap();

    session
        .sftp()
        .remove_file(link.path().to_path_buf())
        .await
        .expect("Failed to remove symlink");

    // Verify link removed but directory still exists
    link.assert(predicate::path::missing());
    dir.assert(predicate::path::is_dir());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_file_should_fail_if_path_to_directory(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();
    let dir = temp.child("dir");
    dir.create_dir_all().unwrap();

    let result = session.sftp().remove_file(dir.path().to_path_buf()).await;
    assert!(
        result.is_err(),
        "Unexpectedly removed directory: {:?}",
        result
    );

    // Verify directory still here
    dir.assert(predicate::path::is_dir());
}

#[rstest]
#[smol_potat::test]
#[cfg_attr(not(any(target_os = "macos", target_os = "linux")), ignore)]
async fn remove_file_should_fail_if_path_missing(#[future] session: Session) {
    let session: Session = session.await;

    let temp = TempDir::new().unwrap();

    let result = session
        .sftp()
        .remove_file(temp.child("missing").path().to_path_buf())
        .await;
    assert!(
        result.is_err(),
        "Unexpectedly removed missing path: {:?}",
        result
    );
}