Commit e0777bfe authored by YannGarcia's avatar YannGarcia
Browse files

Start reviewing PICS

parent 1671a332
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
module AtsECRF_Pics {
  
  type record of charstring request_uri_list;
  
  /**
   * @desc HTTP POST Uris
   * @see RFC 2616 Hypertext Transfer Protocol -- HTTP/1.1
   */
  modulepar request_uri_list PICS_ECRF_REQUEST_URIs := { "/t/0ahy0-1531830377/post" };

  /**
   * @desc HTTP post URI for LIS protocol
   */
  modulepar charstring PICS_ECRF_URI := "/";
  
  /**
   * @desc Does the IUT support LoST protocol?
   */
  modulepar boolean PICS_SERVICE_LOST := true;
  
} // End of module AtsECRF_Pics 
+1 −0
Original line number Diff line number Diff line
@@ -92,6 +92,7 @@ module AtsECRF_TestCases {
  import from LibNg112_Pixits all;

  // AtsECRF
  import from AtsECRF_Pics all;
  
  group ecrf_role {
    
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ module AtsECRF_TestControl {
  
  // AtsECRF
  import from AtsECRF_TestCases all;
  import from AtsECRF_Pics all;
  
  // Test Execution
  control {
+5 −0
Original line number Diff line number Diff line
@@ -2,13 +2,18 @@ suite := AtsECRF

sources := \
            AtsECRF_TestCases.ttcn \
            AtsECRF_Pics.ttcn \
            AtsECRF_TestControl.ttcn

modules :=  ../LibCommon \
            ../LibIts/ttcn/Http \
            ../LibEmcom/LibNg112 \
            ../LibIms  \
            ../LibSip \
            ../../ccsrc/Ports/LibHttp \
            ../../ccsrc/EncDec/LibHttp \
            ../../ccsrc/Ports/LibSip \
            ../../ccsrc/EncDec/LibSip \
            ../../ccsrc/Framework \
            ../../ccsrc/loggers \
            ../../ccsrc/Protocols/ETH \
+15 −0
Original line number Diff line number Diff line
module AtsESRP_Pics {
  
  type record of charstring request_uri_list;
  
  /**
   * @desc HTTP post URI for LIS protocol
   */
  modulepar charstring PICS_ECRF_URI := "/";
  
  /**
   * @desc Does the IUT support LoST protocol?
   */
  modulepar boolean PICS_SERVICE_LOST := true;
  
} // End of module AtsESRP_Pics 
Loading