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
/
Copy pathmeta_test.go
106 lines (80 loc) · 2.55 KB
/
meta_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
/*** Copyright (c) 2016, The BioTeam, Inc. ***
*** For more information please refer to the LICENSE.md file ***/
package gorods
//import "strings"
//import "fmt"
// func TestMetaRead(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 m, metaErr := myFile.Meta(); metaErr == nil {
// if ma, maEr := m.First("test"); maEr == nil {
// if ma.Value != "test" {
// t.Errorf("Expected string 'test', got '%s'", ma.Value)
// }
// } else {
// t.Fatal(metaErr)
// }
// } else {
// t.Fatal(metaErr)
// }
// }); openErr != nil {
// t.Fatal(openErr)
// }
// }
// func TestMetaWrite(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 m, metaErr := myFile.Meta(); metaErr == nil {
// if ma, maEr := m.First("test"); maEr == nil {
// if ma.Value != "test" {
// t.Errorf("Expected string 'test', got '%s'", ma.Value)
// }
// if _, maEr := ma.SetValue("test2"); maEr == nil {
// if ma.Value != "test2" {
// t.Errorf("Expected string 'test2', got '%s'", ma.Value)
// }
// } else {
// t.Fatal(metaErr)
// }
// if _, maEr := ma.SetValue("test"); maEr == nil {
// if ma.Value != "test" {
// t.Errorf("Expected string 'test', got '%s'", ma.Value)
// }
// } else {
// t.Fatal(metaErr)
// }
// if _, delErr := ma.Delete(); delErr == nil {
// if _, fErr := m.First("test"); fErr == nil {
// t.Fatal(fErr)
// }
// if _, addErr := m.Add(Meta{
// Attribute: "test",
// Value: "test",
// }); addErr != nil {
// t.Fatal(addErr)
// }
// } else {
// t.Fatal(delErr)
// }
// } else {
// t.Fatal(metaErr)
// }
// } else {
// t.Fatal(metaErr)
// }
// }); openErr != nil {
// t.Fatal(openErr)
// }
// }