Commit 53f9a54b authored by YannGarcia's avatar YannGarcia
Browse files

Enhance TPs for Class1 and 2

parent 2f77be9f
Loading
Loading
Loading
Loading
+26 −9
Original line number Diff line number Diff line
@@ -19,7 +19,12 @@ Package its_mbr_commons {
        - PICS_IUT_ITS_S   // Is the IUT an ITS-S
        - PICS_IUT_RSU     // Is the IUT a RSU
        - PICS_IUT_MA      // Is the IUT an Misbehavior Authority
        - PICS_SHORT_RANGE // Short range transport mode is used (G5/LTE)
        - PICS_DETECTOR_CAM_SPEED     // CAM Speed misbehavior detector is supported
        - PICS_DETECTOR_CAM_POSITION  // CAM Position misbehavior detector is supported
        - PICS_DETECTOR_CAM_ACC
        - PICS_DETECTOR_CAM_STATIC
        - PICS_DETECTOR_CAM_SECURITY
        ;
//        constant:
//        - PX_SUBJECT_PDU_INDEX      // Number of invalid messages observations
@@ -73,6 +78,9 @@ Package its_mbr_commons {
//      - PX_STATION_ID
//      - SEC_GN_PACKET_CERT // Secured geonetworking packet containing CA/DEM message and certificate (signer certificate)
//      - SEC_GN_PACKET // Secured geonetworking packet containing CA/DEM message without certificate (digest)
//      - PX_SPEED_1: Normal speed (e.g. 90 km/h)
//      - PX_SPEED_2: Abnormal speed (e.g. 320 km/h)
//      - PX_SPEED_3: Abnormal speed (e.g. 350 km/h)
//    }

    Data {
@@ -81,6 +89,8 @@ Package its_mbr_commons {
        type Octetstring;
        type Time64;
        type ThreeDLocation;
        type GeoNetworking;
        type EtsiTs102941Data;
        type EtsiTs103759Data; // Misbehavior Reporting message. See ETSI TS 103 759
        type AidSpecificReport;
        type AsrCam;
@@ -91,17 +101,24 @@ Package its_mbr_commons {
    } // End of 'Data' statement

    Configuration {
        Interface Type defaultGT accepts EtsiTs103759Data;
        Component Type ItsComponent with gate g of type defaultGT;
        Component Type ItsHttpComponent with gate g of type defaultGT;
        Interface Type defaultGN accepts GeoNetworking;
        Interface Type defaultDATA accepts EtsiTs103759Data;
        Component Type ItsComponent with gate g of type defaultGN;
        Component Type ItsHttpComponent with gate g of type defaultDATA;

        Test Configuration CFG_ITS_MBR_01 // ETSI TS 103 759 [3], Clause 5.2 Communication assumptions and requirements\
        Test Configuration CFG_ITS_MBR_01 // ETSI TS 103 759 [3], Clause 5.2 Communication assumptions and requirements - Long Range
            containing 
                Tester component MA of type ItsHttpComponent
                SUT component IUT of type ItsHttpComponent
                connection between MA.g and IUT.g;

        Test Configuration CFG_ITS_MBR_02 // ETSI TS 103 759 [3], Clause 5.2 Communication assumptions and requirements - Short Range
            containing 
                Tester component MA of type ItsComponent
                SUT component IUT of type ItsComponent
                connection between MA.g and IUT.g;

        Test Configuration CFG_ITS_MBR_02
        Test Configuration CFG_ITS_MBR_03
            containing 
                Tester component MA of type ItsHttpComponent
                Tester component ITS_S of type ItsComponent
+1228 −430

File changed.

Preview size limit exceeded, changes collapsed.