mirror of
https://github.com/sasjs/core.git
synced 2026-01-05 00:20:05 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b1380983ec | ||
|
|
b4834f9b40 | ||
|
|
1b5ad93cad | ||
|
|
f2942f2032 | ||
|
|
4198448b81 | ||
|
|
47a33452e0 | ||
|
|
fb21a0adfd | ||
|
|
e01b06b640 | ||
|
|
24380ddf26 | ||
|
|
1ef42d45af |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,7 @@
|
|||||||
node_modules
|
node_modules
|
||||||
.DS_Store
|
.DS_Store
|
||||||
sasjsbuild/
|
sasjsbuild/
|
||||||
|
sasjsresults/
|
||||||
|
|
||||||
# avoid filenames with spaces being committed to source control
|
# avoid filenames with spaces being committed to source control
|
||||||
**\ **
|
**\ **
|
||||||
|
|||||||
382
all.sas
382
all.sas
@@ -298,9 +298,9 @@ options noquotelenmax;
|
|||||||
@file
|
@file
|
||||||
@brief Checks if a set of variables ALL exist in a data set.
|
@brief Checks if a set of variables ALL exist in a data set.
|
||||||
@details Returns 0 if ANY of the variables do not exist, or 1 if they ALL do.
|
@details Returns 0 if ANY of the variables do not exist, or 1 if they ALL do.
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
%put %mf_existVarList(sashelp.class, age sex name dummyvar)
|
%put %mf_existVarList(sashelp.class, age sex name dummyvar);
|
||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mf_abort.sas
|
@li mf_abort.sas
|
||||||
@@ -1782,6 +1782,150 @@ Usage:
|
|||||||
%mend;
|
%mend;
|
||||||
|
|
||||||
/** @endcond *//**
|
/** @endcond *//**
|
||||||
|
@file
|
||||||
|
@brief Asserts the existence (or not) of columns
|
||||||
|
@details Useful in the context of writing sasjs tests. The results of the
|
||||||
|
test are _appended_ to the &outds. table.
|
||||||
|
|
||||||
|
Example usage:
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=name age sex,
|
||||||
|
test=ALL,
|
||||||
|
desc=check all columns exist
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=a b c,
|
||||||
|
test=NONE
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=age depth,
|
||||||
|
test=ANY
|
||||||
|
)
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_existds.sas
|
||||||
|
@li mf_existvarlist.sas
|
||||||
|
@li mf_getvarlist.sas
|
||||||
|
@li mf_wordsinstr1butnotstr2.sas
|
||||||
|
@li mp_abort.sas
|
||||||
|
|
||||||
|
|
||||||
|
@param [in] inds The input library.dataset to test for values
|
||||||
|
@param [in] cols= The list of columns to check for
|
||||||
|
@param [in] desc= (Testing observations) The user provided test description
|
||||||
|
@param [in] test= (ALL) The test to apply. Valid values are:
|
||||||
|
@li ALL - Test is a PASS if ALL columns exist in &inds
|
||||||
|
@li ANY - Test is a PASS if ANY of the columns exist in &inds
|
||||||
|
@li NONE - Test is a PASS if NONE of the columns exist in &inds
|
||||||
|
@param [out] outds= (work.test_results) The output dataset to contain the
|
||||||
|
results. If it does not exist, it will be created, with the following format:
|
||||||
|
|TEST_DESCRIPTION:$256|TEST_RESULT:$4|TEST_COMMENTS:$256|
|
||||||
|
|---|---|---|
|
||||||
|
|User Provided description|PASS|Column &inds contained ALL columns|
|
||||||
|
|
||||||
|
|
||||||
|
<h4> Related Macros </h4>
|
||||||
|
@li mp_assertdsobs.sas
|
||||||
|
@li mp_assertcolvals.sas
|
||||||
|
@li mp_assertdsobs.sas
|
||||||
|
|
||||||
|
@version 9.2
|
||||||
|
@author Allan Bowe
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
%macro mp_assertcols(inds,
|
||||||
|
cols=0,
|
||||||
|
test=ALL,
|
||||||
|
desc=0,
|
||||||
|
outds=work.test_results
|
||||||
|
)/*/STORE SOURCE*/;
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (&syscc ne 0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(syscc=&syscc - on macro entry)
|
||||||
|
)
|
||||||
|
|
||||||
|
%local lib ds ;
|
||||||
|
%let lib=%scan(&inds,1,%str(.));
|
||||||
|
%let ds=%scan(&inds,2,%str(.));
|
||||||
|
%let cols=%upcase(&cols);
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (%mf_existds(&lib..&ds)=0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(&lib..&ds not found!)
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (&cols=0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(No cols provided)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
%let test=%upcase(&test);
|
||||||
|
|
||||||
|
%if &test ne ANY and &test ne ALL and &test ne NONE %then %do;
|
||||||
|
%mp_abort(
|
||||||
|
mac=&sysmacroname,
|
||||||
|
msg=%str(Invalid test - &test)
|
||||||
|
)
|
||||||
|
%end;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* now do the actual test!
|
||||||
|
*/
|
||||||
|
%local result;
|
||||||
|
%if %mf_existVarList(&inds,&cols)=1 %then %let result=ALL;
|
||||||
|
%else %do;
|
||||||
|
%local targetcols compare;
|
||||||
|
%let targetcols=%upcase(%mf_getvarlist(&inds));
|
||||||
|
%let compare=%mf_wordsinstr1butnotstr2(
|
||||||
|
Str1=&cols,
|
||||||
|
Str2=&targetcols
|
||||||
|
);
|
||||||
|
%if %cmpres(&compare)=%cmpres(&cols) %then %let result=NONE;
|
||||||
|
%else %let result=SOME;
|
||||||
|
%end;
|
||||||
|
|
||||||
|
data;
|
||||||
|
length test_description $256 test_result $4 test_comments $256;
|
||||||
|
test_description=symget('desc');
|
||||||
|
if test_description='0'
|
||||||
|
then test_description="Testing &inds for existence of &test of: &cols";
|
||||||
|
|
||||||
|
test_result='FAIL';
|
||||||
|
test_comments="&sysmacroname: &inds has &result columns ";
|
||||||
|
%if &test=ALL %then %do;
|
||||||
|
%if &result=ALL %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %if &test=ANY %then %do;
|
||||||
|
%if &result=SOME %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %if &test=NONE %then %do;
|
||||||
|
%if &result=NONE %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
test_comments="&sysmacroname: Unsatisfied test condition - &test";
|
||||||
|
%end;
|
||||||
|
run;
|
||||||
|
|
||||||
|
%local ds;
|
||||||
|
%let ds=&syslast;
|
||||||
|
proc append base=&outds data=&ds;
|
||||||
|
run;
|
||||||
|
proc sql;
|
||||||
|
drop table &ds;
|
||||||
|
|
||||||
|
%mend;/**
|
||||||
@file
|
@file
|
||||||
@brief Asserts the values in a column
|
@brief Asserts the values in a column
|
||||||
@details Useful in the context of writing sasjs tests. The results of the
|
@details Useful in the context of writing sasjs tests. The results of the
|
||||||
@@ -3191,18 +3335,18 @@ data &outds;
|
|||||||
|
|
||||||
run;
|
run;
|
||||||
|
|
||||||
|
data _null_;
|
||||||
|
set &outds;
|
||||||
|
call symputx('REASON_CD',reason_cd,'l');
|
||||||
|
stop;
|
||||||
|
run;
|
||||||
|
|
||||||
|
%mp_abort(iftrue=(&abort=YES),
|
||||||
|
mac=&sysmacroname,
|
||||||
|
msg=%str(Filter issues in &inds, first was &reason_cd, details in &outds)
|
||||||
|
)
|
||||||
|
|
||||||
%if %mf_nobs(&outds)>0 %then %do;
|
%if %mf_nobs(&outds)>0 %then %do;
|
||||||
%if &abort=YES %then %do;
|
|
||||||
data _null_;
|
|
||||||
set &outds;
|
|
||||||
call symputx('REASON_CD',reason_cd,'l');
|
|
||||||
stop;
|
|
||||||
run;
|
|
||||||
%mp_abort(
|
|
||||||
mac=&sysmacroname,
|
|
||||||
msg=%str(Filter issues in &inds, first was &reason_cd, details in &outds)
|
|
||||||
)
|
|
||||||
%end;
|
|
||||||
%let syscc=1008;
|
%let syscc=1008;
|
||||||
%return;
|
%return;
|
||||||
%end;
|
%end;
|
||||||
@@ -3309,13 +3453,14 @@ filename &outref temp;
|
|||||||
file &outref lrecl=32800;
|
file &outref lrecl=32800;
|
||||||
set &inds end=last;
|
set &inds end=last;
|
||||||
by SUBGROUP_ID;
|
by SUBGROUP_ID;
|
||||||
if _n_=1 then put '(';
|
if _n_=1 then put '((';
|
||||||
else if first.SUBGROUP_ID then put +1 GROUP_LOGIC '(';
|
else if first.SUBGROUP_ID then put +1 GROUP_LOGIC '(';
|
||||||
else put +2 SUBGROUP_LOGIC;
|
else put +2 SUBGROUP_LOGIC;
|
||||||
|
|
||||||
put +4 VARIABLE_NM OPERATOR_NM RAW_VALUE;
|
put +4 VARIABLE_NM OPERATOR_NM RAW_VALUE;
|
||||||
|
|
||||||
if last.SUBGROUP_ID then put ')'@;
|
if last.SUBGROUP_ID then put ')'@;
|
||||||
|
if last then put ')';
|
||||||
run;
|
run;
|
||||||
%end;
|
%end;
|
||||||
|
|
||||||
@@ -5643,8 +5788,20 @@ proc sql
|
|||||||
%let contentype=%upcase(&contenttype);
|
%let contentype=%upcase(&contenttype);
|
||||||
%local platform; %let platform=%mf_getplatform();
|
%local platform; %let platform=%mf_getplatform();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* check engine type to avoid the below err message:
|
||||||
|
* > Function is only valid for filerefs using the CACHE access method.
|
||||||
|
*/
|
||||||
|
%local streamweb;
|
||||||
|
%let streamweb=0;
|
||||||
|
data _null_;
|
||||||
|
set sashelp.vextfl(where=(upcase(fileref)="_WEBOUT"));
|
||||||
|
if xengine='STREAM' then call symputx('streamweb',1,'l');
|
||||||
|
run;
|
||||||
|
|
||||||
%if &contentype=ZIP %then %do;
|
%if &contentype=ZIP %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/zip');
|
rc=stpsrv_header('Content-type','application/zip');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -5658,7 +5815,7 @@ proc sql
|
|||||||
%end;
|
%end;
|
||||||
%else %if &contentype=EXCEL %then %do;
|
%else %if &contentype=EXCEL %then %do;
|
||||||
/* suitable for XLS format */
|
/* suitable for XLS format */
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/vnd.ms-excel');
|
rc=stpsrv_header('Content-type','application/vnd.ms-excel');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -5671,7 +5828,7 @@ proc sql
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=XLSX %then %do;
|
%else %if &contentype=XLSX %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type',
|
rc=stpsrv_header('Content-type',
|
||||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
||||||
@@ -5686,7 +5843,7 @@ proc sql
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=TEXT %then %do;
|
%else %if &contentype=TEXT %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/text');
|
rc=stpsrv_header('Content-type','application/text');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -5699,7 +5856,7 @@ proc sql
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=CSV %then %do;
|
%else %if &contentype=CSV %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/csv');
|
rc=stpsrv_header('Content-type','application/csv');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -5729,7 +5886,8 @@ proc sql
|
|||||||
%mp_binarycopy(inloc="&inloc",outref=_webout)
|
%mp_binarycopy(inloc="&inloc",outref=_webout)
|
||||||
%end;
|
%end;
|
||||||
|
|
||||||
%mend;/**
|
%mend;
|
||||||
|
/**
|
||||||
@file
|
@file
|
||||||
@brief Runs arbitrary code for a specified amount of time
|
@brief Runs arbitrary code for a specified amount of time
|
||||||
@details Executes a series of procs and data steps to enable performance
|
@details Executes a series of procs and data steps to enable performance
|
||||||
@@ -5820,6 +5978,117 @@ quit;
|
|||||||
libname &lib clear;
|
libname &lib clear;
|
||||||
|
|
||||||
|
|
||||||
|
%mend;/**
|
||||||
|
@file mp_testservice.sas
|
||||||
|
@brief Will execute a test against a SASjs web service on SAS 9 or Viya
|
||||||
|
@details Prepares the input files and retrieves the resulting datasets from
|
||||||
|
the response JSON.
|
||||||
|
|
||||||
|
%mp_testjob(
|
||||||
|
duration=60*5
|
||||||
|
)
|
||||||
|
|
||||||
|
Note - the _webout fileref should NOT be assigned prior to running this macro.
|
||||||
|
|
||||||
|
@param [in] program The _PROGRAM endpoint to test
|
||||||
|
@param [in] inputfiles= A list of space seperated fileref:filename pairs as
|
||||||
|
follows:
|
||||||
|
inputfiles=inref:filename inref2:filename2
|
||||||
|
@param [in] debug= (log) Provide the _debug value
|
||||||
|
@param [out] outlib= (0) Output libref to contain the final tables. Set to
|
||||||
|
0 if the service output is not in JSON format.
|
||||||
|
@param [out] outref= (0) Output fileref to create, to contain the full _webout
|
||||||
|
response.
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_getuniquefileref.sas
|
||||||
|
@li mf_getuniquename.sas
|
||||||
|
|
||||||
|
@version 9.4
|
||||||
|
@author Allan Bowe
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
%macro mp_testservice(program,
|
||||||
|
inputfiles=,
|
||||||
|
debug=log,
|
||||||
|
outlib=0,
|
||||||
|
outref=0
|
||||||
|
)/*/STORE SOURCE*/;
|
||||||
|
|
||||||
|
/* parse the input files */
|
||||||
|
%local webcount i var;
|
||||||
|
%let webcount=%sysfunc(countw(&inputfiles));
|
||||||
|
%do i=1 %to &webcount;
|
||||||
|
%let var=%scan(&inputfiles,&i,%str( ));
|
||||||
|
%local webfref&i webname&i;
|
||||||
|
%let webref&i=%scan(&var,1,%str(:));
|
||||||
|
%let webname&i=%scan(&var,2,%str(:));
|
||||||
|
%end;
|
||||||
|
|
||||||
|
%local fref1 ;
|
||||||
|
%let fref1=%mf_getuniquefileref();
|
||||||
|
filename _webout "%sysfunc(pathname(work))/%mf_getuniquename().txt";
|
||||||
|
|
||||||
|
%local platform;
|
||||||
|
%let platform=%mf_getplatform();
|
||||||
|
%if &platform=SASMETA %then %do;
|
||||||
|
proc stp program="&program"
|
||||||
|
%do i=1 %to &webcount;
|
||||||
|
%if &webcount=1 %then %do;
|
||||||
|
_webin_fileref="&&webref&i"
|
||||||
|
_webin_name="&&webname&i"
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
_webin_fileref&i="&&webref&i"
|
||||||
|
_webin_name&i="&&webname&i"
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
_webin_file_count="&webcount"
|
||||||
|
_debug="&debug";
|
||||||
|
outputfile=_webout;
|
||||||
|
run;
|
||||||
|
|
||||||
|
data _null_;
|
||||||
|
infile _webout;
|
||||||
|
file &fref1;
|
||||||
|
input;
|
||||||
|
length line $10000;
|
||||||
|
if index(_infile_,'>>weboutBEGIN<<') then do;
|
||||||
|
line=tranwrd(_infile_,'>>weboutBEGIN<<','');
|
||||||
|
put line;
|
||||||
|
end;
|
||||||
|
else if index(_infile_,'>>weboutEND<<') then do;
|
||||||
|
line=tranwrd(_infile_,'>>weboutEND<<','');
|
||||||
|
put line;
|
||||||
|
stop;
|
||||||
|
end;
|
||||||
|
else put _infile_;
|
||||||
|
run;
|
||||||
|
data _null_;
|
||||||
|
infile &fref1;
|
||||||
|
input;
|
||||||
|
put _infile_;
|
||||||
|
run;
|
||||||
|
%if &outlib ne 0 %then %do;
|
||||||
|
libname &outlib json (&fref1);
|
||||||
|
%end;
|
||||||
|
%if &outref ne 0 %then %do;
|
||||||
|
filename &outref temp;
|
||||||
|
%mp_binarycopy(inref=_webout,outref=&outref)
|
||||||
|
%end;
|
||||||
|
filename _webout clear;
|
||||||
|
|
||||||
|
%end;
|
||||||
|
%else %if &platform=SASVIYA %then %do;
|
||||||
|
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
%put %str(ERR)OR: Unrecognised platform: &platform;
|
||||||
|
%end;
|
||||||
|
|
||||||
|
filename _webout clear;
|
||||||
|
|
||||||
%mend;/**
|
%mend;/**
|
||||||
@file mp_testwritespeedlibrary.sas
|
@file mp_testwritespeedlibrary.sas
|
||||||
@brief Tests the write speed of a new table in a SAS library
|
@brief Tests the write speed of a new table in a SAS library
|
||||||
@@ -6105,16 +6374,81 @@ alter table &libds modify &var char(&len);
|
|||||||
|
|
||||||
%mp_createconstraints(inds=&dsconst,outds=&dsconst._addd,execute=YES)
|
%mp_createconstraints(inds=&dsconst,outds=&dsconst._addd,execute=YES)
|
||||||
|
|
||||||
|
%mend;
|
||||||
|
/**
|
||||||
|
@file
|
||||||
|
@brief Used to validate variables in a dataset
|
||||||
|
@details Useful when sanitising inputs, to ensure that they arrive with a
|
||||||
|
certain pattern.
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
data test;
|
||||||
|
infile datalines4 dsd;
|
||||||
|
input;
|
||||||
|
libds=_infile_;
|
||||||
|
%mp_validatecol(libds,LIBDS,is_libds)
|
||||||
|
datalines4;
|
||||||
|
some.libname
|
||||||
|
!lib.blah
|
||||||
|
%abort
|
||||||
|
definite.ok
|
||||||
|
not.ok!
|
||||||
|
nineletrs._
|
||||||
|
;;;;
|
||||||
|
run;
|
||||||
|
|
||||||
|
@param [in] incol The column to be validated
|
||||||
|
@param [in] rule The rule to apply. Current rules:
|
||||||
|
@li LIBDS - matches LIBREF.DATASET format
|
||||||
|
@param [out] outcol The variable to create, with the results of the match
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_getuniquename.sas
|
||||||
|
|
||||||
|
@version 9.3
|
||||||
|
**/
|
||||||
|
|
||||||
|
%macro mp_validatecol(incol,rule,outcol);
|
||||||
|
|
||||||
|
/* tempcol is given a unique name with every invocation */
|
||||||
|
%local tempcol;
|
||||||
|
%let tempcol=%mf_getuniquename();
|
||||||
|
|
||||||
|
%if &rule=ISNUM %then %do;
|
||||||
|
/*
|
||||||
|
credit SØREN LASSEN
|
||||||
|
https://sasmacro.blogspot.com/2009/06/welcome-isnum-macro.html
|
||||||
|
*/
|
||||||
|
&tempcol=input(&incol,?? best32.);
|
||||||
|
if missing(&tempcol) then &outcol=0;
|
||||||
|
else &outcol=1;
|
||||||
|
drop &tempcol;
|
||||||
|
%end;
|
||||||
|
%else %if &rule=LIBDS %then %do;
|
||||||
|
/* match libref.dataset */
|
||||||
|
if _n_=1 then do;
|
||||||
|
retain &tempcol;
|
||||||
|
&tempcol=prxparse('/^[_a-z]\w{0,7}\.[_a-z]\w{0,31}$/i');
|
||||||
|
if missing(&tempcol) then do;
|
||||||
|
putlog "%str(ERR)OR: Invalid expression for LIBDS";
|
||||||
|
stop;
|
||||||
|
end;
|
||||||
|
drop &tempcol;
|
||||||
|
end;
|
||||||
|
if prxmatch(&tempcol, trim(&incol)) then &outcol=1;
|
||||||
|
else &outcol=0;
|
||||||
|
%end;
|
||||||
|
|
||||||
%mend;
|
%mend;
|
||||||
/**
|
/**
|
||||||
@file
|
@file
|
||||||
@brief Creates a zip file
|
@brief Creates a zip file
|
||||||
@details For DIRECTORY usage, will ignore subfolders. For DATASET usage,
|
@details For DIRECTORY usage, will ignore subfolders. For DATASET usage,
|
||||||
provide a column that contains the full file path to each file to be zipped.
|
provide a column that contains the full file path to each file to be zipped.
|
||||||
|
|
||||||
%mp_zip(in=myzips,type=directory,outname=myDir)
|
%mp_zip(in=myzips,type=directory,outname=myDir)
|
||||||
%mp_zip(in=/my/file/path.txt,type=FILE,outname=myFile)
|
%mp_zip(in=/my/file/path.txt,type=FILE,outname=myFile)
|
||||||
%mp_zip(in=SOMEDS,incol=FPATH,type=DATASET,outname=myFile)
|
%mp_zip(in=SOMEDS,incol=FPATH,type=DATASET,outname=myFile)
|
||||||
|
|
||||||
If you are sending zipped output to the _webout destination as part of an STP
|
If you are sending zipped output to the _webout destination as part of an STP
|
||||||
be sure that _debug is not set (else the SPWA will send non zipped content
|
be sure that _debug is not set (else the SPWA will send non zipped content
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
@file
|
@file
|
||||||
@brief Checks if a set of variables ALL exist in a data set.
|
@brief Checks if a set of variables ALL exist in a data set.
|
||||||
@details Returns 0 if ANY of the variables do not exist, or 1 if they ALL do.
|
@details Returns 0 if ANY of the variables do not exist, or 1 if they ALL do.
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
%put %mf_existVarList(sashelp.class, age sex name dummyvar)
|
%put %mf_existVarList(sashelp.class, age sex name dummyvar);
|
||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mf_abort.sas
|
@li mf_abort.sas
|
||||||
|
|||||||
145
base/mp_assertcols.sas
Normal file
145
base/mp_assertcols.sas
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
/**
|
||||||
|
@file
|
||||||
|
@brief Asserts the existence (or not) of columns
|
||||||
|
@details Useful in the context of writing sasjs tests. The results of the
|
||||||
|
test are _appended_ to the &outds. table.
|
||||||
|
|
||||||
|
Example usage:
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=name age sex,
|
||||||
|
test=ALL,
|
||||||
|
desc=check all columns exist
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=a b c,
|
||||||
|
test=NONE
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_assertcols(sashelp.class,
|
||||||
|
cols=age depth,
|
||||||
|
test=ANY
|
||||||
|
)
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_existds.sas
|
||||||
|
@li mf_existvarlist.sas
|
||||||
|
@li mf_getvarlist.sas
|
||||||
|
@li mf_wordsinstr1butnotstr2.sas
|
||||||
|
@li mp_abort.sas
|
||||||
|
|
||||||
|
|
||||||
|
@param [in] inds The input library.dataset to test for values
|
||||||
|
@param [in] cols= The list of columns to check for
|
||||||
|
@param [in] desc= (Testing observations) The user provided test description
|
||||||
|
@param [in] test= (ALL) The test to apply. Valid values are:
|
||||||
|
@li ALL - Test is a PASS if ALL columns exist in &inds
|
||||||
|
@li ANY - Test is a PASS if ANY of the columns exist in &inds
|
||||||
|
@li NONE - Test is a PASS if NONE of the columns exist in &inds
|
||||||
|
@param [out] outds= (work.test_results) The output dataset to contain the
|
||||||
|
results. If it does not exist, it will be created, with the following format:
|
||||||
|
|TEST_DESCRIPTION:$256|TEST_RESULT:$4|TEST_COMMENTS:$256|
|
||||||
|
|---|---|---|
|
||||||
|
|User Provided description|PASS|Column &inds contained ALL columns|
|
||||||
|
|
||||||
|
|
||||||
|
<h4> Related Macros </h4>
|
||||||
|
@li mp_assertdsobs.sas
|
||||||
|
@li mp_assertcolvals.sas
|
||||||
|
@li mp_assertdsobs.sas
|
||||||
|
|
||||||
|
@version 9.2
|
||||||
|
@author Allan Bowe
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
%macro mp_assertcols(inds,
|
||||||
|
cols=0,
|
||||||
|
test=ALL,
|
||||||
|
desc=0,
|
||||||
|
outds=work.test_results
|
||||||
|
)/*/STORE SOURCE*/;
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (&syscc ne 0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(syscc=&syscc - on macro entry)
|
||||||
|
)
|
||||||
|
|
||||||
|
%local lib ds ;
|
||||||
|
%let lib=%scan(&inds,1,%str(.));
|
||||||
|
%let ds=%scan(&inds,2,%str(.));
|
||||||
|
%let cols=%upcase(&cols);
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (%mf_existds(&lib..&ds)=0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(&lib..&ds not found!)
|
||||||
|
)
|
||||||
|
|
||||||
|
%mp_abort(iftrue= (&cols=0)
|
||||||
|
,mac=&sysmacroname
|
||||||
|
,msg=%str(No cols provided)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
%let test=%upcase(&test);
|
||||||
|
|
||||||
|
%if &test ne ANY and &test ne ALL and &test ne NONE %then %do;
|
||||||
|
%mp_abort(
|
||||||
|
mac=&sysmacroname,
|
||||||
|
msg=%str(Invalid test - &test)
|
||||||
|
)
|
||||||
|
%end;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* now do the actual test!
|
||||||
|
*/
|
||||||
|
%local result;
|
||||||
|
%if %mf_existVarList(&inds,&cols)=1 %then %let result=ALL;
|
||||||
|
%else %do;
|
||||||
|
%local targetcols compare;
|
||||||
|
%let targetcols=%upcase(%mf_getvarlist(&inds));
|
||||||
|
%let compare=%mf_wordsinstr1butnotstr2(
|
||||||
|
Str1=&cols,
|
||||||
|
Str2=&targetcols
|
||||||
|
);
|
||||||
|
%if %cmpres(&compare)=%cmpres(&cols) %then %let result=NONE;
|
||||||
|
%else %let result=SOME;
|
||||||
|
%end;
|
||||||
|
|
||||||
|
data;
|
||||||
|
length test_description $256 test_result $4 test_comments $256;
|
||||||
|
test_description=symget('desc');
|
||||||
|
if test_description='0'
|
||||||
|
then test_description="Testing &inds for existence of &test of: &cols";
|
||||||
|
|
||||||
|
test_result='FAIL';
|
||||||
|
test_comments="&sysmacroname: &inds has &result columns ";
|
||||||
|
%if &test=ALL %then %do;
|
||||||
|
%if &result=ALL %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %if &test=ANY %then %do;
|
||||||
|
%if &result=SOME %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %if &test=NONE %then %do;
|
||||||
|
%if &result=NONE %then %do;
|
||||||
|
test_result='PASS';
|
||||||
|
%end;
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
|
test_comments="&sysmacroname: Unsatisfied test condition - &test";
|
||||||
|
%end;
|
||||||
|
run;
|
||||||
|
|
||||||
|
%local ds;
|
||||||
|
%let ds=&syslast;
|
||||||
|
proc append base=&outds data=&ds;
|
||||||
|
run;
|
||||||
|
proc sql;
|
||||||
|
drop table &ds;
|
||||||
|
|
||||||
|
%mend;
|
||||||
@@ -141,18 +141,18 @@ data &outds;
|
|||||||
|
|
||||||
run;
|
run;
|
||||||
|
|
||||||
|
data _null_;
|
||||||
|
set &outds;
|
||||||
|
call symputx('REASON_CD',reason_cd,'l');
|
||||||
|
stop;
|
||||||
|
run;
|
||||||
|
|
||||||
|
%mp_abort(iftrue=(&abort=YES),
|
||||||
|
mac=&sysmacroname,
|
||||||
|
msg=%str(Filter issues in &inds, first was &reason_cd, details in &outds)
|
||||||
|
)
|
||||||
|
|
||||||
%if %mf_nobs(&outds)>0 %then %do;
|
%if %mf_nobs(&outds)>0 %then %do;
|
||||||
%if &abort=YES %then %do;
|
|
||||||
data _null_;
|
|
||||||
set &outds;
|
|
||||||
call symputx('REASON_CD',reason_cd,'l');
|
|
||||||
stop;
|
|
||||||
run;
|
|
||||||
%mp_abort(
|
|
||||||
mac=&sysmacroname,
|
|
||||||
msg=%str(Filter issues in &inds, first was &reason_cd, details in &outds)
|
|
||||||
)
|
|
||||||
%end;
|
|
||||||
%let syscc=1008;
|
%let syscc=1008;
|
||||||
%return;
|
%return;
|
||||||
%end;
|
%end;
|
||||||
|
|||||||
@@ -88,13 +88,14 @@ filename &outref temp;
|
|||||||
file &outref lrecl=32800;
|
file &outref lrecl=32800;
|
||||||
set &inds end=last;
|
set &inds end=last;
|
||||||
by SUBGROUP_ID;
|
by SUBGROUP_ID;
|
||||||
if _n_=1 then put '(';
|
if _n_=1 then put '((';
|
||||||
else if first.SUBGROUP_ID then put +1 GROUP_LOGIC '(';
|
else if first.SUBGROUP_ID then put +1 GROUP_LOGIC '(';
|
||||||
else put +2 SUBGROUP_LOGIC;
|
else put +2 SUBGROUP_LOGIC;
|
||||||
|
|
||||||
put +4 VARIABLE_NM OPERATOR_NM RAW_VALUE;
|
put +4 VARIABLE_NM OPERATOR_NM RAW_VALUE;
|
||||||
|
|
||||||
if last.SUBGROUP_ID then put ')'@;
|
if last.SUBGROUP_ID then put ')'@;
|
||||||
|
if last then put ')';
|
||||||
run;
|
run;
|
||||||
%end;
|
%end;
|
||||||
|
|
||||||
|
|||||||
@@ -36,8 +36,20 @@
|
|||||||
%let contentype=%upcase(&contenttype);
|
%let contentype=%upcase(&contenttype);
|
||||||
%local platform; %let platform=%mf_getplatform();
|
%local platform; %let platform=%mf_getplatform();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* check engine type to avoid the below err message:
|
||||||
|
* > Function is only valid for filerefs using the CACHE access method.
|
||||||
|
*/
|
||||||
|
%local streamweb;
|
||||||
|
%let streamweb=0;
|
||||||
|
data _null_;
|
||||||
|
set sashelp.vextfl(where=(upcase(fileref)="_WEBOUT"));
|
||||||
|
if xengine='STREAM' then call symputx('streamweb',1,'l');
|
||||||
|
run;
|
||||||
|
|
||||||
%if &contentype=ZIP %then %do;
|
%if &contentype=ZIP %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/zip');
|
rc=stpsrv_header('Content-type','application/zip');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -51,7 +63,7 @@
|
|||||||
%end;
|
%end;
|
||||||
%else %if &contentype=EXCEL %then %do;
|
%else %if &contentype=EXCEL %then %do;
|
||||||
/* suitable for XLS format */
|
/* suitable for XLS format */
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/vnd.ms-excel');
|
rc=stpsrv_header('Content-type','application/vnd.ms-excel');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -64,7 +76,7 @@
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=XLSX %then %do;
|
%else %if &contentype=XLSX %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type',
|
rc=stpsrv_header('Content-type',
|
||||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
||||||
@@ -79,7 +91,7 @@
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=TEXT %then %do;
|
%else %if &contentype=TEXT %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/text');
|
rc=stpsrv_header('Content-type','application/text');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -92,7 +104,7 @@
|
|||||||
%end;
|
%end;
|
||||||
%end;
|
%end;
|
||||||
%else %if &contentype=CSV %then %do;
|
%else %if &contentype=CSV %then %do;
|
||||||
%if &platform=SASMETA %then %do;
|
%if &platform=SASMETA and &streamweb=1 %then %do;
|
||||||
data _null_;
|
data _null_;
|
||||||
rc=stpsrv_header('Content-type','application/csv');
|
rc=stpsrv_header('Content-type','application/csv');
|
||||||
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
rc=stpsrv_header('Content-disposition',"attachment; filename=&outname");
|
||||||
@@ -122,4 +134,4 @@
|
|||||||
%mp_binarycopy(inloc="&inloc",outref=_webout)
|
%mp_binarycopy(inloc="&inloc",outref=_webout)
|
||||||
%end;
|
%end;
|
||||||
|
|
||||||
%mend;
|
%mend;
|
||||||
|
|||||||
65
base/mp_validatecol.sas
Normal file
65
base/mp_validatecol.sas
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
/**
|
||||||
|
@file
|
||||||
|
@brief Used to validate variables in a dataset
|
||||||
|
@details Useful when sanitising inputs, to ensure that they arrive with a
|
||||||
|
certain pattern.
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
data test;
|
||||||
|
infile datalines4 dsd;
|
||||||
|
input;
|
||||||
|
libds=_infile_;
|
||||||
|
%mp_validatecol(libds,LIBDS,is_libds)
|
||||||
|
datalines4;
|
||||||
|
some.libname
|
||||||
|
!lib.blah
|
||||||
|
%abort
|
||||||
|
definite.ok
|
||||||
|
not.ok!
|
||||||
|
nineletrs._
|
||||||
|
;;;;
|
||||||
|
run;
|
||||||
|
|
||||||
|
@param [in] incol The column to be validated
|
||||||
|
@param [in] rule The rule to apply. Current rules:
|
||||||
|
@li LIBDS - matches LIBREF.DATASET format
|
||||||
|
@param [out] outcol The variable to create, with the results of the match
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mf_getuniquename.sas
|
||||||
|
|
||||||
|
@version 9.3
|
||||||
|
**/
|
||||||
|
|
||||||
|
%macro mp_validatecol(incol,rule,outcol);
|
||||||
|
|
||||||
|
/* tempcol is given a unique name with every invocation */
|
||||||
|
%local tempcol;
|
||||||
|
%let tempcol=%mf_getuniquename();
|
||||||
|
|
||||||
|
%if &rule=ISNUM %then %do;
|
||||||
|
/*
|
||||||
|
credit SØREN LASSEN
|
||||||
|
https://sasmacro.blogspot.com/2009/06/welcome-isnum-macro.html
|
||||||
|
*/
|
||||||
|
&tempcol=input(&incol,?? best32.);
|
||||||
|
if missing(&tempcol) then &outcol=0;
|
||||||
|
else &outcol=1;
|
||||||
|
drop &tempcol;
|
||||||
|
%end;
|
||||||
|
%else %if &rule=LIBDS %then %do;
|
||||||
|
/* match libref.dataset */
|
||||||
|
if _n_=1 then do;
|
||||||
|
retain &tempcol;
|
||||||
|
&tempcol=prxparse('/^[_a-z]\w{0,7}\.[_a-z]\w{0,31}$/i');
|
||||||
|
if missing(&tempcol) then do;
|
||||||
|
putlog "%str(ERR)OR: Invalid expression for LIBDS";
|
||||||
|
stop;
|
||||||
|
end;
|
||||||
|
drop &tempcol;
|
||||||
|
end;
|
||||||
|
if prxmatch(&tempcol, trim(&incol)) then &outcol=1;
|
||||||
|
else &outcol=0;
|
||||||
|
%end;
|
||||||
|
|
||||||
|
%mend;
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
@file
|
@file
|
||||||
@brief Creates a zip file
|
@brief Creates a zip file
|
||||||
@details For DIRECTORY usage, will ignore subfolders. For DATASET usage,
|
@details For DIRECTORY usage, will ignore subfolders. For DATASET usage,
|
||||||
provide a column that contains the full file path to each file to be zipped.
|
provide a column that contains the full file path to each file to be zipped.
|
||||||
|
|
||||||
%mp_zip(in=myzips,type=directory,outname=myDir)
|
%mp_zip(in=myzips,type=directory,outname=myDir)
|
||||||
%mp_zip(in=/my/file/path.txt,type=FILE,outname=myFile)
|
%mp_zip(in=/my/file/path.txt,type=FILE,outname=myFile)
|
||||||
%mp_zip(in=SOMEDS,incol=FPATH,type=DATASET,outname=myFile)
|
%mp_zip(in=SOMEDS,incol=FPATH,type=DATASET,outname=myFile)
|
||||||
|
|
||||||
If you are sending zipped output to the _webout destination as part of an STP
|
If you are sending zipped output to the _webout destination as part of an STP
|
||||||
be sure that _debug is not set (else the SPWA will send non zipped content
|
be sure that _debug is not set (else the SPWA will send non zipped content
|
||||||
|
|||||||
@@ -17,7 +17,22 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"serviceConfig": {
|
"serviceConfig": {
|
||||||
"initProgram": "tests/testinit.sas"
|
"initProgram": "tests/testinit.sas",
|
||||||
|
"termProgram": "tests/testterm.sas",
|
||||||
|
"serviceFolders": [
|
||||||
|
"tests/base",
|
||||||
|
"tests/viya"
|
||||||
|
],
|
||||||
|
"macroVars": {
|
||||||
|
"mcTestAppLoc": "/Public/temp/macrocore"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"testConfig": {
|
||||||
|
"initProgram": "tests/testinit.sas",
|
||||||
|
"termProgram": "tests/testterm.sas",
|
||||||
|
"macroVars": {
|
||||||
|
"mcTestAppLoc": "/Public/temp/macrocore"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"defaultTarget": "viya",
|
"defaultTarget": "viya",
|
||||||
"targets": [
|
"targets": [
|
||||||
@@ -26,15 +41,6 @@
|
|||||||
"serverUrl": "https://sas.analytium.co.uk",
|
"serverUrl": "https://sas.analytium.co.uk",
|
||||||
"serverType": "SASVIYA",
|
"serverType": "SASVIYA",
|
||||||
"appLoc": "/Public/temp/macrocore",
|
"appLoc": "/Public/temp/macrocore",
|
||||||
"serviceConfig": {
|
|
||||||
"serviceFolders": [
|
|
||||||
"tests/base",
|
|
||||||
"tests/viya"
|
|
||||||
],
|
|
||||||
"macroVars": {
|
|
||||||
"mcTestAppLoc": "/Public/temp/macrocore"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"deployConfig": {
|
"deployConfig": {
|
||||||
"deployServicePack": true
|
"deployServicePack": true
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -30,7 +30,3 @@ run;
|
|||||||
test=ALLVALS
|
test=ALLVALS
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
%webout(OPEN)
|
|
||||||
%webout(OBJ, TEST_RESULTS)
|
|
||||||
%webout(CLOSE)
|
|
||||||
@@ -125,8 +125,3 @@ run;
|
|||||||
outds=work.test_results
|
outds=work.test_results
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%webout(OPEN)
|
|
||||||
%webout(OBJ, TEST_RESULTS)
|
|
||||||
%webout(CLOSE)
|
|
||||||
@@ -120,7 +120,3 @@ run;
|
|||||||
outds=work.test_results
|
outds=work.test_results
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
%webout(OPEN)
|
|
||||||
%webout(OBJ, TEST_RESULTS)
|
|
||||||
%webout(CLOSE)
|
|
||||||
@@ -66,7 +66,3 @@ run;
|
|||||||
outds=work.test_results
|
outds=work.test_results
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
%webout(OPEN)
|
|
||||||
%webout(OBJ, TEST_RESULTS)
|
|
||||||
%webout(CLOSE)
|
|
||||||
62
tests/base/mp_validatecol.test.sas
Normal file
62
tests/base/mp_validatecol.test.sas
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
/**
|
||||||
|
@file
|
||||||
|
@brief Testing mp_validatecol.sas macro
|
||||||
|
|
||||||
|
<h4> SAS Macros </h4>
|
||||||
|
@li mp_assertdsobs.sas
|
||||||
|
@li mp_validatecol.sas
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test 1 - LIBDS
|
||||||
|
*/
|
||||||
|
data test1;
|
||||||
|
infile datalines4 dsd;
|
||||||
|
input;
|
||||||
|
libds=_infile_;
|
||||||
|
%mp_validatecol(libds,LIBDS,is_libds)
|
||||||
|
if libds=1;
|
||||||
|
datalines4;
|
||||||
|
some.libname
|
||||||
|
!lib.blah
|
||||||
|
%abort
|
||||||
|
definite.ok
|
||||||
|
not.ok!
|
||||||
|
nineletrs._
|
||||||
|
;;;;
|
||||||
|
run;
|
||||||
|
%mp_assertdsobs(work.test1,
|
||||||
|
desc=Testing LIBDS,
|
||||||
|
test=EQUALS 2,
|
||||||
|
outds=work.test_results
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test 2 - ISNUM
|
||||||
|
*/
|
||||||
|
data test2;
|
||||||
|
infile datalines4 dsd;
|
||||||
|
input;
|
||||||
|
infile=_infile_;
|
||||||
|
%mp_validatecol(infile,ISNUM,is_numeric)
|
||||||
|
if is_numeric=1;
|
||||||
|
datalines4;
|
||||||
|
1
|
||||||
|
0001
|
||||||
|
1e6
|
||||||
|
-44
|
||||||
|
above are good
|
||||||
|
the rest are bad
|
||||||
|
%abort
|
||||||
|
1&somethingverybad.
|
||||||
|
&
|
||||||
|
+-1
|
||||||
|
;;;;
|
||||||
|
run;
|
||||||
|
%mp_assertdsobs(work.test2,
|
||||||
|
desc=Test2 - ISNUM,
|
||||||
|
test=EQUALS 4,
|
||||||
|
outds=work.test_results
|
||||||
|
)
|
||||||
9
tests/testterm.sas
Normal file
9
tests/testterm.sas
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/**
|
||||||
|
@file
|
||||||
|
@brief term file for tests
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
%webout(OPEN)
|
||||||
|
%webout(OBJ, TEST_RESULTS)
|
||||||
|
%webout(CLOSE)
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mv_createwebservice.sas
|
@li mv_createwebservice.sas
|
||||||
|
@li mv_getjobcode.sas
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
@@ -21,4 +22,20 @@ run;
|
|||||||
path=&mcTestAppLoc/tests/macros,
|
path=&mcTestAppLoc/tests/macros,
|
||||||
code=testref,
|
code=testref,
|
||||||
name=mv_createwebservice
|
name=mv_createwebservice
|
||||||
)
|
)
|
||||||
|
|
||||||
|
filename compare temp;
|
||||||
|
%mv_getjobcode(
|
||||||
|
path=&mcTestAppLoc/tests/macros
|
||||||
|
,name=mv_createwebservice
|
||||||
|
,outref=compare;
|
||||||
|
)
|
||||||
|
|
||||||
|
data test_results;
|
||||||
|
length test_description $256 test_result $4 test_comments $256;
|
||||||
|
infile compare;
|
||||||
|
input;
|
||||||
|
if _infile_='01'x then test_result='PASS';
|
||||||
|
else test_result='FAIL';
|
||||||
|
test_description="Creating web service with invisible character";
|
||||||
|
run;
|
||||||
Reference in New Issue
Block a user