View Issue Details

IDProjectCategoryView StatusLast Update
0009872Compliance Test Tool (CTT) Unified Architecture1 - Script Issuepublic2024-10-08 07:06
ReporterThomas Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Summary0009872: Attribute Client Read Base Err-025-01 and 02 don't modify the response size value
Description

Both of the tests (Err-025-01 and 02) do not seem to modify the response size value.
It looks like an equals sign has been missed from the test. We verified below proposed change by observed CTT behavior in Wireshark.

I believe Err-025-01 should be like this:

// Increase the number of results by 1
function readResponseErr02501(request, response) {

response.Results.length += 1;
response.Results[response.Results.length - 1] = response.Results[response.Results.length - 2];

}

And also I think Err-025-02 should be:

// Decrease the number of results by 1
function readResponseErr02502(request, response) {

response.Results.length -= 1;

}

TagsNo tags attached.
Files Affected

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2024-10-08 07:06 Thomas New Issue