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
|
;
;
; provide a test-case object besides LIST
;
PRO ObjTEST::Cleanup, prm1, prm2, prm3
COMPILE_OPT IDL2 ,HIDDEN
nprm = N_PARAMS()
if nprm gt 0 then print,' ObjTEST::Cleanup, #params=',nprm
;
END
PRO ObjTEST__define
COMPILE_OPT IDL2 ,HIDDEN
void = {ObjTEST, $
inherits IDL_Object, $ ; superclass
center: [0d, 0d], $ ; two-element array
radius: 0d} ; scalar value
END
;
; GregJ, December 2017:
; first draft for a testsuite for IDL_CONTAINER
;
pro MYMESS, errors, message
errors=errors+1
MESSAGE, /continue, message
end
pro track_update,track,obj
nobj = n_elements(track)
track.ref = heap_refcount(obj)
return
end
;
pro TEST_CONTAINER, help=help, verbose=verbose, short=short, $
no_exit=no_exit, test=test
; verbose=1
;
if KEYWORD_SET(help) then begin
print, 'pro TEST_CONTAINER, help=help, verbose=verbose, short=short, $'
print, ' no_exit=no_exit, test=test'
return
endif
;
nb_errors=0
oc = obj_new('gdl_container')
pc = idl_container()
GDL_C_NAME = 'GDL_CONTAINER'
is_compiled_in = (obj_class(pc) eq GDL_C_NAME)
;
on_error,0
txt='just starting! count()==0?'
if(pc.count() ne 0) then MYMESS, nb_errors,txt
if(oc.count() ne 0) then MYMESS, nb_errors,txt
;
; adding 2 elements and counting again
;
objtest=obj_new('OBJTEST')
for k=5,6 do pc.add,ptr_new(indgen(k))
ptrall = ptr_valid()
ptrv = ptr_valid(1+indgen(3))
ptrpc = ptrall[indgen(3)]
for k=5,6 do oc.add,objtest
if KEYWORD_SET(test) then STOP,' stop 0',ptrv
txt='stuffed pc,and oc. count==2?'
if(pc.count() ne 2) then MYMESS, nb_errors,txt
if(oc.count() ne 2) then MYMESS, nb_errors,txt
;
; get an array of the pointers we made.
txt=' pointers contained in pc at ppall=PTRARR(2)'
; Our prototype structure:
lifecycle = { name: "", status: "unused", class: "LIST", ref: fix(0)}
ppall = pc.get(/all)
hash_ppref = hash("pc",heap_refcount(pc),"ppall=pc.get(/all)",heap_refcount(ppall))
hrppall = heap_refcount(ppall)
if keyword_set(verbose) then $
print,' heap_refcount of extracted pointers:',hrppall[0]
; Checkpoint:
; ::add called for all three types.
; get() called once for ALL pointers in pc.
txt=' pp1 = pc.get(posit=1)'
pp1=pc.get(posit=1)
if hrppall[1]+1 ne heap_refcount(pp1) then MYMESS, nb_errors," ref count not incremented"
if pp1 ne ppall[1] then MYMESS, nb_errors," pp1=pc.get(posit=1) not right'
;
ppnew = pc.get(/all)
if ~array_equal(heap_refcount(ppnew), heap_refcount(ppall)) then $
MYMESS, nb_errors," ppnew=pc.get(/all) not right'
ptrall = ptr_valid()
ptrv = ptr_valid(1+indgen(3))
ptrpc = ptrall[indgen(3)]
pc.remove,pp1
if ~array_equal(heap_refcount(ppnew), heap_refcount(ppall)) then $
MYMESS, nb_errors," pc.remove,pp1 error'
if KEYWORD_SET(test) then STOP,' stop 1: testing ::GET(/ALL,POSITION)'
;
heap_free,ppall
if keyword_set(verbose) then message,/continue,$
" pointers of PC are invalid but still retrievable pc.count()=",pc.count()
txt = ' create 4 objects from compiled-in {OBJTEST} testobj OBJARR(4)'
testobj = objarr(4)
for k=0,3 do testobj[k] = obj_new('OBJTEST')
;
txt = ' just kill oc and restart it - too heavy for now.
; collect the lists in OC, and remove them
LOC = oc.get(isa='LIST',/all) & oc.remove,lc
; Notice we have used ::GET and ::REMOVE methods
oc.add,pc ; add the pointer container (ppall, pp1)
oc.add,testobj[0]
; Our prototype structure:
lifecycle = { name: "", ID: obj_new(), status: "unused", class: "LIST", ref: fix(0)}
lc=list() & for k=5,6 do lc.add,list(indgen(k),/extract)
lc0 = lc[0] & lc1 = lc[1]
lout = list(indgen(5)+100)
LOC = OBJARR(2)
LOC[0]=objtest
LOC[1]=testobj[0]
; LC is a list that contains, itself, two lists (length 5 and 6)
; LOC is OBJARR[2] containing two 'objtest' objects.
; lout is another list all by itself
; memorialize their status:
lchist = replicate(lifecycle,5)
lchist.name = ["lc0", "lc1", "loc[0]", "loc[1]", "lout"]
lchist.status = "BORN"
lchist[0:1].ref = heap_refcount([lc0,lc1])
lchist[2:3].ref = heap_refcount(loc)
lchist[4].ref = heap_refcount(lout)
lchist.ID = [lc0, lc1, loc, lout]
if keyword_set(verbose) then $
print,format='(A8, 5(A6,4x),/,8x,10(4x,I6))'," BORN",lchist.name,lchist.ref
hrclc = heap_refcount(lc) ; a list containing two lists.
oc.add,lc[0]
oc.add,testobj[1]
oc.add,lc[1]
oc.add,testobj[2]
if heap_refcount(lc) ne hrclc then $
mymess, nb_errors," lc reference count was incremented incorrectly"
;
oc.add,list(["gdl1","gdl2"])
oc.add,testobj[3]
txt = ' Container OC is stuffed. pc, {testobj}/{list}'
; lists are objects with overloaded bracket properties
;
numoc = oc.count()
oc.add,lc & numoc++;
if oc.count() ne numoc then $ ; Check it one last time.
MYMESS, nb_errors,' object container count is off'
if heap_refcount(lc)-hrclc ne 1 then $
mymess, nb_errors," lc reference count was not incremented correctly"
hrclccont = intarr(2)
for k=0,1 do hrclccont[k] = heap_refcount(lc[k])
;
; take the two lists contained in LC and put them into an OBJARR(2)(=lca)
lca = objarr(2) & lca[0] = lc[0] & lca[1]=lc[1]
oc.add,lca
if oc.count() ne numoc+2 then $
MYMESS, nb_errors,' object container count is off'
octest=oc.get(/all,isa='OBJTEST')
oclist = oc.get(/all,isa='LIST')
occont = oc.get(/all,isa='GDL_CONTAINER')
ocpc = oc.get(/all,isa='IDL_CONTAINER')
if KEYWORD_SET(test) then STOP,' stop 2: '+txt
;
ocall=oc.get(/all) & hrcoc=heap_refcount(ocall)
oc.remove,/all
hrctest = heap_refcount(octest) & oc.add,octest
hrclist = heap_refcount(oclist) & oc.add,oclist
hrccont = heap_refcount(occont) & oc.add,occont
txt = ' OC has beem unloaded (.remove,/all) and reloaded (octest, oclist, occont) '
ocall=oc.get(/all)
; if ~is_compiled_in then oc.add,ocpc
;
; try to stuff pointers into oc, generating an error:
;
catch, ocerr
if ocerr ne 0 then $
catch,/cancel $
else $
oc.add,ppall ; error message "Mixed pointers/Objects attempted"
if(ocerr eq 0) then MYMESS, nb_errors,' no error is an error' $
else if KEYWORD_SET(verbose) then print,!error_state.msg
oc.remove,/all
ocid = obj_valid(octest,/get_heap) & oc.add,octest
ocid = [ocid,obj_valid(oclist,/get_heap)] & oc.add,oclist
chk = obj_valid(oc.get(/all),/get_heap)
if n_elements(chk) lt 5 then $
MYMESS, nb_errors,' testing CONTAINER::MOVE not enough room ...'
if ~array_equal(chk, ocid) then $
MYMESS, nb_errors,' testing CONTAINER::MOVE not starting well ...'
movea = [2,4] & moveb = [0,4]
ltrack = list(chk,/extract)
im = movea & oc.move,im[0],im[1] & ltrack.move,im[0],im[1]
im = moveb & oc.move,im[0],im[1] & ltrack.move,im[0],im[1]
listmove = ltrack.toarray()
chk = obj_valid(oc.get(/all),/get_heap)
if ~array_equal(chk, listmove) then $
MYMESS, nb_errors," testing CONTAINER::MOVE wasn't tracked by LIST::MOVE ..."
p = IDL_Container()
; Add pointers to 100 random numbers between 0 and 9.
FOR i=0,99 DO p.Add, PTR_NEW(FIX(RANDOMU(seed)*10))
; Locate which items are equal to the value 5.
match = p.Equals(5)
jj=WHERE(match,n5)
if n5 eq 0 then $
MYMESS, nb_errors,' testing CONTAINER::EQUALS unlikely ...'
;
; reset p
;
p.remove,/all
FOR i=0,99 DO p.Add, PTR_NEW(indgen(1+FIX(RANDOMU(seed)*10)))
ndgen = indgen(1+FIX(RANDOMU(seed)*10))
jj=where(p.equals(ndgen),n6)
szchk = size(ndgen)
for k=0,n6-1 do begin
if ~array_equal(szchk,size(*(p.get(position=jj[k]))) ) then $
MYMESS, nb_errors,' testing CONTAINER::EQUALS unlikely ...'
endfor
; Now get an array of positions
ppgen = p.get(position=jj-100)
for k=0,n6-1 do begin
if ~array_equal(szchk,size(*ppgen[k]) ) then $
MYMESS, nb_errors,' testing CONTAINER::EQUALS unlikely ...'
endfor
;
; reset p
;
p.remove,/all
FOR i=0,99 DO p.Add, PTR_NEW(indgen(1+FIX(RANDOMU(seed)*10)))
ndgen = indgen(1+FIX(RANDOMU(seed)*10))
jj=where(p.equals(ndgen),n6)
for k=0,n6-1 do p.move,jj[k]-100,0
jj=where(p.equals(ndgen),n6)
itest = where(jj ne indgen(n6),n0)
if n0 ne 0 then $
MYMESS, nb_errors,' testing CONTAINER::MOVE failed ...'
;
if KEYWORD_SET(verbose) then print,' heap_refcount(oc):',heap_refcount(oc)
; ----------------- final messages ----------
;
BANNER_FOR_TESTSUITE, 'TEST_CONTAINER', nb_errors, short=short
;
; if (nb_errors GT 0) AND ~KEYWORD_SET(no_exit) then EXIT, status=1
;
if KEYWORD_SET(test) then STOP,' final stop'
;
end
|