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
|
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
C Copyright by The HDF Group. *
C Copyright by the Board of Trustees of the University of Illinois. *
C All rights reserved. *
C *
C This file is part of HDF. The full HDF copyright notice, including *
C terms governing use, modification, and redistribution, is contained in *
C the COPYING file, which can be found at the root of the source code *
C distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
C If you do not have access to either file, you may request a copy from *
C help@hdfgroup.org. *
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
subroutine tstubsf (nerrors)
implicit none
include 'fortest.inc'
integer nerrors
character*20 myname
parameter (myname = 'stubs')
character ar0*10
character ar1*9
character ar2*30
character ar3*8
character in*20
integer dfile
integer dfinfo(16)
integer dlist(128)
integer a0size, a1size, a2size, a3size
integer ret, err, i, nd, dfenum, tag, ref, length
integer t255
integer t127
integer r1
integer r3
integer r7
data t255 /255/
data t127 /127/
data r1 /1/
data r3 /3/
data r7 /7/
data ar0 /'Testing...'/
data ar1 /'...one...'/
data ar2 /'...two...'/
data ar3 /'...three'/
call ptestban('Testing', myname)
nerrors = 0
a0size = len(ar0)
a1size = len(ar1)
a2size = len(ar2)
a3size = len(ar3)
C print *, 'This program will test the DF emulation layer'
C print *, 'of HDF 3.2 and beyond (FORTRAN version). Many'
C print *, 'routines will be tested individually. Each test'
C print *, 'will report its name and results. If all goes'
C print *, 'well, all of the results will begin with "Success".'
C print *, 'If a test fails, the results line will begin with'
C print *, '">>>Failure". An error count is kept and printed'
C print *, 'out at the end.'
C print *, 'Hit <return> to continue.'
C read(5,100) in
C 100 format(a)
C in(1:20) = ' '
call MESSAGE(VERBO_MED, 'Testing dferrno...')
ret = dferrno()
if (ret .ne. 0) then
print *, '>>>Failure: Returned ', ret, ' rather than 0.'
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfishdf... (should fail)')
ret = dfishdf('tstubsF.hdf')
dfenum = dferrno()
if (ret .eq. -1) then
C print *, 'Success: dfishdf failed with DFerror = ', dfenum
call MESSAGE(VERBO_HI, 'Success: dfishdf did fail')
else
print *, '>>>Failure: Non-existent file looks like HDF file.'
print *, ' Maybe was a pre-existing file named "tstubsF.hdf"'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
endif
call MESSAGE(VERBO_MED, 'Testing dfopen... (new file)')
dfile = dfopen('tstubsF.hdf', 6, 0)
dfenum = dferrno()
if (dfile .eq. 0) then
print *, '>>>Failure: Error ', dfenum, ' opening file.'
print *, ' Quitting.'
return
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfclose...')
ret = dfclose(dfile)
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure: could not close file.'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED,
+ 'Testing dfclose... (invalid file; should fail)')
ret = dfclose(dfile)
dfenum = dferrno()
if (ret .eq. -1) then
call MESSAGE(VERBO_HI, 'Success: dfclose did fail')
else
print *, '>>>Failure: Close allowed on unopened file.'
nerrors = nerrors + 1
endif
call MESSAGE(VERBO_MED, 'Testing dfopen... (existing file)')
dfile = dfopen('tstubsF.hdf', 2, 0)
dfenum = dferrno()
if (dfile .eq. 0) then
print *, '>>>Failure: Error ', dfenum, ' opening file.'
print *, ' Quitting.'
return
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfput...')
ret = dfput(dfile, t255, r1, ar0, a0size)
dfenum = dferrno()
if (ret .ne. a0size) then
print *, '>>>Failure: DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfget...')
ret = dfget(dfile, t255, r1, in)
dfenum = dferrno()
if (ret .ne. a0size) then
print *, '>>>Failure: read ', ret, ' of ', a0size, ' bytes.'
print *, ' String read: ', in
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
err = 0
do 10 i=1, a0size
if (in(i:i) .ne. ar0(i:i)) err = 1
10 continue
if (err .eq. 1) then
print *, '>>>Failure: strings differ.'
print *, ' String written: ', ar0
print *, ' String read: ', in
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI,
+ 'Success: string read is the same as written.')
endif
endif
in(1:20) = ' '
call MESSAGE(VERBO_MED, 'Testing dfaccess (write)...')
ret = dfaccess(dfile, t255, r3, 'w')
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfread... (should fail)')
ret = dfread(dfile, in, 5)
dfenum = dferrno()
if (ret .eq. -1) then
call MESSAGE(VERBO_HI, 'Success: dfread did fail')
else
print *, '>>>Failure: Read allowed on write element.'
nerrors = nerrors + 1
endif
in(1:20) = ' '
call MESSAGE(VERBO_MED, 'Testing dfwrite...')
ret = dfwrite(dfile, ar1, a1size)
dfenum = dferrno()
if (ret .ne. a1size) then
print *, '>>>Failure: wrote ', ret, ' of ', a1size, ' bytes.'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfaccess (read)...')
ret = dfaccess(dfile, t255, r3, 'r')
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfwrite... (should fail)')
ret = dfwrite(dfile, in, 5)
dfenum = dferrno()
if (ret .eq. -1) then
call MESSAGE(VERBO_HI, 'Success: dfwrite did fail')
else
print *, '>>>Failure: write allowed on read element.'
nerrors = nerrors + 1
endif
call MESSAGE(VERBO_MED, 'Testing dfread...')
ret = dfread(dfile, in, a1size)
dfenum = dferrno()
if (ret .ne. a1size) then
print *, '>>>Failure: read ', ret, ' of ', a1size, ' bytes.'
print *, ' String read: ', in
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
err = 0
do 40 i=1, a1size
if (in(i:i) .ne. ar1(i:i)) err = 1
40 continue
if (err .eq. 1) then
print *, '>>>Failure: strings differ.'
print *, ' String written: ', ar1
print *, ' String read: ', in
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI,
+ 'Success: string read is the same as written.')
endif
endif
in(1:20) = ' '
call MESSAGE(VERBO_MED, 'Testing dfnumber...')
nd = dfnumber(dfile, t255)
dfenum = dferrno()
if (nd .ne. 2) then
print *, '>>>Failure:'
print *, ' Saw ', nd, ' occurrences of tag 255 not than 2.'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfdesc...')
ret = dfdesc(dfile, dlist, 0, 5)
dfenum = dferrno()
C
C add one for version tag
C
if (ret .ne. (nd + 1)) then
print *, '>>>Failure: Returned ', ret, ' rather than ', nd+1
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfupdate')
ret = dfupdate(dfile)
dfenum = dferrno()
if (ret .ne. 0) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfstat')
ret = dfstat(dfile, dfinfo)
dfenum = dferrno()
if (ret .ne. 0) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfnewref...')
ret = dfnewref(dfile)
dfenum = dferrno()
if (ret .ne. 4) then
print *, '>>>Failure: Returned ref. ', ret, ' instead of 4'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dfdup...')
ret = dfdup(dfile, 127, r7, t255, r3)
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
ret = dfnumber(dfile, t127)
dfenum = dferrno()
if (ret .ne. 1) then
print *, '>>>Failure: duplicated tag not found.'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
endif
call MESSAGE(VERBO_MED, 'Testing dfdel...')
ret = dfdel(dfile, t127, r7)
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
ret = dfnumber(dfile, t127)
dfenum = dferrno()
if (ret .ne. 0) then
print *, '>>>Failure: found ', ret, ' deleted tags.'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
endif
call MESSAGE(VERBO_MED, 'Testing dfsfind...')
ret = dfsfind(dfile, 254, 0)
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure:'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
call MESSAGE(VERBO_MED, 'Testing dffind...')
ret = dfdup(dfile, 254, 4, 255, 3)
if (ret .ne. 0) then
print *, '>>>DFdup 1 failed.'
endif
ret = dfdup(dfile, 254, 5, 255, 3)
if (ret .ne. 0) then
print *, '>>>DFdup 2 failed.'
endif
ret = dfdup(dfile, 254, 6, 255, 3)
if (ret .ne. 0) then
print *, '>>>DFdup 3 failed.'
endif
do 200 i=4,6
ret = dffind(dfile, tag, ref, length)
dfenum = dferrno()
if (ret .eq. -1) then
print *, '>>>Failure on find #', i
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
else
if ((tag .ne. 254) .or. (ref .ne. i) .or.
+ (length .ne. a1size)) then
print *, '>>>Failure: tag/ref found is not correct.'
print *, ' Looking for:'
print *, ' tag: 254'
print *, ' ref: ', i
print *, ' length: ', a1size
print *, ' Found:'
print *, ' tag: ', tag
print *, ' ref: ', ref
print *, ' length: ', length
nerrors = nerrors + 1
else
call MESSAGE(VERBO_HI, 'Success!')
endif
endif
200 continue
ret = dfclose(dfile)
dfenum = dferrno()
if (ret .ne. 0) then
print *, '>>>Failure: dfclose failed (probably from open aid)'
print *, ' DFerror = ', dfenum
nerrors = nerrors + 1
endif
if (nerrors .ne. 0) then
print *, ' ', nerrors, ' errors were encountered.'
else
if (verbosity .ge. VERBO_HI) then
print *, ' >>> ALL TESTS PASSED <<<'
endif
endif
return
end
|