mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 10:40:06 +00:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { parseSourceCode } from '../../utils/index'
|
|
|
|
it('should parse SAS9 source code', async (done) => {
|
|
expect(sampleResponse).toBeTruthy()
|
|
|
|
const parsedSourceCode = parseSourceCode(sampleResponse)
|
|
|
|
expect(parsedSourceCode).toBeTruthy()
|
|
|
|
const sourceCodeLines = parsedSourceCode.split('\r\n')
|
|
|
|
expect(sourceCodeLines.length).toEqual(5)
|
|
expect(sourceCodeLines[0].startsWith('6')).toBeTruthy()
|
|
expect(sourceCodeLines[1].startsWith('7')).toBeTruthy()
|
|
expect(sourceCodeLines[2].startsWith('8')).toBeTruthy()
|
|
expect(sourceCodeLines[3].startsWith('9')).toBeTruthy()
|
|
expect(sourceCodeLines[4].startsWith('10')).toBeTruthy()
|
|
|
|
done()
|
|
})
|
|
|
|
/* tslint:disable */
|
|
const sampleResponse = `<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
|
|
6 @file mm_webout.sas
|
|
7 @brief Send data to/from SAS Stored Processes
|
|
8 @details This macro should be added to the start of each Stored Process,
|
|
9 **immediately** followed by a call to:
|
|
10 %webout(OPEN)
|
|
MPRINT(MM_WEBIN): ;
|
|
MPRINT(MM_WEBLEFT): filename _temp temp lrecl=999999;
|
|
MPRINT(MM_WEBOUT): data _null_;
|
|
MPRINT(MM_WEBRIGHT): file _temp;
|
|
MPRINT(MM_WEBOUT): if upcase(symget('_debug'))='LOG' then put '>>weboutBEGIN<<';
|
|
`
|
|
/* tslint:enable */
|