2015-10-01 13:45:32 -04:00
|
|
|
// +build linux freebsd
|
|
|
|
|
2014-11-13 15:36:05 -05:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
2014-11-20 12:33:15 -05:00
|
|
|
"os"
|
2014-11-13 15:36:05 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-03-31 04:03:31 -04:00
|
|
|
// TestLstat tests Lstat for existing and non existing files
|
2014-11-13 15:36:05 -05:00
|
|
|
func TestLstat(t *testing.T) {
|
2014-11-20 12:33:15 -05:00
|
|
|
file, invalid, _, dir := prepareFiles(t)
|
|
|
|
defer os.RemoveAll(dir)
|
2014-11-13 15:36:05 -05:00
|
|
|
|
|
|
|
statFile, err := Lstat(file)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if statFile == nil {
|
|
|
|
t.Fatal("returned empty stat for existing file")
|
|
|
|
}
|
|
|
|
|
|
|
|
statInvalid, err := Lstat(invalid)
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("did not return error for non-existing file")
|
|
|
|
}
|
|
|
|
if statInvalid != nil {
|
|
|
|
t.Fatal("returned non-nil stat for non-existing file")
|
|
|
|
}
|
|
|
|
}
|