View Issue Details

IDProjectCategoryView StatusLast Update
0009138CTT UA Scripts4 - Test Case Definitionpublic2023-10-12 15:35
ReporterGigantic Heisenberg Assigned ToYannik Klaass  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Platformx86_64OSWindows 10 
Product Version1.03.500 
Fixed in Version1.03.505 
Summary0009138: session_minimum_500_parallel_001
Description

in initialize.js
if (Settings.ServerTest.Capabilities.MaxSupportedSessions < MAX_SESSIONS) {
addSkipped("This conformance unit requires a minimum of 500 sessions. As only " + Settings.ServerTest.Capabilities.MaxSupportedSessions + "are configured the conformance unit is skipped.");
stopCurrentUnit();
}

should be

if (Settings.ServerTest.Capabilities.MaxSupportedSessions < MAX_SESSIONS && Settings.ServerTest.Capabilities.MaxSupportedSessions > 0 ){
addSkipped("This conformance unit requires a minimum of 500 sessions. As only " + Settings.ServerTest.Capabilities.MaxSupportedSessions + "are configured the conformance unit is skipped.");
stopCurrentUnit();
}

because 0 means no limit i.e. >500

Steps To Reproduce

excute test with max supported sessions =0 configured

TagsNo tags attached.
Files Affected

/maintree/Session Services/Session Minimum 500 Parallel/Test Cases/initialize.js

Activities

Yannik Klaass

2023-10-11 15:17

developer   ~0020128

Changing code to not skip the CU when MaxSupportedSessions is set to no limit

Paul Hunkar

2023-10-12 15:35

administrator   ~0020157

reviewed changes in call, agreed to changes, closed i

Issue History

Date Modified Username Field Change
2023-09-08 15:05 Gigantic Heisenberg New Issue
2023-09-28 13:14 Paul Hunkar Assigned To => Alexander Allmendinger
2023-09-28 13:14 Paul Hunkar Status new => assigned
2023-10-10 15:06 Yannik Klaass Files Affected => /maintree/Session Services/Session Minimum 500 Parallel/Test Cases/initialize.js
2023-10-10 15:07 Yannik Klaass Assigned To Alexander Allmendinger => Yannik Klaass
2023-10-11 15:17 Yannik Klaass Status assigned => resolved
2023-10-11 15:17 Yannik Klaass Resolution open => fixed
2023-10-11 15:17 Yannik Klaass Note Added: 0020128
2023-10-12 15:35 Paul Hunkar Project CTT UA Test Case => CTT UA Scripts
2023-10-12 15:35 Paul Hunkar Status resolved => closed
2023-10-12 15:35 Paul Hunkar Fixed in Version => 1.03.505
2023-10-12 15:35 Paul Hunkar Note Added: 0020157