@nsshunt/ststestrunner 1.0.58 → 1.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ststestrunner.mjs
CHANGED
|
@@ -12812,6 +12812,10 @@ class TestCaseFhirBase {
|
|
|
12812
12812
|
}
|
|
12813
12813
|
console.log(`Finished load for VU: [${VU}]`);
|
|
12814
12814
|
console.log(chalk$1.magenta(`StartTestDataLoad(): End`));
|
|
12815
|
+
console.log(__privateGet(this, _randomDataRecordset));
|
|
12816
|
+
console.log(__privateGet(this, _randomDataRecordset).length);
|
|
12817
|
+
console.log(VU);
|
|
12818
|
+
await Sleep(1e4);
|
|
12815
12819
|
});
|
|
12816
12820
|
__privateAdd(this, _ForcePublishTelemetryData2, async () => {
|
|
12817
12821
|
await __privateGet(this, _PublishTelemetryData2).call(this);
|
|
@@ -13275,7 +13279,7 @@ class TestCaseFhir02 extends TestCaseFhirBase {
|
|
|
13275
13279
|
}
|
|
13276
13280
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13277
13281
|
console.log(`***************************************************************`);
|
|
13278
|
-
console.log(`ID: [${personRecord.id}]`);
|
|
13282
|
+
console.log(`case 02 ID: [${personRecord.id}]`);
|
|
13279
13283
|
try {
|
|
13280
13284
|
const retVal = await this.fhirClient.CreateResource("Person", personRecord, (error) => {
|
|
13281
13285
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|
|
@@ -13315,7 +13319,7 @@ class TestCaseFhir03 extends TestCaseFhirBase {
|
|
|
13315
13319
|
}
|
|
13316
13320
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13317
13321
|
console.log(`***************************************************************`);
|
|
13318
|
-
console.log(`ID: [${personRecord.id}]`);
|
|
13322
|
+
console.log(`case 03 ID: [${personRecord.id}]`);
|
|
13319
13323
|
const retVal = await this.fhirClient.GetResource("Person", personRecord.id, null, (error) => {
|
|
13320
13324
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|
|
13321
13325
|
this.runner.instrumentData.errorCount++;
|
|
@@ -13543,6 +13547,8 @@ class TestCaseFhir09 extends TestCaseFhirBase {
|
|
|
13543
13547
|
this.runner.instrumentData.message.push(chalk$1.green(`Iteration: [${iteration} #authUtilsNode(): Agent Reset`));
|
|
13544
13548
|
}
|
|
13545
13549
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13550
|
+
console.log(`***************************************************************`);
|
|
13551
|
+
console.log(`case 09 ID: [${personRecord.id}]`);
|
|
13546
13552
|
if (personRecord.text) {
|
|
13547
13553
|
await this.fhirClient.DeleteResource("Person", personRecord.id, (error) => {
|
|
13548
13554
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|