mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
43 lines
730 B
Go
43 lines
730 B
Go
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
"testing"
|
|
)
|
|
|
|
const sftpServer = "/usr/libexec/sftp-server"
|
|
|
|
func TestClientStatVFS(t *testing.T) {
|
|
if *testServerImpl {
|
|
t.Skipf("go server does not support FXP_EXTENDED")
|
|
}
|
|
sftp, cmd := testClient(t, READWRITE, NO_DELAY)
|
|
defer cmd.Wait()
|
|
defer sftp.Close()
|
|
|
|
vfs, err := sftp.StatVFS("/")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// get system stats
|
|
s := syscall.Statfs_t{}
|
|
err = syscall.Statfs("/", &s)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// check some stats
|
|
if vfs.Files != uint64(s.Files) {
|
|
t.Fatal("fr_size does not match")
|
|
}
|
|
|
|
if vfs.Bfree != uint64(s.Bfree) {
|
|
t.Fatal("f_bsize does not match")
|
|
}
|
|
|
|
if vfs.Favail != uint64(s.Ffree) {
|
|
t.Fatal("f_namemax does not match")
|
|
}
|
|
}
|