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
|
;
; Alain C, 31 july 2008, under GNU GPL v2 or later
;
; After bugs founded by Nicolas with negatives Real/Double
; and (D)Complex with type in (12,13,15) we do a
; systematic check for potential FIX() problems
;
; Please remember type ULONG64 does not exist on non-64b OS
;
; Plateforms dependances:
; --linux IDL 7.0 x86_64 7 tests, 0 errors on 4 cases
; --linux IDL 7.0 x86 6 tests, 0 errors on 3 cases, 2 errors on
; last (INT and BYTE)
; --linux IDL 5.5 x86 6 tests, 0 errors on 4 cases
; --linux IDL 6.0 x86 6 tests, 0 errors on 3 cases, 2 errors on last (INT and BYTE)
;
; ----------------------------------------------------
; Modifications history :
;
; 2018-Feb-05 : AC. during TEST_FINITE rewriting, discovered some FIX()
; for NaN and Inf are clearly different in IDL and GDL
;
; ----------------------------------------------------
;
; http://www.harrisgeospatial.com/docs/idl_data_types.html
;
pro TEST_FIX_NAN_INF, cumul_errors, test=test, verbose=verbose
;
nb_errors=0
;
data=[0., -0.0, 10, -10., !values.f_nan, -!values.f_nan]
data=[data, !values.f_infinity, -!values.f_infinity]
;
GIVE_LIST_NUMERIC, list_num_types, list_num_names, /integer
;
l31=(2L^30)*2L
l63=(2lL^62)*2lL
ull63=2ull^63
;
exp_BYTE=BYTE([0, 0, 10, 246, 0, 0, 0, 0])
;
exp_INT=[0s, 0, 10, -10, 0, 0, 0, 0]
;
exp_LONG=[0l, 0, 10, -10, l31, l31, l31, l31]
;
; not ready
exp_FLOAT=data
exp_DOUBLE=data*1.D
exp_COMPLEX=data*COMPLEX(1.,0.)
exp_DCOMPLEX=data*DCOMPLEX(1.,0.)
;
exp_UINT=MAKE_ARRAY(8, type=12)
exp_UINT[2:3]=[10u,65526u]
;
exp_ULONG=MAKE_ARRAY(8, type=13)
exp_ULONG[2:3]=[10ul,4294967286ul]
;
exp_LONG64=MAKE_ARRAY(8, type=14)
exp_LONG64[2:3]=[10ll,-10ll]
exp_LONG64[4:7]=REPLICATE(l63,4)
;
exp_ULONG64=MAKE_ARRAY(8, type=15)
exp_ULONG64[2:3]=[10ull,-10ull]
exp_ULONG64[4:7]=REPLICATE(l63,4)
exp_ULONG64[6]=0ull
;
for ii=0,N_ELEMENTS(list_num_names)-1 do begin
;;
type_value=list_num_types[ii]
type_name=list_num_names[ii]
;;
res=FIX(data, type=type_value)
;;
OK=EXECUTE('exp=exp_'+type_name)
if OK then begin
if ~ARRAY_EQUAL(res, exp) then begin
ERRORS_ADD, nb_errors, 'pb with type : '+type_name
print, 'exp :', exp
print, 'res :', res
endif
if KEYWORD_SET(verbose) then begin
MESSAGE, /continue, 'values for type :'+type_name
print, 'exp :', exp
print, 'res :', res
endif
endif else begin
print, 'pb during name conversion for type : '+STRUPCASE(type_name)
endelse
endfor
;
; ----- final ----
;
BANNER_FOR_TESTSUITE, 'TEST_FIX_NAN_INF', nb_errors, /short
ERRORS_CUMUL, cumul_errors, nb_errors
if KEYWORD_set(test) then STOP
;
end
;
; -------------------------------------
;
pro TEST_FIX_UNSIGNED, value, type, count=count, quiet=quiet
;
resu=FIX(value, type=type)-FIX(ROUND(value), type=type)
;
if resu NE 0 then begin
if NOT(KEYWORD_SET(quiet)) then begin
print, 'Error for Value : ', value
HELP, value
HELP, FIX(value, type=type)
HELP, FIX(ROUND(value), type=type)
endif
if (N_ELEMENTS(count) EQ 1) then count=count+1
endif
end
;
; -------------------------------------
;
pro TEST_FIX_ONE_VALUE, cumul_errors, value=value, verbose=verbose
;
if KEYWORD_SET(verbose) then quiet=0 else quiet=1
;
nb_errors=0
pref='TEST_FIX_ONE_VALUE'
;
GIVE_LIST_NUMERIC, liste_types, /integer
nb_types=N_ELEMENTS(liste_types)
;
if N_ELEMENTS(value) EQ 0 then x=10.1 else x=value
;
if (x LT 0.) then begin
print, 'Positive input mandatory !'
; return, 0
endif
;
print, 'Tested value : ', x
;
; --------- positive case -----------------
;
count=0
for ii=0, nb_types-1 do begin
TEST_FIX_UNSIGNED, x, liste_types[ii], count=count, quiet=quiet
end
;
BANNER_FOR_TESTSUITE, 'positive value', count, /noline, pref=pref
ERRORS_CUMUL, nb_errors, count
;
; --------- negative case -----------------
;
count=0
for ii=0, nb_types-1 do begin
TEST_FIX_UNSIGNED, (-1.0)*x, liste_types[ii], count=count, quiet=quiet
end
;
BANNER_FOR_TESTSUITE, 'negative value', count, /noline, pref=pref
ERRORS_CUMUL, nb_errors, count
;
if (nb_errors GT 0) then begin
print, 'Bad news ! At least one problem encoutered !'
print, 'Please rerun this test with keyword /verbose !'
endif
;
; ----- final ----
;
BANNER_FOR_TESTSUITE, 'TEST_FIX_ONE_VALUE', nb_errors, /noline
ERRORS_CUMUL, cumul_errors, nb_errors
if KEYWORD_set(test) then STOP
;
end
;
; ----------------------------------------------
;
pro TEST_FIX, help=help, test=test, no_exit=no_exit, verbose=verbose
;
if KEYWORD_SET(help) then begin
print, 'pro TEST_FIX, help=help, test=test, $'
print, ' no_exit=no_exit, verbose=verbose'
return
endif
;
cumul_errors=0
;
TEST_FIX_NAN_INF, cumul_errors, verbose=verbose
;
BANNER_FOR_TESTSUITE, 'TEST_FIX_ONE_VALUE', 0, /line
TEST_FIX_ONE_VALUE, cumul_errors, value= 1.001, verbose=verbose
TEST_FIX_ONE_VALUE, cumul_errors, value= 10.01, verbose=verbose
TEST_FIX_ONE_VALUE, cumul_errors, value=1000.1, verbose=verbose
BANNER_FOR_TESTSUITE, 'TEST_FIX_ONE_VALUE', 0, /line
;
; ----------------- final message ----------
;
BANNER_FOR_TESTSUITE, 'TEST_FIX', cumul_errors
;
if (cumul_errors GT 0) AND ~KEYWORD_SET(no_exit) then EXIT, status=1
;
if KEYWORD_SET(test) then STOP
;
end
|