summaryrefslogtreecommitdiff
path: root/tests/sftp.rs
blob: c6ebd78ca3e8cef56a33db9c1e5f55b612190235 (plain)
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
use std::io::{self, fs, File, TempDir};
use std::io::fs::PathExtensions;

#[test]
fn smoke() {
    let (_tcp, sess) = ::authed_session();
    sess.sftp().unwrap();
}

#[test]
fn ops() {
    let td = TempDir::new("foo").unwrap();
    File::create(&td.path().join("foo")).unwrap();
    fs::mkdir(&td.path().join("bar"), io::USER_DIR).unwrap();

    let (_tcp, sess) = ::authed_session();
    let sftp = sess.sftp().unwrap();
    sftp.opendir(&td.path().join("bar")).unwrap();
    let mut foo = sftp.open(&td.path().join("foo")).unwrap();
    sftp.mkdir(&td.path().join("bar2"), io::USER_DIR).unwrap();
    assert!(td.path().join("bar2").is_dir());
    sftp.rmdir(&td.path().join("bar2")).unwrap();

    sftp.create(&td.path().join("foo5")).unwrap().write(b"foo").unwrap();
    assert_eq!(File::open(&td.path().join("foo5")).read_to_end().unwrap(),
               b"foo".to_vec());

    assert_eq!(sftp.stat(&td.path().join("foo")).unwrap().size, Some(0));
    assert_eq!(foo.read_to_end().unwrap(), Vec::new());

    sftp.symlink(&td.path().join("foo"),
                 &td.path().join("foo2")).unwrap();
    let readlink = sftp.readlink(&td.path().join("foo2")).unwrap();
    assert!(readlink == td.path().join("foo"));
    let realpath = sftp.realpath(&td.path().join("foo2")).unwrap();
    assert!(realpath == td.path().join("foo"));

    let files = sftp.readdir(td.path()).unwrap();
    assert_eq!(files.len(), 4);
}