Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c387a633bb | |||
| 99efc2d5fe | |||
| e146b7741d | |||
| 02866cbe8d | |||
| 7a320d27a3 | |||
| 7910f9a856 | |||
| 05194609fe | |||
| eb0ec04199 | |||
| ffd5eb2e52 | |||
| c432079a70 |
880
package-lock.json
generated
880
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@apiglobal/test-sdk",
|
"name": "@apiglobal/test-sdk",
|
||||||
"version": "1.0.21",
|
"version": "1.0.26",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "an sdk for testing ag handlers",
|
"description": "an sdk for testing ag handlers",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@@ -23,6 +23,7 @@
|
|||||||
"@apiglobal/sdk": "^1.0.13",
|
"@apiglobal/sdk": "^1.0.13",
|
||||||
"@apiglobal/typedrequest": "^1.0.43",
|
"@apiglobal/typedrequest": "^1.0.43",
|
||||||
"@apiglobal/typedrequest-interfaces": "^1.0.15",
|
"@apiglobal/typedrequest-interfaces": "^1.0.15",
|
||||||
|
"@pushrocks/qenv": "^4.0.10",
|
||||||
"@pushrocks/smartexpress": "^3.0.76",
|
"@pushrocks/smartexpress": "^3.0.76",
|
||||||
"@pushrocks/smartobject": "^1.0.4"
|
"@pushrocks/smartobject": "^1.0.4"
|
||||||
},
|
},
|
||||||
|
|||||||
18
ts/index.ts
18
ts/index.ts
@@ -1,18 +1,24 @@
|
|||||||
import * as plugins from './test-sdk.plugins';
|
import * as plugins from './test-sdk.plugins';
|
||||||
import { AgTestServer } from './test-sdk.classes.testserver';
|
import { AgTestServer } from './test-sdk.classes.testserver';
|
||||||
|
import { AAgHandler } from '@apiglobal/sdk';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
AgTestServer
|
AgTestServer
|
||||||
};
|
};
|
||||||
|
|
||||||
let testServer: AgTestServer;
|
let testServer: AgTestServer;
|
||||||
export const createTestServer = async (handlerArg: { new(envHandler: plugins.agSdk.AgEnvironment): plugins.agSdk.AAgHandler<any> }) => {
|
let handler: AAgHandler<any>;
|
||||||
|
export const createTestServer = async (handlerArg: { new(envManagerArg: plugins.agSdk.AgEnvironment): plugins.agSdk.AAgHandler<any> }) => {
|
||||||
class AgEnvironement extends plugins.agSdk.AgEnvironment {
|
class AgEnvironement extends plugins.agSdk.AgEnvironment {
|
||||||
|
public qenv = new plugins.qenv.Qenv('./', './.nogit');
|
||||||
public async getEnvVar(nameArg: string) {
|
public async getEnvVar(nameArg: string) {
|
||||||
return '';
|
return this.qenv.getEnvVarOnDemand(nameArg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
testServer = new AgTestServer(new handlerArg(new AgEnvironement()));
|
handler = new handlerArg(new AgEnvironement());
|
||||||
|
console.log(`now checking requirements for handler with slug ${handler.slug}...`);
|
||||||
|
await handler.checkRequirements();
|
||||||
|
testServer = new AgTestServer(handler);
|
||||||
await testServer.start();
|
await testServer.start();
|
||||||
return testServer;
|
return testServer;
|
||||||
};
|
};
|
||||||
@@ -57,6 +63,11 @@ export const testFire = <
|
|||||||
throwErrorBool = true;
|
throwErrorBool = true;
|
||||||
}
|
}
|
||||||
if (throwErrorBool) {
|
if (throwErrorBool) {
|
||||||
|
console.log('Result: response did not comply');
|
||||||
|
console.log('-> expected:');
|
||||||
|
console.log(expectedResponseArg);
|
||||||
|
console.log('-> but actually received:');
|
||||||
|
console.log(actualResponse);
|
||||||
throw new Error('response did not comply');
|
throw new Error('response did not comply');
|
||||||
}
|
}
|
||||||
return actualResponse;
|
return actualResponse;
|
||||||
@@ -69,5 +80,6 @@ export const testFire = <
|
|||||||
export const stopTestServer = async () => {
|
export const stopTestServer = async () => {
|
||||||
if (testServer) {
|
if (testServer) {
|
||||||
await testServer.stop();
|
await testServer.stop();
|
||||||
|
await handler.stop();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
|
|||||||
export { agSdk, typedrequest, typedrequestInterfaces };
|
export { agSdk, typedrequest, typedrequestInterfaces };
|
||||||
|
|
||||||
// pushrocks scope
|
// pushrocks scope
|
||||||
|
import * as qenv from '@pushrocks/qenv';
|
||||||
import * as smartexpress from '@pushrocks/smartexpress';
|
import * as smartexpress from '@pushrocks/smartexpress';
|
||||||
import * as smartobject from '@pushrocks/smartobject';
|
import * as smartobject from '@pushrocks/smartobject';
|
||||||
|
|
||||||
export { smartexpress, smartobject };
|
export { qenv, smartexpress, smartobject };
|
||||||
|
|||||||
Reference in New Issue
Block a user