This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
dataobj_test.go
135 lines (99 loc) · 3.32 KB
/
dataobj_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*** Copyright (c) 2016, The BioTeam, Inc. ***
*** For more information please refer to the LICENSE.md file ***/
package gorods
//import "fmt"
// func TestDataObjCreateDeleteWrite(t *testing.T) {
// client, conErr := New(testCreds)
// // Ensure the client initialized successfully and connected to the iCAT server
// if conErr != nil {
// t.Fatal(conErr)
// }
// // Open a data object reference for /tempZone/home/rods/hello.txt
// if openErr := client.OpenCollection(CollectionOptions{
// Path: fmt.Sprintf("/%v/home/%v", testCreds.Zone, testCreds.Username),
// }, func(col *Collection, con *Connection) {
// do, createErr := col.CreateDataObj(DataObjOptions{
// Name: "test123.txt",
// })
// if createErr != nil {
// t.Fatal(createErr)
// }
// wrErr := do.Write([]byte("test123content"))
// if wrErr != nil {
// t.Fatal(wrErr)
// }
// _, statErr := do.Stat()
// if statErr != nil {
// t.Fatal(statErr)
// }
// // if chErr := do.Chmod("developers", Write, false); chErr != nil {
// // t.Fatal(chErr)
// // }
// // acl, aclErr := do.ACL()
// // if aclErr != nil {
// // t.Fatal(aclErr)
// // }
// // acl[0].String()
// // if acl[1].User().Name() != "rods" {
// // t.Errorf("Expected string 'rods', got '%s'", acl[1].User().Name())
// // }
// // if acl[0].Group().Name() != "developers" {
// // t.Errorf("Expected string 'developers', got '%s'", acl[0].Group().Name())
// // }
// cont, readErr := do.Read()
// if readErr != nil {
// t.Fatal(readErr)
// }
// if string(cont) != "test123content" {
// t.Errorf("Expected string 'test123content', got '%s'", string(cont))
// }
// delErr := do.Delete(false)
// if delErr != nil {
// t.Fatal(delErr)
// }
// }); openErr != nil {
// t.Fatal(openErr)
// }
// }
// func TestDataObjRead(t *testing.T) {
// client, conErr := New(testCreds)
// // Ensure the client initialized successfully and connected to the iCAT server
// if conErr != nil {
// t.Fatal(conErr)
// }
// // Open a data object reference for /tempZone/home/rods/hello.txt
// if openErr := client.OpenDataObject(fmt.Sprintf("/%v/home/%v/hello.txt", testCreds.Zone, testCreds.Username), func(myFile *DataObj, con *Connection) {
// // read the contents
// if contents, readErr := myFile.Read(); readErr == nil {
// c := string(contents)
// if strings.Trim(c, "\n") != "Hello, World!" {
// t.Errorf("Expected string 'Hello, World!', got '%s'", c)
// }
// } else {
// t.Fatal(readErr)
// }
// }); openErr != nil {
// t.Fatal(openErr)
// }
// }
// func TestDataObjReadBytes(t *testing.T) {
// client, conErr := New(testCreds)
// // Ensure the client initialized successfully and connected to the iCAT server
// if conErr != nil {
// t.Fatal(conErr)
// }
// // Open a data object reference for /tempZone/home/rods/hello.txt
// if openErr := client.OpenDataObject(fmt.Sprintf("/%v/home/%v/hello.txt", testCreds.Zone, testCreds.Username), func(myFile *DataObj, con *Connection) {
// // read the contents
// if contents, readErr := myFile.ReadBytes(7, 6); readErr == nil {
// c := string(contents)
// if c != "World!" {
// t.Errorf("Expected string 'World!', got '%s'", c)
// }
// } else {
// t.Fatal(readErr)
// }
// }); openErr != nil {
// t.Fatal(openErr)
// }
// }