mirror of https://github.com/pkg/sftp.git
				
				
				
			
		
			
				
	
	
		
			41 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			682 B
		
	
	
	
		
			Go
		
	
	
	
package sftp
 | 
						|
 | 
						|
import (
 | 
						|
	"syscall"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestClientStatVFS(t *testing.T) {
 | 
						|
	if *testServerImpl {
 | 
						|
		t.Skipf("go server does not support FXP_EXTENDED")
 | 
						|
	}
 | 
						|
	sftp, cmd := testClient(t, READWRITE, NODELAY)
 | 
						|
	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")
 | 
						|
	}
 | 
						|
}
 |