-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoxattr_test.go
104 lines (89 loc) · 2.63 KB
/
goxattr_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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
Goxattr
-------
Simple go bindings to the crossxattr library for portable access to xattrs
Copyright (c) Morgan Hill 2016 <morgan@pcwizzltd.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package goxattr
import (
"crypto/sha1"
"fmt"
"math/rand"
"os"
"path"
"runtime"
"testing"
"time"
)
const TEST_VALUE = "test value"
const TEST_ATTR_NAME = "test"
func TestGetAttr001(T *testing.T) {
file_name := setup()
SetAttr(file_name, TEST_ATTR_NAME, ([]byte)(TEST_VALUE))
data, _ := GetAttr(file_name, TEST_ATTR_NAME)
tear_down(file_name)
if (string)(data) != TEST_VALUE {
T.Fatal("The value we put in the attr is not the one we got out.")
}
}
func TestSetAttrOO1(T *testing.T) {
file_name := setup()
SetAttr(file_name, TEST_ATTR_NAME, ([]byte)(TEST_VALUE))
_, numAttrs, _ := ListAttrs(file_name)
tear_down(file_name)
if numAttrs != 1 {
T.Fatal("Set attr did not add an attr")
}
}
func TestSetAttr002(T *testing.T) {
file_name := setup()
SetAttr(file_name, TEST_ATTR_NAME, ([]byte)(TEST_VALUE))
attrs, _, _ := ListAttrs(file_name)
tear_down(file_name)
if string(attrs[0][:]) != TEST_ATTR_NAME {
T.Fatal("SetAttr didn't call the attr what we told it to")
}
}
func TestListAttrs001(T *testing.T) {
file_name := setup()
_, numAttrs, _ := ListAttrs(file_name)
tear_down(file_name)
if numAttrs != 0 {
T.Fatal("ListAttrs is reporting attrs we haven't created")
}
}
func TestDeleteAttr(T *testing.T) {
file_name := setup()
SetAttr(file_name, TEST_ATTR_NAME, ([]byte)(TEST_VALUE))
DeleteAttr(file_name, TEST_ATTR_NAME)
_, numAttrs, _ := ListAttrs(file_name)
tear_down(file_name)
if numAttrs == 1 {
T.Fatal("DeleteAtrr did not delete the attribute we created")
}
}
func setup() string {
rand.Seed(time.Now().UnixNano())
file_name_bytes := make([]byte, 10)
for i := 0; i < 10; i++ {
file_name_bytes[i] = (byte)(rand.Int())
}
_, fn, _, _ := runtime.Caller(1)
file_name := path.Join(path.Dir(fn), fmt.Sprintf("%x", sha1.Sum(file_name_bytes)))
file, _ := os.Create(file_name)
file.Close()
return file_name
}
func tear_down(file_name string) {
os.Remove(file_name)
}