From 3f373cc243adffa0ca0a64c24cd6617fbd511646 Mon Sep 17 00:00:00 2001 From: ETHGRY <gyorgy.rethy@ericsson.com> Date: Fri, 14 Feb 2020 11:53:24 +0100 Subject: [PATCH] Product number and magic string added to headers --- IFW_CoAP_Peer_Definitions.ttcn | 6 ++--- IFW_CoAP_Peer_Functions.ttcn | 38 ++++++++++++++++++++++++------- IFW_CoAP_Peer_TestSteps.ttcn | 6 ++--- IFW_Common.ttcn | 6 ++--- IFW_HTTP_Client_Definitions.ttcn | 6 ++--- IFW_HTTP_Client_Functions.ttcn | 23 +++++++++++++------ IFW_HTTP_Client_TestSteps.ttcn | 6 ++--- IFW_HTTP_Server_Definitions.ttcn | 6 ++--- IFW_HTTP_Server_Functions.ttcn | 6 ++--- IFW_HTTP_Server_TestSteps.ttcn | 6 ++--- IFW_MQTT_Client_Definitions.ttcn | 6 ++--- IFW_MQTT_Client_Functions.ttcn | 23 +++++++++++++------ IFW_MQTT_Client_TestSteps.ttcn | 6 ++--- IoT_FT_Framework_Definitions.ttcn | 6 ++--- IoT_FT_Framework_Functions.ttcn | 6 ++--- tests/CoapTestSuite_Etsi.ttcn | 6 ++--- tests/CoapTestSuite_Fw.ttcn | 6 ++--- tests/LeshanTestSuite.ttcn | 6 ++--- tests/Lwm2mTestSuite.ttcn | 6 ++--- tests/MqttTestSuite_Interop.ttcn | 6 ++--- 20 files changed, 113 insertions(+), 73 deletions(-) diff --git a/IFW_CoAP_Peer_Definitions.ttcn b/IFW_CoAP_Peer_Definitions.ttcn index c039b0b..e5f9d96 100644 --- a/IFW_CoAP_Peer_Definitions.ttcn +++ b/IFW_CoAP_Peer_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_Definitions diff --git a/IFW_CoAP_Peer_Functions.ttcn b/IFW_CoAP_Peer_Functions.ttcn index 23b3f9c..e7aacfb 100644 --- a/IFW_CoAP_Peer_Functions.ttcn +++ b/IFW_CoAP_Peer_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_Functions @@ -22,11 +22,33 @@ module IFW_CoAP_Peer_Functions import from IPL4asp_PortType all; import from IFW_Common all; - modulepar - { - float tsp_CoapPeer_maxResponseTime := 0.0; - boolean tsp_cherryPickOptionCheck := true; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_CoapPeer_maxResponseTime + // + // Purpose: + // Time the peer is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_CoapPeer_maxResponseTime := 0.0; + + /////////////////////////////////////////////////////////// + // Module parameter: tsp_cherryPickOptionCheck + // + // Purpose: + // + // + // Type: + // *boolean* + // + // Default value: + // *true* + /////////////////////////////////////////////////////////// + modulepar boolean tsp_cherryPickOptionCheck := true; function f_CoAP_Peer_init() runs on IFW_COAP_CT { diff --git a/IFW_CoAP_Peer_TestSteps.ttcn b/IFW_CoAP_Peer_TestSteps.ttcn index 40d088b..c4ec66f 100644 --- a/IFW_CoAP_Peer_TestSteps.ttcn +++ b/IFW_CoAP_Peer_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_CoAP_Peer_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_CoAP_Peer_TestSteps diff --git a/IFW_Common.ttcn b/IFW_Common.ttcn index 47f6f20..5fa932a 100644 --- a/IFW_Common.ttcn +++ b/IFW_Common.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_Common.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// diff --git a/IFW_HTTP_Client_Definitions.ttcn b/IFW_HTTP_Client_Definitions.ttcn index 2fd1455..06f7525 100644 --- a/IFW_HTTP_Client_Definitions.ttcn +++ b/IFW_HTTP_Client_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_Definitions diff --git a/IFW_HTTP_Client_Functions.ttcn b/IFW_HTTP_Client_Functions.ttcn index 71cda92..0045d6a 100644 --- a/IFW_HTTP_Client_Functions.ttcn +++ b/IFW_HTTP_Client_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_Functions @@ -25,10 +25,19 @@ module IFW_HTTP_Client_Functions import from HTTPmsg_MessageLen all; - modulepar - { - float tsp_HTTP_Client_maxResponseTime := 0.0; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_HTTP_Client_maxResponseTime + // + // Purpose: + // Time the client is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_HTTP_Client_maxResponseTime := 0.0; function f_HTTP_Client_init() runs on IFW_HTTP_Client_CT { diff --git a/IFW_HTTP_Client_TestSteps.ttcn b/IFW_HTTP_Client_TestSteps.ttcn index 12fa153..9da55e3 100644 --- a/IFW_HTTP_Client_TestSteps.ttcn +++ b/IFW_HTTP_Client_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Client_TestSteps { diff --git a/IFW_HTTP_Server_Definitions.ttcn b/IFW_HTTP_Server_Definitions.ttcn index 4d8a3f6..4222ce1 100644 --- a/IFW_HTTP_Server_Definitions.ttcn +++ b/IFW_HTTP_Server_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_Definitions diff --git a/IFW_HTTP_Server_Functions.ttcn b/IFW_HTTP_Server_Functions.ttcn index 4f1574b..d6f6e4d 100644 --- a/IFW_HTTP_Server_Functions.ttcn +++ b/IFW_HTTP_Server_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_Functions diff --git a/IFW_HTTP_Server_TestSteps.ttcn b/IFW_HTTP_Server_TestSteps.ttcn index 8024807..5b51502 100644 --- a/IFW_HTTP_Server_TestSteps.ttcn +++ b/IFW_HTTP_Server_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_HTTP_Server_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_HTTP_Server_TestSteps diff --git a/IFW_MQTT_Client_Definitions.ttcn b/IFW_MQTT_Client_Definitions.ttcn index 5f7a6a8..f2097b0 100644 --- a/IFW_MQTT_Client_Definitions.ttcn +++ b/IFW_MQTT_Client_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_Definitions { diff --git a/IFW_MQTT_Client_Functions.ttcn b/IFW_MQTT_Client_Functions.ttcn index ca2fb09..b43b702 100644 --- a/IFW_MQTT_Client_Functions.ttcn +++ b/IFW_MQTT_Client_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_Functions @@ -23,10 +23,19 @@ module IFW_MQTT_Client_Functions import from IFW_Common all; import from MQTT_v3_1_1_IPL4SizeFunction all; - modulepar - { - float tsp_MQTT_Client_maxResponseTime := 0.0; - } + /////////////////////////////////////////////////////////// + // Module parameter: tsp_MQTT_Client_maxResponseTime + // + // Purpose: + // Time the client is waiting for a response message (0.0->not set) + // + // Type: + // *float* + // + // Default value: + // *0.0* + /////////////////////////////////////////////////////////// + modulepar float tsp_MQTT_Client_maxResponseTime := 0.0; function f_MQTT_Client_init() runs on IFW_MQTT_Client_CT { diff --git a/IFW_MQTT_Client_TestSteps.ttcn b/IFW_MQTT_Client_TestSteps.ttcn index fda62ed..d23485a 100644 --- a/IFW_MQTT_Client_TestSteps.ttcn +++ b/IFW_MQTT_Client_TestSteps.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IFW_MQTT_Client_TestSteps.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IFW_MQTT_Client_TestSteps diff --git a/IoT_FT_Framework_Definitions.ttcn b/IoT_FT_Framework_Definitions.ttcn index 6beb4c8..910a74e 100644 --- a/IoT_FT_Framework_Definitions.ttcn +++ b/IoT_FT_Framework_Definitions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IoT_FT_Framework_Definitions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-08-28 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IoT_FT_Framework_Definitions diff --git a/IoT_FT_Framework_Functions.ttcn b/IoT_FT_Framework_Functions.ttcn index 4960d5f..e81d578 100644 --- a/IoT_FT_Framework_Functions.ttcn +++ b/IoT_FT_Framework_Functions.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: IoT_FT_Framework_Functions.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2019-07-30 +// Rev: <RnXnn> +// Prodnr: CNL 113 910 +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module IoT_FT_Framework_Functions diff --git a/tests/CoapTestSuite_Etsi.ttcn b/tests/CoapTestSuite_Etsi.ttcn index 04efaec..6823417 100644 --- a/tests/CoapTestSuite_Etsi.ttcn +++ b/tests/CoapTestSuite_Etsi.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: CoapTestSuite_Etsi.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module CoapTestSuite_Etsi diff --git a/tests/CoapTestSuite_Fw.ttcn b/tests/CoapTestSuite_Fw.ttcn index b1cc672..b924ab7 100644 --- a/tests/CoapTestSuite_Fw.ttcn +++ b/tests/CoapTestSuite_Fw.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: CoapTestSuite_Fw.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module CoapTestSuite_Fw diff --git a/tests/LeshanTestSuite.ttcn b/tests/LeshanTestSuite.ttcn index 3e16c37..3347439 100644 --- a/tests/LeshanTestSuite.ttcn +++ b/tests/LeshanTestSuite.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: LeshanTestSuite.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module LeshanTestSuite diff --git a/tests/Lwm2mTestSuite.ttcn b/tests/Lwm2mTestSuite.ttcn index 13c00a4..6739338 100644 --- a/tests/Lwm2mTestSuite.ttcn +++ b/tests/Lwm2mTestSuite.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: Lwm2mTestSuite.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module Lwm2mTestSuite diff --git a/tests/MqttTestSuite_Interop.ttcn b/tests/MqttTestSuite_Interop.ttcn index 6eb10a0..4b7b491 100644 --- a/tests/MqttTestSuite_Interop.ttcn +++ b/tests/MqttTestSuite_Interop.ttcn @@ -9,9 +9,9 @@ /////////////////////////////////////////////////////////////////////////////// // File: MqttTestSuite_Interop.ttcn // Description: -// Rev: R1A -// Prodnr: LPA 108 661 -// Updated: 2017-09-01 +// Rev: <RnXnn> +// Prodnr: CNL 113 xxx +// Updated: 2020-02-06 // Contact: http://ttcn.ericsson.se /////////////////////////////////////////////////////////////////////////////// module MqttTestSuite_Interop -- GitLab