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 536 537 538 539 540 541 542 543 544 545 546 547 548
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* *
* This file is part of HDF Products. The full HDF copyright *
* notice, including terms governing use, modification, and redistribution, *
* is contained in the file, COPYING. COPYING can be found at the root of *
* the source code distribution tree. You can also access it online at *
* https://www.hdfgroup.org/licenses. If you do not have access to the *
* file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.File;
import hdf.hdflib.HDFChunkInfo;
import hdf.hdflib.HDFConstants;
import hdf.hdflib.HDFException;
import hdf.hdflib.HDFLibrary;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
public class TestH4VSparams {
@Rule
public TestName testname = new TestName();
@Before
public void showTestName()
{
System.out.print(testname.getMethodName());
}
@After
public void nextTestName()
{
System.out.println();
}
@Test(expected = NullPointerException.class)
public void testVSQuerycountNullNRecords() throws Throwable
{
HDFLibrary.VSQuerycount(0, null);
}
@Test(expected = HDFException.class)
public void testVSQuerycountIllegalId() throws Throwable
{
HDFLibrary.VSQuerycount(-1, new int[] {0});
}
@Test(expected = IllegalArgumentException.class)
public void testVSQuerycountIllegalArgument() throws Throwable
{
HDFLibrary.VSQuerycount(0, new int[] {});
}
@Test(expected = NullPointerException.class)
public void testVSQueryfieldsNullFields() throws Throwable
{
HDFLibrary.VSQueryfields(0, null);
}
@Test(expected = HDFException.class)
public void testVSQueryfieldsIllegalId() throws Throwable
{
HDFLibrary.VSQueryfields(-1, new String[1]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSQueryfieldsIllegalArgument() throws Throwable
{
HDFLibrary.VSQueryfields(0, new String[0]);
}
@Test(expected = NullPointerException.class)
public void testVSQueryinterlaceNullInterlace() throws Throwable
{
HDFLibrary.VSQueryinterlace(0, null);
}
@Test(expected = HDFException.class)
public void testVSQueryinterlaceIllegalId() throws Throwable
{
HDFLibrary.VSQueryinterlace(-1, new int[1]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSQueryinterlaceIllegalArgument() throws Throwable
{
HDFLibrary.VSQueryinterlace(0, new int[0]);
}
@Test(expected = NullPointerException.class)
public void testVSQuerynameNullVDataName() throws Throwable
{
HDFLibrary.VSQueryname(0, null);
}
@Test(expected = HDFException.class)
public void testVSQuerynameIllegalId() throws Throwable
{
HDFLibrary.VSQueryname(-1, new String[1]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSQuerynameIllegalArgument() throws Throwable
{
HDFLibrary.VSQueryname(0, new String[0]);
}
// @Test(expected = HDFException.class)
// public void testVSQueryrefIllegalId() throws Throwable {
// HDFLibrary.VSQueryref(-1);
// }
// @Test(expected = HDFException.class)
// public void testVSQuerytagIllegalId() throws Throwable {
// HDFLibrary.VSQuerytag(-1);
// }
@Test(expected = NullPointerException.class)
public void testVSQueryvsizeNullVDataSize() throws Throwable
{
HDFLibrary.VSQueryvsize(0, null);
}
@Test(expected = HDFException.class)
public void testVSQueryvsizeIllegalId() throws Throwable
{
HDFLibrary.VSQueryvsize(-1, new int[1]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSQueryvsizeIllegalArgument() throws Throwable
{
HDFLibrary.VSQueryvsize(0, new int[0]);
}
@Test(expected = NullPointerException.class)
public void testVSattachNullAccess() throws Throwable
{
HDFLibrary.VSattach(0, 0, null);
}
@Test(expected = HDFException.class)
public void testVSattachIllegalId() throws Throwable
{
HDFLibrary.VSattach(-1, 0, "w");
}
@Test(expected = HDFException.class)
public void testVSattachIllegalReg() throws Throwable
{
HDFLibrary.VSattach(0, -1, "w");
}
// @Test(expected = HDFException.class)
// public void testVSdetachIllegalId() throws Throwable {
// HDFLibrary.VSdetach(-1);
// }
// @Test(expected = HDFException.class)
// public void testVSgetidIllegalId() throws Throwable {
// HDFLibrary.VSgetid(-1, 0);
// }
// @Test(expected = HDFException.class)
// public void testVSgetidIllegalRef() throws Throwable {
// HDFLibrary.VSgetid(0, -1);
// }
@Test(expected = NullPointerException.class)
public void testVSgetclassNullClassName() throws Throwable
{
HDFLibrary.VSgetclass(0, null);
}
@Test(expected = HDFException.class)
public void testVSgetclassIllegalId() throws Throwable
{
HDFLibrary.VSgetclass(-1, new String[1]);
}
@Test(expected = NullPointerException.class)
public void testVSgetnameNullName() throws Throwable
{
HDFLibrary.VSgetname(0, null);
}
@Test(expected = HDFException.class)
public void testVSgetnameIllegalId() throws Throwable
{
HDFLibrary.VSgetname(-1, new String[1]);
}
// @Test(expected = HDFException.class)
// public void testVSeltsIllegalId() throws Throwable {
// HDFLibrary.VSelts(-1);
// }
@Test(expected = NullPointerException.class)
public void testVSfdefineNullFieldName() throws Throwable
{
HDFLibrary.VSfdefine(0, null, 0, 0);
}
@Test(expected = HDFException.class)
public void testVSfdefineIllegalId() throws Throwable
{
HDFLibrary.VSfdefine(-1, "", 0, 0);
}
@Test(expected = NullPointerException.class)
public void testVSfexistNullFields() throws Throwable
{
HDFLibrary.VSfexist(0, null);
}
@Test(expected = HDFException.class)
public void testVSfexistIllegalId() throws Throwable
{
HDFLibrary.VSfexist(-1, "");
}
@Test(expected = NullPointerException.class)
public void testVSfindNullVDataName() throws Throwable
{
HDFLibrary.VSfind(0, null);
}
// @Test(expected = HDFException.class)
// public void testVSfindIllegalId() throws Throwable {
// HDFLibrary.VSfind(-1, "");
// }
@Test(expected = HDFException.class)
public void testVSsetblocksizeIllegalId() throws Throwable
{
HDFLibrary.VSsetblocksize(-1, 0);
}
@Test(expected = HDFException.class)
public void testVSsetnumblocksIllegalId() throws Throwable
{
HDFLibrary.VSsetnumblocks(-1, 0);
}
@Test(expected = NullPointerException.class)
public void testVSgetfieldsNullFieldName() throws Throwable
{
HDFLibrary.VSgetfields(0, null);
}
@Test(expected = HDFException.class)
public void testVSgetfieldsIllegalId() throws Throwable
{
HDFLibrary.VSgetfields(-1, new String[1]);
}
// @Test(expected = HDFException.class)
// public void testVSgetinterlaceIllegalId() throws Throwable {
// HDFLibrary.VSgetinterlace(-1);
// }
@Test(expected = NullPointerException.class)
public void testVSinquireNullIArgs() throws Throwable
{
HDFLibrary.VSinquire(0, null, new String[2]);
}
@Test(expected = NullPointerException.class)
public void testVSinquireNullSArgs() throws Throwable
{
HDFLibrary.VSinquire(0, new int[3], null);
}
@Test(expected = HDFException.class)
public void testVSinquireIllegalId() throws Throwable
{
HDFLibrary.VSinquire(-1, new int[3], new String[2]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSinquireIllegalIArgs() throws Throwable
{
HDFLibrary.VSinquire(0, new int[1], new String[2]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSinquireIllegalSArgs() throws Throwable
{
HDFLibrary.VSinquire(0, new int[3], new String[1]);
}
@Test(expected = NullPointerException.class)
public void testVSloneNullRefArray() throws Throwable
{
HDFLibrary.VSlone(0, null, 0);
}
// @Test(expected = HDFException.class)
// public void testVSloneIllegalId() throws Throwable {
// HDFLibrary.VSlone(-1, new int[10], 0);
// }
@Test(expected = NullPointerException.class)
public void testVSreadNullDataBuffer() throws Throwable
{
HDFLibrary.VSread(0, null, 0, 0);
}
// @Test(expected = HDFException.class)
// public void testVSreadIllegalId() throws Throwable {
// HDFLibrary.VSread(-1, new byte[] { }, 0, 0);
// }
// @Test(expected = HDFException.class)
// public void testVSseekIllegalId() throws Throwable {
// HDFLibrary.VSseek(-1, 0);
// }
@Test(expected = NullPointerException.class)
public void testVSsetfieldsNullFields() throws Throwable
{
HDFLibrary.VSsetfields(0, null);
}
@Test(expected = HDFException.class)
public void testVSsetfieldsIllegalId() throws Throwable
{
HDFLibrary.VSsetfields(-1, "");
}
@Test(expected = HDFException.class)
public void testVSsetinterlaceIllegalId() throws Throwable
{
HDFLibrary.VSsetinterlace(-1, 0);
}
@Test(expected = NullPointerException.class)
public void testVSsizeofNullFields() throws Throwable
{
HDFLibrary.VSsizeof(0, null);
}
@Test(expected = HDFException.class)
public void testVSsizeofIllegalId() throws Throwable
{
HDFLibrary.VSsizeof(-1, "");
}
@Test(expected = HDFException.class)
public void testVSappendableIllegalVKey() throws Throwable
{
HDFLibrary.VSappendable(-1, 0);
}
@Test(expected = NullPointerException.class)
public void testVSfindclassNullClass() throws Throwable
{
HDFLibrary.VSfindclass(0, null);
}
// @Test(expected = HDFException.class)
// public void testVSfindclassIllegalId() throws Throwable {
// HDFLibrary.VSfindclass(-1, "");
// }
// @Test(expected = HDFException.class)
// public void testVSgetversionIllegalVKey() throws Throwable {
// HDFLibrary.VSgetversion(-1);
// }
@Test(expected = NullPointerException.class)
public void testVSsetclassNullClass() throws Throwable
{
HDFLibrary.VSsetclass(0, null);
}
@Test(expected = HDFException.class)
public void testVSsetclassIllegalId() throws Throwable
{
HDFLibrary.VSsetclass(-1, "");
}
@Test(expected = NullPointerException.class)
public void testVSsetexternalfileNullFilename() throws Throwable
{
HDFLibrary.VSsetexternalfile(0, null, 0);
}
@Test(expected = HDFException.class)
public void testVSsetexternalfileIllegalVKey() throws Throwable
{
HDFLibrary.VSsetexternalfile(-1, "", 0);
}
@Test(expected = NullPointerException.class)
public void testVSsetnameNullVDataName() throws Throwable
{
HDFLibrary.VSsetname(0, null);
}
@Test(expected = HDFException.class)
public void testVSsetnameIllegalId() throws Throwable
{
HDFLibrary.VSsetname(-1, "");
}
@Test(expected = NullPointerException.class)
public void testVSwriteNullDataBuffer() throws Throwable
{
HDFLibrary.VSwrite(0, null, 0, 0);
}
@Test(expected = HDFException.class)
public void testVSwriteIllegalId() throws Throwable
{
HDFLibrary.VSwrite(-1, new byte[] {}, 0, 0);
}
@Test(expected = NullPointerException.class)
public void testVSattrinfoNullName() throws Throwable
{
HDFLibrary.VSattrinfo(0, 0, 0, null, new int[3]);
}
@Test(expected = NullPointerException.class)
public void testVSattrinfoNullArgs() throws Throwable
{
HDFLibrary.VSattrinfo(0, 0, 0, new String[1], null);
}
@Test(expected = HDFException.class)
public void testVSattrinfoIllegalId() throws Throwable
{
HDFLibrary.VSattrinfo(-1, 0, 0, new String[1], new int[3]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSattrinfoIllegalNameArgument() throws Throwable
{
HDFLibrary.VSattrinfo(0, 0, 0, new String[0], new int[3]);
}
@Test(expected = IllegalArgumentException.class)
public void testVSattrinfoIllegalAttributeArgs() throws Throwable
{
HDFLibrary.VSattrinfo(0, 0, 0, new String[1], new int[1]);
}
@Test(expected = NullPointerException.class)
public void testVSfindexNullName() throws Throwable
{
HDFLibrary.VSfindex(0, null, new int[1]);
}
@Test(expected = NullPointerException.class)
public void testVSfindexNullIndexArray() throws Throwable
{
HDFLibrary.VSfindex(0, "", null);
}
@Test(expected = HDFException.class)
public void testVSfindexIllegalId() throws Throwable
{
HDFLibrary.VSfindex(-1, "", new int[1]);
}
@Test(expected = NullPointerException.class)
public void testVSfindattrNullName() throws Throwable
{
HDFLibrary.VSfindattr(0, 0, null);
}
@Test(expected = HDFException.class)
public void testVSfindattrIllegalId() throws Throwable
{
HDFLibrary.VSfindattr(-1, 0, "");
}
// @Test(expected = HDFException.class)
// public void testVSfnattrsIllegalId() throws Throwable {
// HDFLibrary.VSfnattrs(-1, 0);
// }
@Test(expected = NullPointerException.class)
public void testVSgetattrNullData() throws Throwable
{
HDFLibrary.VSgetattr(0, 0, 0, null);
}
@Test(expected = HDFException.class)
public void testVSgetattrIllegalId() throws Throwable
{
HDFLibrary.VSgetattr(-1, 0, 0, new byte[] {});
}
// @Test(expected = HDFException.class)
// public void testVSisattrIllegalId() throws Throwable {
// HDFLibrary.VSisattr(-1);
// }
// @Test(expected = HDFException.class)
// public void testVSnattrsIllegalId() throws Throwable {
// HDFLibrary.VSnattrs(-1);
// }
@Test(expected = NullPointerException.class)
public void testVSsetattrNullAttributeName() throws Throwable
{
HDFLibrary.VSsetattr(0, 0, null, 0, 0, new byte[] {});
}
@Test(expected = NullPointerException.class)
public void testVSsetattrNullAttributeName2() throws Throwable
{
HDFLibrary.VSsetattr(0, 0, null, 0, 0, "");
}
// @Test(expected = NullPointerException.class)
// public void testVSsetattrNullValues() throws Throwable {
// HDFLibrary.VSsetattr(0, 0, "", 0, 0, null);
// }
@Test(expected = HDFException.class)
public void testVSsetattrIllegalId() throws Throwable
{
HDFLibrary.VSsetattr(-1, 0, "", 0, 0, new byte[] {});
}
@Test(expected = HDFException.class)
public void testVSsetattrIllegalId2() throws Throwable
{
HDFLibrary.VSsetattr(-1, 0, "", 0, 0, "");
}
}
|