-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdrmaa_test.go
More file actions
323 lines (292 loc) · 9.85 KB
/
drmaa_test.go
File metadata and controls
323 lines (292 loc) · 9.85 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
/*
Copyright 2012, 2013, 2014, 2015, 2025 Daniel Gruber, info@gridengine.eu
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package drmaa
import (
"testing"
"time"
)
// testVectorSetter calls a job template set function (f) with the given
// slice of values (like setting email addresses) and expects the output
// of the function g (like get email addresses) contains the same values
// as set before.
func testVectorSetter(t *testing.T, f func([]string) error, arg []string, g func() ([]string, error)) {
if err := f(arg); err != nil {
t.Error(err)
} else {
garg, gerr := g()
if gerr != nil {
t.Error(gerr)
} else {
if len(arg) != len(garg) {
t.Error("Length of array set in the job template does not match length of retrieved values")
} else {
for i := range arg {
if arg[i] != garg[i] {
t.Errorf("Values are not the same: %s vs %s", arg[i], garg[i])
}
}
}
}
}
}
func testStringSetter(t *testing.T, f func(string) error, arg string, g func() (string, error)) {
if err := f(arg); err != nil {
t.Error(err)
} else {
garg, gerr := g()
if gerr != nil {
t.Error(gerr)
} else {
if arg != garg {
t.Errorf("Value is not the same: %s vs %s", arg, garg)
}
}
}
}
func testDurationSetter(t *testing.T, f func(time.Duration) error, arg time.Duration, g func() (time.Duration, error)) {
if err := f(arg); err != nil {
t.Error(err)
} else {
garg, gerr := g()
if gerr != nil {
t.Error(gerr)
} else {
if arg.String() != garg.String() {
t.Errorf("Value is not the same: %s vs %s", arg, garg)
}
}
}
}
func TestJobTemplate(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
jt, errJT := s.AllocateJobTemplate()
if errJT != nil {
t.Fatalf("Error during AllocateJobTemplate(): %s\n", errJT)
}
// test vector attribute settings
testVectorSetter(t, jt.SetArgs, []string{"arg1", "arg2"}, jt.Args)
testVectorSetter(t, jt.SetEmail, []string{"a@b.c", "c@d.a"}, jt.Email)
testVectorSetter(t, jt.SetEnv, []string{"LD_LIBRARY_PATH", "PATH"}, jt.Env)
// test other attribute settings
jt.SetJobSubmissionState(HoldState)
if state, _ := jt.JobSubmissionState(); state != HoldState {
t.Errorf("Error when setting JobSubmissionState.")
}
// test string attribute settings
testStringSetter(t, jt.SetWD, "/", jt.WD)
testStringSetter(t, jt.SetNativeSpecification, "-binding linear:1", jt.NativeSpecification)
testStringSetter(t, jt.SetJobName, "MY_TEST_JOB", jt.JobName)
// test duration attribute settings (they are not supported by SGE)
if false {
duration := time.Second * 77
testDurationSetter(t, jt.SetHardWallclockTimeLimit, duration, jt.HardWallclockTimeLimit)
testDurationSetter(t, jt.SetSoftWallclockTimeLimit, duration, jt.SoftWallclockTimeLimit)
testDurationSetter(t, jt.SetHardRunDurationLimit, duration, jt.HardRunDurationLimit)
testDurationSetter(t, jt.SetSoftRunDurationLimit, duration, jt.SoftRunDurationLimit)
}
if e := jt.SetBlockEmail(true); e != nil {
t.Errorf("Error during SetBlockEmail(true): %s", e)
} else {
if em, e2 := jt.BlockEmail(); e2 != nil {
t.Errorf("Error during BlockEmail(): %s", e2)
} else {
if em != true {
t.Error("SetBlockEmail() set to true but BlocEmail() returns false")
}
}
}
}
}
// TestJoinFilesFix tests the bug fix for JoinFiles() method
// Previously it was using C.DRMAA_JOB_NAME instead of C.DRMAA_JOIN_FILES
func TestJoinFilesFix(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
jt, errJT := s.AllocateJobTemplate()
if errJT != nil {
t.Fatalf("Error during AllocateJobTemplate(): %s\n", errJT)
}
defer s.DeleteJobTemplate(&jt)
// Test setting JoinFiles to true
if err := jt.SetJoinFiles(true); err != nil {
t.Errorf("Error setting JoinFiles to true: %s", err)
}
// Test getting JoinFiles value - this should work correctly with the fix
joined, err := jt.JoinFiles()
if err != nil {
t.Errorf("Error getting JoinFiles value: %s", err)
} else if !joined {
t.Error("JoinFiles should return true after being set to true")
}
// Test setting JoinFiles to false
if err := jt.SetJoinFiles(false); err != nil {
t.Errorf("Error setting JoinFiles to false: %s", err)
}
joined, err = jt.JoinFiles()
if err != nil {
t.Errorf("Error getting JoinFiles value after setting to false: %s", err)
} else if joined {
t.Error("JoinFiles should return false after being set to false")
}
}
}
// TestTransferFilesFix tests the bug fix for TransferFiles() method
// Previously it was returning after processing only the first character.
// This is optional and need to be enabled in Open Cluster Scheduler with
// qconf -mconf changing delegated_file_staging to "true"
func TestTransferFilesFix(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
jt, errJT := s.AllocateJobTemplate()
if errJT != nil {
t.Fatalf("Error during AllocateJobTemplate(): %s\n", errJT)
}
defer s.DeleteJobTemplate(&jt)
// Test setting transfer modes for all streams
mode := FileTransferMode{
InputStream: true,
OutputStream: true,
ErrorStream: true,
}
if err := jt.SetTransferFiles(mode); err != nil {
t.Errorf("Error setting TransferFiles (ensure if it is supported and delegated_file_staging is set to true in OCS): %s", err)
}
// Test getting transfer modes - this should process all characters with the fix
retrievedMode, err := jt.TransferFiles()
if err != nil {
t.Errorf("Error getting TransferFiles: %s", err)
} else {
if !retrievedMode.InputStream {
t.Error("InputStream should be true")
}
if !retrievedMode.OutputStream {
t.Error("OutputStream should be true")
}
if !retrievedMode.ErrorStream {
t.Error("ErrorStream should be true")
}
}
// Test partial transfer modes
partialMode := FileTransferMode{
InputStream: true,
OutputStream: false,
ErrorStream: true,
}
if err := jt.SetTransferFiles(partialMode); err != nil {
t.Errorf("Error setting partial TransferFiles: %s", err)
}
retrievedPartialMode, err := jt.TransferFiles()
if err != nil {
t.Errorf("Error getting partial TransferFiles: %s", err)
} else {
if !retrievedPartialMode.InputStream {
t.Error("InputStream should be true in partial mode")
}
if retrievedPartialMode.OutputStream {
t.Error("OutputStream should be false in partial mode")
}
if !retrievedPartialMode.ErrorStream {
t.Error("ErrorStream should be true in partial mode")
}
}
}
}
func TestGetVectorAttributeNames(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
names, err := s.GetVectorAttributeNames()
if err != nil {
t.Errorf("Error during calling GetVectorAttributeNames(): %s", err)
} else {
t.Logf("Supported job template vector attributes: %v\n", names)
}
}
}
func TestGetAttributeNames(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
names, err := s.GetAttributeNames()
if err != nil {
t.Errorf("Error during calling GetAttributeNames(): %s", err)
} else {
t.Logf("Supported job template attributes: %v\n", names)
}
}
}
// TestSimpleJobSubmission requires a connected cluster / DRM.
// Note that this test submits one job to the system running 10 seconds
// doing nothing.
func TestSimpleJobSubmission(t *testing.T) {
if s, err := MakeSession(); err != nil {
t.Fatalf("Error during MakeSession(): %s\n", err)
} else {
defer s.Exit()
jt, errAlloc := s.AllocateJobTemplate()
if errAlloc != nil {
t.Fatalf("Failed allocating a new job template: %s", errAlloc)
}
defer s.DeleteJobTemplate(&jt)
// /bin/sleep should be available (Linux / Unix system)
jt.SetRemoteCommand("/bin/sleep")
// runtime
jt.SetArg("10")
jt.SetJobName("TestSimpleJobSubmissionGoDRMAATestJob")
id, errRun := s.RunJob(&jt)
if errRun != nil {
t.Fatalf("Error submitting job: %s", errRun)
}
errHold := s.HoldJob(id)
if errHold != nil {
t.Errorf("Error holding job: %s", errHold)
}
errRls := s.ReleaseJob(id)
if errRls != nil {
t.Errorf("Error releasing job: %s", errRls)
}
ps, errPs := s.JobPs(id)
if errPs != nil {
t.Errorf("Error during job status requests: %s", errPs)
}
if ps == PsRunning {
t.Log("Job is running")
} else {
t.Logf("Job is in state %s", ps)
}
errTerm := s.TerminateJob(id)
if errTerm != nil {
t.Fatalf("Error terminating job %s: %s", id, errTerm)
}
}
}