Commit 88145053 authored by garciay's avatar garciay
Browse files

Validate TC_ECRF_HTTP_POST_BV_06-09

parent 8fc44594
Loading
Loading
Loading
Loading
+8 −12
Original line number Diff line number Diff line
@@ -7,22 +7,11 @@ LibCommon_Time.PX_TAC := 30.0
LibItsHttp_Pics.PICS_HEADER_HOST := "ecrf.gridgears.io" # Used for ECRF
#LibItsHttp_Pics.PICS_HEADER_HOST := "ptsv2.com"

LibNg112_Pics.PICS_LIS_URI := "/api";
LibNg112_Pics.PICS_ECRF_URI := "/api";

#LibItsHttp_Pics.PICS_HEADER_CONTENT_TYPE := "application/held+xml;charset=utf-8";
LibItsHttp_Pics.PICS_HEADER_CONTENT_TYPE := "application/lost+xml;charset=utf-8";

#LibNg112_Pics.PICS_HTTP_GET_REQUEST := false

LibNg112_Pixits.PX_DEVICE_URI_TEL := "<uri>+331234567890</uri>" # Position location
#LibNg112_Pixits.PX_DEVICE_URI_TEL := "<uri>+331234567891</uri>" # Circle location
#LibNg112_Pixits.PX_DEVICE_URI_TEL := "<uri>+331234567892</uri>" # Civic location
#LibNg112_Pixits.PX_DEVICE_URI_TEL := "<uri>+331234567893</uri>" # Civic location
LibNg112_Pixits.PX_DEVICE_NUMBER_POINT := { 43.616891, 7.053179 }
LibNg112_Pixits.PX_CIRCLE_POS := { 43.617174, 7.05275 }
LibNg112_Pixits.PX_CIRCLE_RADIUS := 15.000

[LOGGING]
# In this section you can specify the name of the log file and the classes of events
# you want to log into the file or display on console (standard error).
@@ -85,7 +74,14 @@ system.httpPort.params := "HTTP(codecs=lost:lost_codec;held:held_codec)/TCP(debu
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_02
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_03
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_04
AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_05
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_05
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_06
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_07
AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_08
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_09
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_10
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_11
#AtsNg112_TestCases.TC_ECRF_HTTP_POST_BV_12

[GROUPS]
# In this section you can specify groups of hosts. These groups can be used inside the
+391 −227

File changed.

Preview size limit exceeded, changes collapsed.

+7 −5
Original line number Diff line number Diff line
@@ -32,11 +32,13 @@ module AtsNg112_TestControl {
          if (PICS_L_FIS_ERR1) { execute(TC_ECRF_HTTP_POST_BV_03()); }
          if (PICS_L_FIS_ERR2) { execute(TC_ECRF_HTTP_POST_BV_04()); }
          if (PICS_L_FIS_SBV1) { execute(TC_ECRF_HTTP_POST_BV_05()); }
          /*execute(TC_ECRF_HTTP_POST_BV_06());
          if (PICS_L_FIS_GEO2) {
            execute(TC_ECRF_HTTP_POST_BV_06());
            execute(TC_ECRF_HTTP_POST_BV_07());
            execute(TC_ECRF_HTTP_POST_BV_08());
          execute(TC_ECRF_HTTP_POST_BV_09());
          execute(TC_ECRF_HTTP_POST_BV_10());
          }
          if (PICS_L_FIS_GEO1) { execute(TC_ECRF_HTTP_POST_BV_09()); }
          /*execute(TC_ECRF_HTTP_POST_BV_10());
          execute(TC_ECRF_HTTP_POST_BV_11());
          execute(TC_ECRF_HTTP_POST_BV_12());*/
        }
+2 −2
Original line number Diff line number Diff line
@@ -35,12 +35,12 @@ module LibNg112_Pics {
  /**
   * @desc 
   */
  modulepar charstring PICS_LIS_URI := "/api/held";
  modulepar charstring PICS_LIS_URI := "/api";
  
  /**
   * @desc 
   */
  modulepar charstring PICS_ECRF_URI := "/api/lost";
  modulepar charstring PICS_ECRF_URI := "/api";
  
  /**
   * @desc HTTP POST Uris
+21 −16
Original line number Diff line number Diff line
@@ -35,6 +35,9 @@ module LibNg112_Pixits {
    extension "File:../xsd/geometryBasic2d.xsd";
  }
  
  // LibNg112
  import from LibNg112_TypesAndValues all;
  
  /**
   * @desc Epsilon for Double valules comparison
   */ 
@@ -47,7 +50,7 @@ module LibNg112_Pixits {
  /**
   * @desc Device identifier using TEL uri
   */
  modulepar charstring PX_DEVICE_URI_TEL := "<tel>+436501234567</tel>";
  modulepar DeviceURIs PX_DEVICE_URI_TEL := { "<uri>+331234567890</uri>", "<uri>+331234567891</uri>", "<uri>+331234567892</uri>", "<uri>+331234567893</uri>" };
  
  /**
   * @desc Unknown device identifier
@@ -99,32 +102,34 @@ module LibNg112_Pixits {
  
  modulepar XSD.AnyURI PX_V_POLICE_SERVICE_URN := "urn:service:sos.police";
  
  modulepar XSD.Token PX_V_POLICE_PATH := "ecrf.gridgears.io";
  
  modulepar DoubleList PX_POINT_IN_E_POLICE_SERVICE_BOUNDARY := { 43.616891, 7.053179 };
  
  modulepar XSD.AnyURI PX_E_FIRE_SERVICE_URN := "urn:service:sos.fire";
  
  modulepar XSD.AnyURI PX_V_FIRE_SERVICE_URN := "urn:service:sos.fire";
  
  modulepar DoubleList PX_POINT_IN_E_FIRE_SERVICE_BOUNDARY := { 48.20597092201654, 16.221656799316406 };

  modulepar XSD.String PX_V_FIRE_SOURCE := "ecrf.gridgears";
  
  modulepar XSD.AnyURI PX_V_FIRE_SOURCE_ID := "viennaFireId";
  
  modulepar XSD.String PX_V_FIRE_DISPLAY_NAME := "Vienna Fire";
  
  modulepar XSD.DateTime PX_LOST_EXPIRES := "2019-08-30T08:48:17+00:00";
  
  modulepar XSD.DateTime PX_LOST_LAST_UPDATED := "2018-08-30T08:48:17+00:00";


  modulepar XSD.AnyURI PX_V_FIRE_SIP_URI := "sip:fire@vienna.com";
  
  modulepar XSD.Token PX_V_FIRE_PATH := "ecrf.gridgears.io";

  modulepar DoubleList PX_POINT_IN_E_FIRE_SERVICE_BOUNDARY := { 48.20597092201654, 16.221656799316406 };
  
  modulepar DoubleList PX_CIRCLE_INTERSECTING_V_FIRE_SERVICE_BOUNDARY_POS := { 48.30260863571332, 16.351604461669922 };
  
  modulepar XSD.Double PX_CIRCLE_INTERSECTING_V_FIRE_SERVICE_BOUNDARY_RADIUS := 5000.0;
  
  modulepar XSD.DateTime PX_LOST_EXPIRES := "2019-08-30T08:48:17+00:00";
  
  modulepar XSD.DateTime PX_LOST_LAST_UPDATED := "2018-08-30T08:48:17+00:00";
  
  modulepar XSD.AnyURI PX_E_UNKNOWN_SERVICE_URN := "urn:service:sos.unknown";
  
  

  
} // End of module LibNg112_Pixits
Loading