View Issue Details

IDProjectCategoryView StatusLast Update
0003955Compliance Test Tool (CTT) Unified Architecture1 - Script Issuepublic2019-05-27 14:32
ReporterAlexander Allmendinger Assigned ToAlexander Allmendinger  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.03.340.355 
Target Version1.03Fixed in Version1.03.340.355 
Summary0003955: Attribute Services/Attribute Read/Err-008 Doesn't work if MaxNodesPerRead is 0 (unlimited)
Description

The script takes the OperationLimits.MaxNodesPerRead into consideration but stops the for-loops immediately if the MaxNodesPerRead is set to 0 (unlimited).

Steps To Reproduce

Run the Script against a Server which has OperationLimits.MaxNodesPerRead set to 0.

Additional Information

Old:
for (i = 0; ( i < goodNodes.length ) && ( i < gServerCapabilities.OperationLimits.MaxNodesPerRead / 3 ); i++ ) {

Needs to be changed to
for (i = 0; (i < invalidNodes.length) && ((i < gServerCapabilities.OperationLimits.MaxNodesPerRead / 3) || gServerCapabilities.OperationLimits.MaxNodesPerRead == 0); i++) {

TagsNo tags attached.
Files Affected

Activities

Alexander Allmendinger

2017-09-18 19:19

developer   ~0008467

Followed suggestion

Paul Hunkar

2019-05-27 14:32

administrator   ~0010270

reviewed in extra Compliance call 2019-05-27

Issue History

Date Modified Username Field Change
2017-09-18 17:33 Alexander Allmendinger New Issue
2017-09-18 17:33 Alexander Allmendinger Status new => assigned
2017-09-18 17:33 Alexander Allmendinger Assigned To => Alexander Allmendinger
2017-09-18 19:19 Alexander Allmendinger Note Added: 0008467
2017-09-18 19:19 Alexander Allmendinger Status assigned => resolved
2017-09-18 19:19 Alexander Allmendinger Fixed in Version => 1.03.340.355
2017-09-18 19:19 Alexander Allmendinger Resolution open => fixed
2019-01-28 14:10 Paul Hunkar Category Script Issue => 1 - Script Issue
2019-05-27 14:32 Paul Hunkar Status resolved => closed
2019-05-27 14:32 Paul Hunkar Note Added: 0010270