summaryrefslogtreecommitdiffstats
path: root/java/test/TestH5Tparams.java
blob: 15cc6affd01c638cda8a539a5fd5182c6af065e1 (plain)
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

package test;

import static org.junit.Assert.assertTrue;
import hdf.hdf5lib.H5;
import hdf.hdf5lib.exceptions.HDF5LibraryException;

import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;

public class TestH5Tparams {
    @Rule public TestName testname = new TestName();

    @Before
    public void checkOpenIDs() {
        assertTrue("H5 open ids is 0",H5.getOpenIDCount()==0);
        System.out.print(testname.getMethodName());
    }
    @After
    public void nextTestName() {
        System.out.println();
    }

    @Test//(expected = HDF5LibraryException.class)
    public void testH5Tclose_invalid() throws Throwable {
        long tid = H5.H5Tclose(-1);
        assertTrue(tid == 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tcopy_invalid() throws Throwable {
        H5.H5Tcopy(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tequal_invalid() throws Throwable {
        H5.H5Tequal(-1, -1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tlock_invalid() throws Throwable {
        H5.H5Tlock(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_class_invalid() throws Throwable {
        H5.H5Tget_class(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_size_invalid() throws Throwable {
        H5.H5Tget_size(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_size_invalid() throws Throwable {
        H5.H5Tset_size(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_order_invalid() throws Throwable {
        H5.H5Tget_order(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_order_invalid() throws Throwable {
        H5.H5Tset_order(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_precision_invalid() throws Throwable {
        H5.H5Tget_precision(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_precision_long_invalid() throws Throwable {
        H5.H5Tget_precision_long(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_precision_invalid() throws Throwable {
        H5.H5Tset_precision(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_offset_invalid() throws Throwable {
        H5.H5Tget_offset(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_offset_invalid() throws Throwable {
        H5.H5Tset_offset(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tcreate_invalid() throws Throwable {
        H5.H5Tcreate(-1, (long)0);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Topen_null() throws Throwable {
        H5.H5Topen(-1, null, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Topen_invalid() throws Throwable {
        H5.H5Topen(-1, "Bogus", 0);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tcommit_null() throws Throwable {
        H5.H5Tcommit(-1, null, 0, -1, -1, -1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tcommit_invalid() throws Throwable {
        H5.H5Tcommit(-1, "Bogus", -1, -1, -1, -1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tget_pad_null() throws Throwable {
        H5.H5Tget_pad(-1, null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_pad_invalid() throws Throwable {
        int[] pad = new int[2];
        H5.H5Tget_pad(-1, pad);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_pad_invalid() throws Throwable {
        H5.H5Tset_pad(-1, -1, -1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_sign_invalid() throws Throwable {
        H5.H5Tget_sign(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_sign_invalid() throws Throwable {
        H5.H5Tset_sign(-1, 0);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tget_fields_null() throws Throwable {
        H5.H5Tget_fields(-1, (long[])null);
    }

    @Test(expected = IllegalArgumentException.class)
    public void testH5Tget_fields_length_invalid() throws Throwable {
        long[] fields = new long[2];
        H5.H5Tget_fields(-1, fields);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_fields_invalid() throws Throwable {
        long[] fields = new long[5];
        H5.H5Tget_fields(-1, fields);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_fields_invalid() throws Throwable {
        H5.H5Tset_fields(-1, -1, -1, -1, -1, -1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_ebias_invalid() throws Throwable {
        H5.H5Tget_ebias(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_ebias_long_invalid() throws Throwable {
        H5.H5Tget_ebias_long(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_ebias_invalid() throws Throwable {
        H5.H5Tset_ebias(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_norm_invalid() throws Throwable {
        H5.H5Tget_norm(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_norm_invalid() throws Throwable {
        H5.H5Tset_norm(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_inpad_invalid() throws Throwable {
        H5.H5Tget_inpad(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_inpad_invalid() throws Throwable {
        H5.H5Tset_inpad(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_cset_invalid() throws Throwable {
        H5.H5Tget_cset(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_cset_invalid() throws Throwable {
        H5.H5Tset_cset(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_strpad_invalid() throws Throwable {
        H5.H5Tget_strpad(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_strpad_invalid() throws Throwable {
        H5.H5Tset_strpad(-1, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_nmembers_invalid() throws Throwable {
        H5.H5Tget_nmembers(-1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tget_member_index_null() throws Throwable {
        H5.H5Tget_member_index(-1, null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_member_index_invalid() throws Throwable {
        H5.H5Tget_member_index(-1, "Bogus");
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_member_type_invalid() throws Throwable {
        H5.H5Tget_member_type(-1, -1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_member_class_invalid() throws Throwable {
        H5.H5Tget_member_class(-1, -1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tinsert_null() throws Throwable {
        H5.H5Tinsert(-1, null, 0, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tinsert_invalid() throws Throwable {
        H5.H5Tinsert(-1, "Bogus", 0, 0);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tpack_invalid() throws Throwable {
        H5.H5Tpack(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tvlen_create_invalid() throws Throwable {
        H5.H5Tvlen_create(-1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tset_tag_null() throws Throwable {
        H5.H5Tset_tag(-1, null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tset_tag_invalid() throws Throwable {
        H5.H5Tset_tag(-1, "Bogus");
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_super_invalid() throws Throwable {
        H5.H5Tget_super(-1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tenum_create_invalid() throws Throwable {
        H5.H5Tenum_create(-1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tenum_insert_name_null() throws Throwable {
        H5.H5Tenum_insert(-1, null, (byte[])null);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tenum_insert_null() throws Throwable {
        H5.H5Tenum_insert(-1, "bogus", (byte[])null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tenum_insert_invalid() throws Throwable {
        byte[] enumtype = new byte[2];
        H5.H5Tenum_insert(-1, "bogus", enumtype);
    }

    @Test(expected = IllegalArgumentException.class)
    public void testH5Tenum_nameof_invalid_size() throws Throwable {
        H5.H5Tenum_nameof(-1, null, -1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tenum_nameof_value_null() throws Throwable {
        H5.H5Tenum_nameof(-1, null, 1);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tenum_nameof_invalid() throws Throwable {
        byte[] btype = new byte[2];
        H5.H5Tenum_nameof(-1, btype, 1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tenum_valueof_name_null() throws Throwable {
        H5.H5Tenum_valueof(-1, null, (byte[])null);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tenum_valueof_null() throws Throwable {
        H5.H5Tenum_valueof(-1, "bogus", (byte[])null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tenum_valueof_invalid() throws Throwable {
        byte[] btype = new byte[2];
        H5.H5Tenum_valueof(-1, "bogus", btype);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tget_member_value_null() throws Throwable {
        H5.H5Tget_member_value(-1, -1, (byte[])null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_member_value_invalid() throws Throwable {
        byte[] btype = new byte[2];
        H5.H5Tget_member_value(-1, -1, btype);
    }

    @Test(expected = IllegalArgumentException.class)
    public void testH5Tarray_create_invalid() throws Throwable {
        H5.H5Tarray_create(-1, -1, null);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tarray_create_value_null() throws Throwable {
        H5.H5Tarray_create(-1, 1, null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_array_ndims_invalid() throws Throwable {
        H5.H5Tget_array_ndims(-1);
    }

    @Test(expected = NullPointerException.class)
    public void testH5Tget_array_dims_null() throws Throwable {
        H5.H5Tget_array_dims(-1, null);
    }

    @Test(expected = HDF5LibraryException.class)
    public void testH5Tget_native_type_invalid() throws Throwable {
        H5.H5Tget_native_type(-1);
    }

}