2015-10-01 17:45:32 +00:00
|
|
|
// +build linux freebsd
|
|
|
|
|
2014-11-13 20:36:05 +00:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
2014-11-20 17:33:15 +00:00
|
|
|
"os"
|
2014-11-13 20:36:05 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-03-31 08:03:31 +00:00
|
|
|
// TestLstat tests Lstat for existing and non existing files
|
2014-11-13 20:36:05 +00:00
|
|
|
func TestLstat(t *testing.T) {
|
2014-11-20 17:33:15 +00:00
|
|
|
file, invalid, _, dir := prepareFiles(t)
|
|
|
|
defer os.RemoveAll(dir)
|
2014-11-13 20:36:05 +00: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")
|
|
|
|
}
|
|
|
|
}
|