diff --git a/package-lock.json b/package-lock.json index db19c86..bb09024 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1395,6 +1395,64 @@ "symbol-tree": "^3.2.4" } }, + "@pushrocks/qenv": { + "version": "4.0.10", + "resolved": "https://verdaccio.lossless.one/@pushrocks%2fqenv/-/qenv-4.0.10.tgz", + "integrity": "sha512-bQknJrGa9zXDTmohi2W0fi/gZ5H36J1138WsRgdR2u/9D/0gwjBasL0kqBokH9sddcLSYe/H9itGFxbT7i7MCg==", + "requires": { + "@pushrocks/smartfile": "^7.0.12", + "@pushrocks/smartlog": "^2.0.26" + }, + "dependencies": { + "@pushrocks/smartfile": { + "version": "7.0.12", + "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartfile/-/smartfile-7.0.12.tgz", + "integrity": "sha512-/4T4K07WqOXGvQQ/VFyRMUd8kN1RdqQgmrqHjZE/vMDLz7RYsqU9FlEN6OGX1G1E6pR9IdHnT4ClXPlvzClHYg==", + "requires": { + "@pushrocks/smarthash": "^2.1.6", + "@pushrocks/smartmime": "^1.0.3", + "@pushrocks/smartpath": "^4.0.1", + "@pushrocks/smartpromise": "^3.0.6", + "@pushrocks/smartrequest": "^1.1.47", + "@types/fs-extra": "^8.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "js-yaml": "^3.13.1" + } + }, + "@types/fs-extra": { + "version": "8.1.1", + "resolved": "https://verdaccio.lossless.one/@types%2ffs-extra/-/fs-extra-8.1.1.tgz", + "integrity": "sha512-TcUlBem321DFQzBNuz8p0CLLKp0VvF/XH9E4KHNmgwyp4E3AfgI5cjiIVZWlbfThBop2qxFIh4+LeY6hVWWZ2w==", + "requires": { + "@types/node": "*" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://verdaccio.lossless.one/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://verdaccio.lossless.one/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://verdaccio.lossless.one/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, "@pushrocks/smartbrowser": { "version": "1.0.17", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartbrowser/-/smartbrowser-1.0.17.tgz", @@ -1583,7 +1641,6 @@ "version": "2.0.39", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartlog/-/smartlog-2.0.39.tgz", "integrity": "sha512-fHCoBLwKM+F3jN5nZH6QEcEVWtgyESN+ysT9KLxmM/wrhIibG98yLxp6kwfZZbv6aKmHWbtKEvBmv+Vd4Hfwlg==", - "dev": true, "requires": { "@pushrocks/isounique": "^1.0.4", "@pushrocks/smartlog-interfaces": "^2.0.20" @@ -1604,7 +1661,6 @@ "version": "2.0.22", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartlog-interfaces/-/smartlog-interfaces-2.0.22.tgz", "integrity": "sha512-blvtNLgYz08F5EhftxfzLEkQ3VE9uoXRVQukbVpwJ4Zk0QRkNg2VCkuJu/kkfbtlCEOEOG2HCZDyhbxeEeq0pA==", - "dev": true, "requires": { "@apiglobal/typedrequest-interfaces": "^1.0.15" } diff --git a/package.json b/package.json index b610e88..1ba3f18 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "@apiglobal/sdk": "^1.0.13", "@apiglobal/typedrequest": "^1.0.43", "@apiglobal/typedrequest-interfaces": "^1.0.15", + "@pushrocks/qenv": "^4.0.10", "@pushrocks/smartexpress": "^3.0.76", "@pushrocks/smartobject": "^1.0.4" }, diff --git a/ts/index.ts b/ts/index.ts index 7e981a3..1dbdd53 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -8,8 +8,9 @@ export { let testServer: AgTestServer; export const createTestServer = async (handlerArg: { new(envHandler: plugins.agSdk.AgEnvironment): plugins.agSdk.AAgHandler }) => { class AgEnvironement extends plugins.agSdk.AgEnvironment { + public qenv = new plugins.qenv.Qenv('./', './.nogit'); public async getEnvVar(nameArg: string) { - return ''; + return this.qenv.getEnvVarOnDemand(nameArg); } } testServer = new AgTestServer(new handlerArg(new AgEnvironement())); diff --git a/ts/test-sdk.plugins.ts b/ts/test-sdk.plugins.ts index 0ed3462..7a45539 100644 --- a/ts/test-sdk.plugins.ts +++ b/ts/test-sdk.plugins.ts @@ -6,7 +6,8 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces'; export { agSdk, typedrequest, typedrequestInterfaces }; // pushrocks scope +import * as qenv from '@pushrocks/qenv'; import * as smartexpress from '@pushrocks/smartexpress'; import * as smartobject from '@pushrocks/smartobject'; -export { smartexpress, smartobject }; +export { qenv, smartexpress, smartobject };