Jenner compatibility tests for 3 SAS service(s)#423
Open
lwsinclair wants to merge 1 commit into
Open
Conversation
Adds jenner-check/ with one bundle per SASjs service, each runnable against
the Jenner API (api.jenneranalytics.com) and reproducible via the bundled
run_jenner runner (.sh/.bat/.sas):
- t001_serviceinit_springs serviceinit.sas — builds mydb.springs (1587 rows
of DATALINES4) + a PROC SQL group-by roll-up
- t002_appinit_distinct_areas appinit.sas — PROC SQL SELECT DISTINCT area
- t003_getdata_filter_by_area getdata.sas — PROC SQL WHERE area IN (subquery)
Each bundle ships script.sas + autoexec.sas + an expected/ snapshot (log,
listing, dataset URLs) and expected.json pins. The %webout adapter calls are
surfaced with PROC PRINT so the service SQL runs standalone.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Jenneranalytics.com provides an API that runs SAS code, with support for more than 200 SAS procedures. You can also use it with Anthropic Claude Code AI in a collaborative workspace. It's available for Mac on the Apple App Store, and by license for Windows and Linux. The SAS services in this seed app run on it directly — this PR adds a few self-contained bundles so you can watch your own service code execute end to end.
Each directory holds the adapted
script.sas, anautoexec.sas, and anexpected/snapshot of the captured run. Run them withcd jenner-check && ./run_jenner.sh --all, post a singlescript.saswithcurl, or paste one into the hosted workspace. The%weboutcalls belong to the@sasjs/adapterruntime rather than Base SAS, so each bundle surfaces its result with aPROC PRINTin their place; the service SQL is unchanged.One thing that stood out: shipping the full springs reference dataset inline as
DATALINES4inserviceinit.saslets the seed app bootstrap with zero external data, and the three-service split — init builds the data,appinitlists the areas,getdatafilters by selection — is a clean separation that maps neatly onto the frontend flow.No response needed — merge, close, or ignore as you see fit. To opt out of future PRs like this, comment
no-more-prsor open an issue titledjenner-check: opt out.