View Issue Details

IDProjectCategoryView StatusLast Update
0004083Compliance Test Tool (CTT) Unified Architecture1 - Script Issuepublic2019-09-01 13:55
ReporterBernd Edlinger Assigned ToAlexander Allmendinger  
PrioritynormalSeverityminorReproducibilityhave not tried
Status closedResolutionfixed 
PlatformPCOSWindowsOS Version8.1
Product Version1.03.340.378 
Target Version1.03Fixed in Version1.03 
Summary0004083: OperationLimits.MaxNodesPerRead not working
Description

This setting is ignored (set to zero) when the test starts,
because the script library/Base/serverCapabilities.js
uses toInt32 unstead of toUInt32 here:

diff --git a/library/Base/serverCapabilities.js b/library/Base/serverCapabilities.js
index 5046f2b..138f45f 100644
--- a/library/Base/serverCapabilities.js
+++ b/library/Base/serverCapabilities.js
@@ -111,7 +111,7 @@ gServerCapabilities = {

         // operation limits
         this.OperationLimits = new Object();
  • this.OperationLimits.MaxNodesPerRead = items[11].Value.Value.toInt32();
  • this.OperationLimits.MaxNodesPerRead = items[11].Value.Value.toUInt32();
    this.OperationLimits.MaxNodesPerHistoryReadData = items[12].Value.Value.toUInt32();
    this.OperationLimits.MaxNodesPerHistoryReadEvents = items[13].Value.Value.toUInt32();
    this.OperationLimits.MaxNodesPerWrite = items[14].Value.Value.toUInt32();
TagsNo tags attached.
Files Affected

Relationships

related to 0004057 closedYannik Klaass CTT UA Scripts Server limitations specified in Server_ServerCapabilites_OperationLimits are not used in CTT tests 

Activities

Bernd Edlinger

2017-12-06 08:24

reporter   ~0008767

BTW: the read request on the server limits reads 44 items in parallel.
We had to increase the NanoServer limits from 30 which was sufficient
with other clients so far.

Alexander Allmendinger

2018-02-07 20:47

developer   ~0008858

Fixed in order to use UInt32 instead of Int32 as recommended by Bernd Edlinger.

Paul Hunkar

2019-09-01 13:55

administrator   ~0010877

Reviewed in extra CMP call

Issue History

Date Modified Username Field Change
2017-12-06 08:03 Bernd Edlinger New Issue
2017-12-06 08:03 Bernd Edlinger Status new => assigned
2017-12-06 08:03 Bernd Edlinger Assigned To => Alexander Allmendinger
2017-12-06 08:24 Bernd Edlinger Note Added: 0008767
2017-12-07 16:36 Paul Hunkar Target Version => 1.03
2017-12-07 16:44 Paul Hunkar Relationship added related to 0004057
2018-02-07 20:47 Alexander Allmendinger Note Added: 0008858
2018-02-07 20:47 Alexander Allmendinger Status assigned => resolved
2018-02-07 20:47 Alexander Allmendinger Fixed in Version => 1.03
2018-02-07 20:47 Alexander Allmendinger Resolution open => fixed
2019-01-28 14:10 Paul Hunkar Category Script Issue => 1 - Script Issue
2019-09-01 13:55 Paul Hunkar Status resolved => closed
2019-09-01 13:55 Paul Hunkar Note Added: 0010877