-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforbidden_test.go
67 lines (50 loc) · 1.19 KB
/
forbidden_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// +build windows
package screw_test
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"golang.org/x/sys/windows"
)
func Test_Forbidden_RemoveWhileOpen(t *testing.T) {
assert := assert.New(t)
tmpdir, err := ioutil.TempDir("", "")
must(err)
name := filepath.Join(tmpdir, "hi.txt")
must(ioutil.WriteFile(name, []byte("Hello"), 0o644))
f, err := os.Open(name)
must(err)
defer f.Close()
err = os.Remove(name)
t.Logf("Remove error: %v", err)
assert.Error(err)
pe, ok := err.(*os.PathError)
assert.True(ok)
if !ok {
return
}
assert.Equal(windows.ERROR_SHARING_VIOLATION, pe.Err)
}
func Test_Forbidden_RemoveParentWhileOpen(t *testing.T) {
assert := assert.New(t)
tmpdir, err := ioutil.TempDir("", "")
must(err)
parent := filepath.Join(tmpdir, "parent")
must(os.MkdirAll(parent, 0o755))
name := filepath.Join(parent, "hi.txt")
must(ioutil.WriteFile(name, []byte("Hello"), 0o644))
f, err := os.Open(name)
must(err)
defer f.Close()
err = os.RemoveAll(parent)
t.Logf("RemoveAll error: %v", err)
assert.Error(err)
pe, ok := err.(*os.PathError)
assert.True(ok)
if !ok {
return
}
assert.Equal(windows.ERROR_SHARING_VIOLATION, pe.Err)
}