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"
|
|
|
|
)
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|