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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
|
package test.object;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import ncsa.hdf.hdf5lib.H5;
import ncsa.hdf.hdf5lib.HDF5Constants;
import ncsa.hdf.object.FileFormat;
import ncsa.hdf.object.HObject;
import ncsa.hdf.object.h5.H5File;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* @author Rishi R. Sinha
*
*/
public class HObjectTest {
private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(HObjectTest.class);
private static final H5File H5FILE = new H5File();
private static final String GNAME = H5TestFile.NAME_GROUP;
private H5File testFile = null;
private HObject testObj = null;
private long testOID;
@BeforeClass
public static void createFile() throws Exception {
try {
int openID = H5.getOpenIDCount();
if (openID > 0)
System.out.println("HObjectTest BeforeClass: Number of IDs still open: " + openID);
}
catch (Exception ex) {
ex.printStackTrace();
}
try {
H5TestFile.createTestFile(null);
}
catch (final Exception ex) {
System.out.println("*** Unable to create HDF5 test file. " + ex);
System.exit(-1);
}
}
@AfterClass
public static void checkIDs() throws Exception {
try {
int openID = H5.getOpenIDCount();
if (openID > 0)
System.out.println("HObjectTest AfterClass: Number of IDs still open: " + openID);
}
catch (Exception ex) {
ex.printStackTrace();
}
}
@Before
public void openFiles() throws Exception {
try {
int openID = H5.getOpenIDCount();
if (openID > 0)
log.debug("Before: Number of IDs still open: " + openID);
}
catch (Exception ex) {
ex.printStackTrace();
}
testFile = new H5File(H5TestFile.NAME_FILE_H5, FileFormat.WRITE);
assertNotNull(testFile);
testObj = testFile.get(GNAME);
assertNotNull(testObj);
testOID = testObj.getOID()[0];
}
@After
public void removeFiles() throws Exception {
if (testFile != null) {
try {
testFile.close();
}
catch (final Exception ex) {
}
testFile = null;
}
try {
int openID = H5.getOpenIDCount();
if (openID > 0)
log.debug("After: Number of IDs still open: " + openID);
}
catch (Exception ex) {
ex.printStackTrace();
}
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getFile()}.
* <p>
* What to test:
* <ul>
* <li>Make sure file name in object yields same file as filename
* </ul>
*/
@Test
public void testGetFile() {
log.debug("testGetFile");
String fullFileName = testObj.getFile();
if (!fullFileName.endsWith(H5TestFile.NAME_FILE_H5)) {
fail("Wrong File");
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getName()}.
* <p>
* What to test:
* <ul>
* <li>For the base group, find the name of the group and test it against the standard.
* </ul>
*/
@Test
public void testGetName() {
log.debug("testGetName");
if (!testObj.getName().equals(GNAME.substring(1))) {
fail("GetName returns wrong name");
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getFullName()}.
* <p>
* What to test:
* <ul>
* <li>For the base group, find the full name of the group and test it against the standard.
* </ul>
*/
@Test
public void testGetFullName() {
log.debug("testGetFullName");
if (!testObj.getFullName().equals(GNAME)) {
fail("GetFullName returns wrong name");
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getPath()}. *
* <p>
* What to test:
* <ul>
* <li>For the base group, find the path of the group and test it against the standard.
* </ul>
*/
@Test
public void testGetPath() {
log.debug("testGetPath");
if (!testObj.getPath().equals("/")) {
fail("GetPath returns wrong path");
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#setName(java.lang.String)} .
* <p>
* What to test:
* <ul>
* <li>Test setting the name to null. It should not be set.
* <li>Test setting the name to another existing name in the same group.
* <li>Test setting the name to a new name.
* </ul>
*/
@Test
public void testSetName() {
log.debug("testSetName");
final String newName = "tmpName";
// test set name to null
try {
testObj.setName(null);
}
catch (final Exception ex) {
; // Expected - intentional
}
// set to an existing name
try {
testObj.setName(H5TestFile.NAME_DATASET_FLOAT);
}
catch (final Exception ex) {
; // Expected - intentional
}
try {
testObj.setName(newName);
}
catch (final Exception ex) {
fail("setName() failed. " + ex);
}
// close the file and reopen it
try {
testFile.close();
testFile.open();
testObj = testFile.get(newName);
}
catch (final Exception ex) {
fail("setName() failed. " + ex);
}
HObject tmpObj = null;
// test the old name
try {
tmpObj = testFile.get(GNAME);
}
catch (final Exception ex) {
fail("testFile.get(GNAME) failed. " + ex);
}
assertNull("The dataset should be null because it has been renamed", tmpObj);
// set back the original name
try {
testObj.setName(GNAME);
}
catch (final Exception ex) {
fail("setName() failed. " + ex);
}
// make sure the dataset is OK
try {
testObj = testFile.get(GNAME);
}
catch (final Exception ex) {
fail("setName() failed. " + ex);
}
assertNotNull(testObj);
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#setPath(java.lang.String)} .
* <p>
* What to test:
* <ul>
* <li>Test setting the path to null. It should not be set.
* <li>Test setting the path to another existing name in the same group.
* <li>Test setting the path to a new name.
* </ul>
*/
@Test
public void testSetPath() {
log.debug("testSetPath");
String path = testObj.getPath();
try {
testObj.setPath(null);
}
catch (Exception e) {
;
}
if (!path.equals(testObj.getPath())) {
fail("testPath changed the path name even though null was passed to it.");
}
try {
testObj.setPath("testPath");
}
catch (Exception e) {
fail("testPath failed when trying to set it to testPath");
}
if (!testObj.getPath().equals("testPath")) {
fail("testPath failed when trying to set it to testPath");
}
try {
testObj.setPath(path);
}
catch (Exception e) {
fail("testPath failed when trying to reset the path to " + path);
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#open()}.
* <p>
* What to test:
* <ul>
* <li>Open the Group and check that the gid returned is less than 1.
* </ul>
*/
@Test
public void testOpen() {
log.debug("testOpen");
int gid = -1;
for (int loop = 0; loop < 15; loop++) {
gid = -1;
try {
gid = testObj.open();
}
catch (final Exception ex) {
fail("open() failed. " + ex);
}
assertTrue(gid > 0);
testObj.close(gid);
}
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#close(int)}.
* <p>
* What to test:
* <ul>
* <li>Run the tests for opening the group.
* </ul>
*/
@Test
public void testClose() {
log.debug("testClose");
testOpen();
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getFID()}.
* <p>
* What to test:
* <ul>
* <li>get the FID for the group and make sure that it is the same as the FID for the file.
* </ul>
*/
@Test
public void testGetFID() {
log.debug("testGetFID");
assertEquals(testObj.getFID(), testFile.getFID());
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#equalsOID(long[])}.
* <p>
* What to test:
* <ul>
* <li>Check against null. It should fail.
* <li>Check against the OID that we have already extraced.
* </ul>
*/
@Test
public void testEqualsOID() {
log.debug("testEqualsOID");
assertNotNull(testObj);
assertTrue(testObj.equalsOID(new long[] { testOID }));
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getFileFormat()}.
* <p>
* What to test:
* <ul>
* <li>For the group, check against null.
* <li>For the group, check against the testFile.
* </ul>
*/
@Test
public void testGetFileFormat() {
log.debug("testGetFileFormat");
assertNotNull(testObj.getFileFormat());
assertEquals(testObj.getFileFormat(), testFile);
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#getOID()}.
* <p>
* What to test:
* <ul>
* <li>Check that OIDlist is not null.
* <li>Check that OID[0] is correct.
* </ul>
*/
@Test
public void testGetOID() {
log.debug("testGetOID");
assertNotNull(testObj.getOID());
assertEquals(testObj.getOID()[0], testOID);
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#hasAttribute()}.
* <p>
* What to test:
* <ul>
* <li>Check for Image dataset which has an attribute.
* <li>Check for base group which has no attributes.
* </ul>
*/
@Test
public void testHasAttribute() {
log.debug("testHasAttribute");
try {
assertTrue(testFile.get(H5TestFile.NAME_DATASET_IMAGE).hasAttribute());
}
catch (Exception e) {
fail("get() fails.");
}
assertFalse(testObj.hasAttribute());
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
/**
* Test method for {@link ncsa.hdf.object.HObject#toString()}.
* <p>
* What to test:
* <ul>
* <li>Check for the group.
* </ul>
*/
@Test
public void testToString() {
log.debug("testToString");
assertEquals(testObj.toString(), GNAME.substring(1));
int nObjs = 0;
try {
nObjs = H5.H5Fget_obj_count(testFile.getFID(), HDF5Constants.H5F_OBJ_ALL);
}
catch (final Exception ex) {
fail("H5.H5Fget_obj_count() failed. " + ex);
}
assertEquals(1, nObjs); // file id should be the only one left open
}
}
|