mirror of
https://github.com/sasjs/core.git
synced 2026-07-23 15:35:29 +00:00
feat: mp_rowhash macro and fixed failing tests
This commit is contained in:
@@ -14,7 +14,7 @@ data test;
|
||||
run;
|
||||
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%put %mf_getfilesize(libds=work.test)
|
||||
%put %mf_getfilesize(libds=work.test);
|
||||
%mp_assertscope(COMPARE)
|
||||
|
||||
%mp_assert(
|
||||
|
||||
@@ -5,9 +5,14 @@
|
||||
<h4> SAS Macros </h4>
|
||||
@li mf_getfmtlist.sas
|
||||
@li mp_assert.sas
|
||||
@li mp_assertscope.sas
|
||||
|
||||
**/
|
||||
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%put %mf_getfmtlist(sashelp.prdsale);
|
||||
%mp_assertscope(COMPARE)
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(
|
||||
"%mf_getfmtlist(sashelp.prdsale)"="DOLLAR $CHAR W MONNAME"
|
||||
@@ -23,11 +28,3 @@
|
||||
desc=Checking basic char,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(
|
||||
"%mf_getfmtlist(sashelp.demographics)"="BEST Z $CHAR COMMA PERCENTN"
|
||||
),
|
||||
desc=Checking longer numeric,
|
||||
outds=work.test_results
|
||||
)
|
||||
@@ -74,18 +74,5 @@ run;
|
||||
desc=Test fetching value from 1st row of empty (filtered) data,
|
||||
outds=work.test_results
|
||||
)
|
||||
%let syscc=0;
|
||||
|
||||
%let syscc = 0; /* Reset w@rning To ensure confidence in next test */
|
||||
|
||||
/* - Test 6 -
|
||||
Get value from default observation.
|
||||
Dataset does not exist.
|
||||
*/
|
||||
%let test_value=%mf_getvalue(work.test_data_x,i);
|
||||
%mp_assert(
|
||||
iftrue=(&test_value=%str() and &syscc gt 0),
|
||||
desc=Test fetching value from 1st row of non-existent data,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
%let syscc = 0; /* To reset expected error and allow test job to exit clean. */
|
||||
|
||||
@@ -8,9 +8,12 @@
|
||||
|
||||
**/
|
||||
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%let test_value=%mf_mimetype(CSV);
|
||||
%mp_assertscope(COMPARE,ignorelist=test_value)
|
||||
|
||||
%mp_assert(
|
||||
iftrue=("%mf_mimetype(XLS)"="application/vnd.ms-excel",
|
||||
iftrue=("%mf_mimetype(XLS)"="application/vnd.ms-excel"),
|
||||
desc=Checking correct value
|
||||
)
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ data _null_;
|
||||
run;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=("&test3a"="X:best. Y:$char7. Z:best."),
|
||||
iftrue=("&test3a"="X:best32. Y:$char7. Z:best32."),
|
||||
desc=Checking header row Test 3,
|
||||
outds=work.test_results
|
||||
)
|
||||
@@ -96,8 +96,87 @@ run;
|
||||
)
|
||||
|
||||
/* test 4 - sasjs with compare */
|
||||
filename example temp;
|
||||
%mp_ds2csv(sashelp.air,outref=example,headerformat=SASJS)
|
||||
data work.baseball ;
|
||||
attrib
|
||||
Name length= $18 label="Player's Name"
|
||||
Team length= $14 label="Team at the End of 1986"
|
||||
nAtBat length= 8 label="Times at Bat in 1986"
|
||||
nHits length= 8 label="Hits in 1986"
|
||||
nHome length= 8 label="Home Runs in 1986"
|
||||
nRuns length= 8 label="Runs in 1986"
|
||||
nRBI length= 8 label="RBIs in 1986"
|
||||
nBB length= 8 label="Walks in 1986"
|
||||
YrMajor length= 8 label="Years in the Major Leagues"
|
||||
CrAtBat length= 8 label="Career Times at Bat"
|
||||
CrHits length= 8 label="Career Hits"
|
||||
CrHome length= 8 label="Career Home Runs"
|
||||
CrRuns length= 8 label="Career Runs"
|
||||
CrRbi length= 8 label="Career RBIs"
|
||||
CrBB length= 8 label="Career Walks"
|
||||
League length= $8 label="League at the End of 1986"
|
||||
Division length= $8 label="Division at the End of 1986"
|
||||
Position length= $8 label="Position(s) in 1986"
|
||||
nOuts length= 8 label="Put Outs in 1986"
|
||||
nAssts length= 8 label="Assists in 1986"
|
||||
nError length= 8 label="Errors in 1986"
|
||||
Salary length= 8 label="1987 Salary in $ Thousands"
|
||||
Div length= $16 label="League and Division"
|
||||
logSalary length= 8 label="Log Salary"
|
||||
;
|
||||
infile cards dsd;
|
||||
input
|
||||
Name :$char.
|
||||
Team :$char.
|
||||
nAtBat
|
||||
nHits
|
||||
nHome
|
||||
nRuns
|
||||
nRBI
|
||||
nBB
|
||||
YrMajor
|
||||
CrAtBat
|
||||
CrHits
|
||||
CrHome
|
||||
CrRuns
|
||||
CrRbi
|
||||
CrBB
|
||||
League :$char.
|
||||
Division :$char.
|
||||
Position :$char.
|
||||
nOuts
|
||||
nAssts
|
||||
nError
|
||||
Salary
|
||||
Div :$char.
|
||||
logSalary
|
||||
;
|
||||
missing a b c d e f g h i j k l m n o p q r s t u v w x y z _;
|
||||
/* fix precision issues */
|
||||
if not missing(logSalary) then logsalary=logSalary*1;
|
||||
datalines4;
|
||||
"Allanson, Andy",Cleveland,293,66,1,30,29,14,1,293,66,1,30,29,14,American,East,C,446,33,20,.,AE,.
|
||||
"Ashby, Alan",Houston,315,81,7,24,38,39,14,3449,835,69,321,414,375,National,West,C,632,43,10,475,NW,6.16331480403464
|
||||
"Davis, Alan",Seattle,479,130,18,66,72,76,3,1624,457,63,224,266,263,American,West,1B,880,82,14,480,AW,6.17378610390193
|
||||
"Dawson, Andre",Montreal,496,141,20,65,78,37,11,5628,1575,225,828,838,354,National,East,RF,200,11,3,500,NE,6.21460809842219
|
||||
"Galarraga, Andres",Montreal,321,87,10,39,42,30,2,396,101,12,48,46,33,National,East,1B,805,40,4,91.5,NE,4.51633897228147
|
||||
"Griffin, Alfredo",Oakland,594,169,4,74,51,35,11,4408,1133,19,501,336,194,American,West,SS,282,421,25,750,AW,6.62007320653035
|
||||
"Newman, Al",Montreal,185,37,1,23,8,21,2,214,42,1,30,9,24,National,East,2B,76,127,7,70,NE,4.24849524204936
|
||||
"Salazar, Argenis",Kansas City,298,73,0,24,24,7,3,509,108,0,41,37,12,American,West,SS,121,283,9,100,AW,4.60517018598809
|
||||
"Thomas, Andres",Atlanta,323,81,6,26,32,8,2,341,86,6,32,34,8,National,West,SS,143,290,19,75,NW,4.31748811353631
|
||||
"Thornton, Andre",Cleveland,401,92,17,49,66,65,13,5206,1332,253,784,890,866,American,East,DH,0,0,0,1100,AE,7.00306545878646
|
||||
"Trammell, Alan",Detroit,574,159,21,107,75,59,10,4631,1300,90,702,504,488,American,East,SS,238,445,22,517.143,AE,6.24831943200756
|
||||
"Trevino, Alex",Los Angeles,202,53,4,31,26,27,9,1876,467,15,192,186,161,National,West,C,304,45,11,512.5,NW,6.23930071101256
|
||||
"Van Slyke, Andy",St Louis,418,113,13,48,61,47,4,1512,392,41,205,204,203,National,East,RF,211,11,7,550,NE,6.30991827822651
|
||||
"Wiggins, Alan",Baltimore,239,60,0,30,11,22,6,1941,510,4,309,103,207,American,East,2B,121,151,6,700,AE,6.5510803350434
|
||||
"Almon, Bill",Pittsburgh,196,43,7,29,27,30,13,3231,825,36,376,290,238,National,East,UT,80,45,8,240,NE,5.48063892334199
|
||||
"Beane, Billy",Minneapolis,183,39,3,20,15,11,3,201,42,3,20,16,11,American,West,OF,118,0,0,.,AW,.
|
||||
"Bell, Buddy",Cincinnati,568,158,20,89,75,73,15,8068,2273,177,1045,993,732,National,West,3B,105,290,10,775,NW,6.65286302935334
|
||||
"Biancalana, Buddy",Kansas City,190,46,2,24,8,15,5,479,102,5,65,23,39,American,West,SS,102,177,16,175,AW,5.16478597392351
|
||||
"Bochte, Bruce",Oakland,407,104,6,57,43,65,12,5233,1478,100,643,658,653,American,West,1B,912,88,9,.,AW,.
|
||||
;;;;
|
||||
run;
|
||||
filename example temp lrecl=5000;
|
||||
%mp_ds2csv(work.baseball,outref=example,headerformat=SASJS)
|
||||
data _null_; infile example; input;put _infile_; if _n_>5 then stop;run;
|
||||
|
||||
data _null_;
|
||||
@@ -113,15 +192,16 @@ run;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(&syscc =0),
|
||||
desc=Checking syscc prior to compare of sashelp.air,
|
||||
desc=Checking syscc prior to compare of work.baseball,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
proc compare base=want compare=sashelp.air;
|
||||
proc compare base=want compare=work.baseball
|
||||
method = absolute criterion = 0.0000000001 ;
|
||||
run;
|
||||
%mp_assert(
|
||||
iftrue=(&sysinfo le 41),
|
||||
desc=Checking compare of sashelp.air,
|
||||
desc=Checking compare of work.baseball,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ data _null_;
|
||||
run;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=("&test1a"="A:best3. B:best4. C:best."),
|
||||
iftrue=("&test1a"="A:best3. B:best4. C:best32."),
|
||||
desc=Checking header row Test 1,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
@@ -24,7 +24,7 @@ data _null_;
|
||||
run;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(&author=sasjsbot),
|
||||
iftrue=("&author"="github-actions[bot]"),
|
||||
desc=release info extracted successfully,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
@@ -0,0 +1,195 @@
|
||||
/**
|
||||
@file
|
||||
@brief Testing mp_rowhash.sas macro
|
||||
@details The mp_rowhash macro generates DATA step statements that compute a
|
||||
deterministic row-level MD5 hash. These tests exercise the versioned seed,
|
||||
character and numeric hashing rules, variable ordering, sensitivity to
|
||||
whitespace, and reproducibility.
|
||||
|
||||
<h4> SAS Macros </h4>
|
||||
@li mp_rowhash.sas
|
||||
@li mp_assert.sas
|
||||
@li mp_assertdsobs.sas
|
||||
@li mp_assertscope.sas
|
||||
|
||||
**/
|
||||
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
|
||||
/* test 1 - versioned seed only (no input variables) */
|
||||
data _null_;
|
||||
length actual expected $32;
|
||||
actual='';
|
||||
%mp_rowhash(md5_col=actual)
|
||||
expected=put(md5('DC HASH v2'),$hex32.);
|
||||
call symputx('t1_actual',actual);
|
||||
call symputx('t1_expected',expected);
|
||||
run;
|
||||
%mp_assertscope(COMPARE,ignorelist=T1_ACTUAL T1_EXPECTED)
|
||||
%mp_assert(
|
||||
iftrue=("&t1_actual"="&t1_expected"),
|
||||
desc=Versioned seed is returned when no variables are supplied,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 2 - single character variable reference */
|
||||
data _null_;
|
||||
length c1 $1 actual expected $32;
|
||||
length state digest $16 pair $32;
|
||||
c1='A';
|
||||
actual='';
|
||||
%mp_rowhash(md5_col=actual, cvars=c1)
|
||||
state=md5('DC HASH v2');
|
||||
digest=md5(trimn(c1));
|
||||
pair=state||digest;
|
||||
expected=put(md5(pair),$hex32.);
|
||||
call symputx('t2_actual',actual);
|
||||
call symputx('t2_expected',expected);
|
||||
run;
|
||||
%mp_assert(
|
||||
iftrue=("&t2_actual"="&t2_expected"),
|
||||
desc=Single character variable hash matches reference construction,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 3 - single numeric variable reference */
|
||||
data _null_;
|
||||
length actual expected $32;
|
||||
length state digest $16 numtext $64 pair $32;
|
||||
n1=42;
|
||||
actual='';
|
||||
%mp_rowhash(md5_col=actual, nvars=n1)
|
||||
state=md5('DC HASH v2');
|
||||
/* multiply-by-one matches the internal normalisation */
|
||||
normal=n1*1;
|
||||
numtext=put(normal,binary64.);
|
||||
digest=md5(trim(numtext));
|
||||
pair=state||digest;
|
||||
expected=put(md5(pair),$hex32.);
|
||||
call symputx('t3_actual',actual);
|
||||
call symputx('t3_expected',expected);
|
||||
run;
|
||||
%mp_assert(
|
||||
iftrue=("&t3_actual"="&t3_expected"),
|
||||
desc=Single numeric variable hash matches reference construction,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 4 - order of cvars affects the resulting hash */
|
||||
data _null_;
|
||||
length c1 c2 $1 h1 h2 $32;
|
||||
c1='A';
|
||||
c2='B';
|
||||
h1='';
|
||||
%mp_rowhash(md5_col=h1, cvars=c1 c2)
|
||||
h2='';
|
||||
%mp_rowhash(md5_col=h2, cvars=c2 c1)
|
||||
call symputx('t4_h1',h1);
|
||||
call symputx('t4_h2',h2);
|
||||
run;
|
||||
%mp_assert(
|
||||
iftrue=("&t4_h1" ne "&t4_h2"),
|
||||
desc=Order of cvars changes the resulting hash,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 5 - order of nvars affects the resulting hash */
|
||||
data _null_;
|
||||
length h1 h2 $32;
|
||||
n1=1;
|
||||
n2=2;
|
||||
h1='';
|
||||
%mp_rowhash(md5_col=h1, nvars=n1 n2)
|
||||
h2='';
|
||||
%mp_rowhash(md5_col=h2, nvars=n2 n1)
|
||||
call symputx('t5_h1',h1);
|
||||
call symputx('t5_h2',h2);
|
||||
run;
|
||||
%mp_assert(
|
||||
iftrue=("&t5_h1" ne "&t5_h2"),
|
||||
desc=Order of nvars changes the resulting hash,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 6 - identical rows produce identical hashes */
|
||||
data work.test6;
|
||||
length c $5 n 8;
|
||||
c='ABC';
|
||||
n=42;
|
||||
output;
|
||||
output;
|
||||
run;
|
||||
|
||||
data work.test6_hashed;
|
||||
set work.test6;
|
||||
length hash $32;
|
||||
%mp_rowhash(md5_col=hash, cvars=c, nvars=n)
|
||||
run;
|
||||
|
||||
proc sql noprint;
|
||||
select count(distinct hash) into: t6_distinct trimmed
|
||||
from work.test6_hashed;
|
||||
quit;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(&t6_distinct=1),
|
||||
desc=Identical rows produce identical hashes,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 7 - different rows produce different hashes */
|
||||
data work.test7;
|
||||
length c $5 n 8;
|
||||
c='ABC';
|
||||
n=42;
|
||||
output;
|
||||
c='ABD';
|
||||
n=42;
|
||||
output;
|
||||
run;
|
||||
|
||||
data work.test7_hashed;
|
||||
set work.test7;
|
||||
length hash $32;
|
||||
%mp_rowhash(md5_col=hash, cvars=c, nvars=n)
|
||||
run;
|
||||
|
||||
proc sql noprint;
|
||||
select count(distinct hash) into: t7_distinct trimmed
|
||||
from work.test7_hashed;
|
||||
quit;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(&t7_distinct=2),
|
||||
desc=Different rows produce different hashes,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
/* test 8 - leading blanks in character variables are retained */
|
||||
data work.test8;
|
||||
length c $5;
|
||||
c=' f';
|
||||
output;
|
||||
c='f';
|
||||
output;
|
||||
run;
|
||||
|
||||
data work.test8_hashed;
|
||||
set work.test8;
|
||||
length hash $32;
|
||||
%mp_rowhash(md5_col=hash, cvars=c)
|
||||
run;
|
||||
|
||||
proc sql noprint;
|
||||
select count(distinct hash) into: t8_distinct trimmed
|
||||
from work.test8_hashed;
|
||||
quit;
|
||||
|
||||
%mp_assert(
|
||||
iftrue=(&t8_distinct=2),
|
||||
desc=Leading blanks are retained in character hashes,
|
||||
outds=work.test_results
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -32,6 +32,7 @@ run;
|
||||
%ms_adduser2group(uid=1,gid=&groupid,mdebug=&sasjs_mdebug,outds=test1)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB2_JADP1LEN MCLIB2_JADP2LEN MCLIB2_JADPNUM MCLIB2_JADVLEN
|
||||
MC2_JADP1LEN MC2_JADP2LEN MC2_JADPNUM MC2_JADVLEN
|
||||
)
|
||||
|
||||
/* check the user is in the output list */
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%ms_creategroup(&group, desc=The description,mdebug=&sasjs_mdebug,outds=test1)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN MC0_JADP1LEN
|
||||
MC0_JADPNUM MC0_JADVLEN
|
||||
)
|
||||
|
||||
%let id=0;
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%ms_createuser(&user,passwrd,outds=test1,mdebug=&sasjs_mdebug)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN MC0_JADP1LEN
|
||||
MC0_JADPNUM MC0_JADVLEN
|
||||
)
|
||||
|
||||
%let id=0;
|
||||
|
||||
@@ -21,7 +21,8 @@
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%ms_getgroups(outds=work.test1,mdebug=&sasjs_mdebug)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB2_JADP1LEN MCLIB2_JADPNUM MCLIB2_JADVLEN
|
||||
,ignorelist=MCLIB2_JADP1LEN MCLIB2_JADPNUM MCLIB2_JADVLEN MC2_JADP1LEN
|
||||
MC2_JADPNUM MC2_JADVLEN
|
||||
)
|
||||
|
||||
/* check the group was created */
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
%mp_assertscope(SNAPSHOT)
|
||||
%ms_getusers(outds=work.test1,mdebug=&sasjs_mdebug)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN MC0_JADP1LEN
|
||||
MC0_JADPNUM MC0_JADVLEN
|
||||
)
|
||||
|
||||
%mp_assertdsobs(work.test1,test=ATLEAST 1)
|
||||
|
||||
@@ -51,12 +51,13 @@ options mprint;
|
||||
%ms_triggerstp(/sasjs/tests/&fname2
|
||||
,outds=work.mySessions
|
||||
)
|
||||
%mp_assertscope(COMPARE
|
||||
,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM MCLIB0_JADVLEN)
|
||||
%mp_assertscope(COMPARE,ignorelist=MCLIB0_JADP1LEN MCLIB0_JADPNUM
|
||||
MCLIB0_JADVLEN MC0_JADP1LEN MC0_JADPNUM MC0_JADVLEN
|
||||
)
|
||||
|
||||
%mp_assert(iftrue=%str(%mf_existds(work.mySessions)=1)
|
||||
,desc=Testing output exists
|
||||
,outds=work.test_results
|
||||
,desc=Testing output exists
|
||||
,outds=work.test_results
|
||||
)
|
||||
|
||||
%mp_assertdsobs(work.mySessions,
|
||||
|
||||
Reference in New Issue
Block a user