ItsIvim_TestCases.ttcn 142 KB
Newer Older
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
             *                 containing ivi
             *                     containing optional
             *                         containing elements of type LayoutContainer
             *                             containing layoutId
             *                                 indicating LID
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_GENAPP_BV_06
             * @reference CEN ISO TS/19321 [5], clause 6.3.4.2
             */
            testcase TC_IS_IVI_GEN_GENAPP_BV_06() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_GENAPP_BV_06();
                
            } // End of TC_IS_IVI_GEN_GENAPP_BV_06
            
        } // End of group iviGeneralApplicationContainer
        
        group iviRoadConfigurationContainer{
            
            /**
             * @desc Check that all zone IDs in the Road Configuration Container references existing items in the Location Container of the same IVIM Structure.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_ROAD_CFG_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of types RoadConfigurationContainer
             *                             containing elements of types RccPart
             *                                 containing relevanceZoneIds
             *                                     containing RZ_IDs
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of types GeographicLocationContainer
             *                             containing all zones referenced from RZ_IDs
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_RCC_BV_01
             * @reference CEN ISO TS/19321 [5], clause 6.3.3.2
             */
            testcase TC_IS_IVI_GEN_RCC_BV_01() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_RCC_BV_01();
                
            } // End of TC_IS_IVI_GEN_RCC_BV_01
            
            /**
             * @desc Check that all Parts that relate to the same Location Container are included in the same Road Configuration Container.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_ROAD_CFG_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing multiple RoadConfigurationContainer
             *                 and containing multiple GeographicLocationContainer
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of types RoadConfigurationContainer
             *                             containing elements of types RccPart
             *                                 containing relevanceZoneIds
             *                                     referencing the GeographicLocationContainer (GLC)
             *                         and not containing other elements of types RoadConfigurationContainer
             *                             containing elements of types RccPart
             *                                 containing relevanceZoneIds
             *                                     referencing the same GeographicLocationContainer (GLC)
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_RCC_BV_02
             * @reference CEN ISO TS/19321 [5], clause 6.3.3.2
             */
            testcase TC_IS_IVI_GEN_RCC_BV_02() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_RCC_BV_02();
                
            } // End of TC_IS_IVI_GEN_RCC_BV_02
            
            /**
             * @desc Check that Road Configuration Container contains description of all present lanes. 
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_ROAD_CFG_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *         and the IUT has sent or received MAPEM
             *             containing description of the target road
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing RoadConfigurationContainer
             *                     containing description of the target road
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing element of types RoadConfigurationContainer
             *                             containing element of types RccPart
             *                                 containing laneConfiguration
             *                                     containing elements of type LaneInformation
             *                                         describing all existing lanes of the target road
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_RCC_BV_03
             * @reference CEN ISO TS/19321 [5], clause 6.3.3.2
             */
            testcase TC_IS_IVI_GEN_RCC_BV_03() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_RCC_BV_03();
                
            } // End of TC_IS_IVI_GEN_RCC_BV_03
            
        } // End of group iviRoadConfigurationContainer
        
        group iviTextContainer{
            
            /**
             * @desc Check that all zone IDs in the Text Container references existing items in the Location Container of the same IVIM Structure.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_TEXT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing one or more TextContainer
             *                     containing elements of types TcPart
             *                         containing relevanceZoneIds
             *                             containing RZ_IDs
             *                         and optionally containing detectionZoneIds
             *                             containing DZ_IDs
             *                         and optionally containing driverAwarenessZoneIds
             *                             containing DAZ_IDs
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of types GeographicLocationContainer
             *                             containing all zones referenced from RZ_IDs, DZ_IDs and DAZ_IDs
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_TEXT_BV_01
             * @reference CEN ISO TS/19321 [5], clause 6.3.4.2
             */
            testcase TC_IS_IVI_GEN_TEXT_BV_01() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_TEXT_BV_01();
                
            } // End of TC__IS_IVI_GEN_TEXT_BV_01
            
            /**
             * @desc The sending ITS-S shall include the component direction to describe the direction of 
             *       relevance within a Relevance Zone representing a road segment.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_TEXT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing Text Containers
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of type TextContainer
             *                             containing element of type TcPart
             *                                 containing direction
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_TEXT_BV_02
             * @reference CEN ISO TS/19321 [5], clause 6.3.4.2
             */
            testcase TC_IS_IVI_GEN_TEXT_BV_02() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_TEXT_BV_02();
                
            } // End of TC__IS_IVI_GEN_TEXT_BV_02
            
            /**
             * @desc The IUT can include either the component text and/or the component data. The IUT can repeat 
             *       the text in the component text in different languages with the appropriate unique language code
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_TEXT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing Text Containers
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of type TextContainer
             *                             containing element of type TcPart
             *                                 containing non-empty data
             *                                 and/or containing text
             *                                     containing elements of type Text
             *                                         containing language
             *                                         indicating unique language code
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_TEXT_BV_03
             * @reference CEN ISO TS/19321 [5], clause 6.3.4.2
             */
            testcase TC_IS_IVI_GEN_TEXT_BV_03() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_TEXT_BV_03();
                
            } // End of TC__IS_IVI_GEN_TEXT_BV_03
            
            /**
             * @desc Check that all layoutID of the Text Containers references existing layouts in the Layout Containers of the same IVIM Structure.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IVIM_HAS_TEXT_CONTAINER AND PICS_IVIM_HAS_LAYOUT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             containing ivi
             *                 containing optional
             *                     containing elements of type TextContainer
             *                         containing element of type TcPart
             *                             containing layoutId (LID)
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing elements of type LayoutContainer
             *                             containing layoutId
             *                                 indicating LID
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_TEXT_BV_04
             * @reference CEN ISO TS/19321 [5], clause 6.3.4.2
             */
            testcase TC_IS_IVI_GEN_TEXT_BV_04() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_TEXT_BV_04();
                
            } // End of TC__IS_IVI_GEN_TEXT_BV_04
            
        } // End of group iviTextContainer
garciay's avatar
garciay committed
        group iviGenerationFrequency {
            
            /**
             * @desc Check that IVIMs are not generated more frequently than T_GenIvimMin
             * <pre>
garciay's avatar
garciay committed
             * Pics Selection: PICS_T_GENIVIMMIN and PICS_IVIM_GENERATION
garciay's avatar
garciay committed
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT sends a IVIM
             *        }
             *        then {
             *            the IUT does not send any IVIM before expiry of T_GenIvimMin
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_GFQ_TI_01
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
            testcase TC_IS_IVI_GEN_GFQ_TI_01 () runs on ItsIvim system ItsIvimSystem {
            } // End of testcase TC_IS_IVI_GEN_GFQ_TI_01
garciay's avatar
garciay committed
            
            /**
             * @desc Check that IVIMs are not generated less frequently than T_GenIvimMax
             * <pre>
garciay's avatar
garciay committed
             * Pics Selection: PICS_T_GENIVIMMAX and PICS_IVIM_GENERATION
garciay's avatar
garciay committed
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT sends a IVIM
             *        }
             *        then {
             *            the IUT sends another IVIM before expiry of T_GenIvimMax
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_GFQ_TI_02
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
            testcase TC_IS_IVI_GEN_GFQ_TI_02 () runs on ItsIvim system ItsIvimSystem {
            } // End of testcase TC_IS_IVI_GEN_GFQ_TI_02
garciay's avatar
garciay committed
            
        } // End of group iviGenerationFrequency
        
             * @desc Check that the IUT activates repetition on reception of a valid AppIVIM_Update request
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *            containing ivi
             *                containing mandatory
             *                    containing iviIdentificationNumber 
             *                        indicating IVIM_ID_1
             *            the IUT receives an AppIVIM_Update indicating 'repetition interval' RI_1
             *            the IUT sends IVIM with respect to the 'repetition interval' RI_1
             *                containing ivi
             *                    containing mandatory
             *                        containing iviIdentificationNumber 
             *                            indicating IVIM_ID_1
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVRP_BV_01
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
            testcase TC_IS_IVI_GEN_EVRP_BV_01 () runs on ItsIvim system ItsIvimSystem {
            } // End of testcase TC_IS_IVI_GEN_EVRP_BV_01
             * @desc Check that the IUT activates repetition on reception of a valid AppIVIM_Update request
             * Pics Selection: PICS_IVIM_UPDATE
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *            containing ivi
             *                containing mandatory
             *                    containing iviIdentificationNumber 
             *                        indicating IVIM_ID_1
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT receives an AppIVIM_Update indicating 'repetition interval' 0
             *        }
             *        then {
             *            the IUT stops sending IVIM associated with IVIM_ID_1
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVRP_BV_02
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
             */
            testcase TC_IS_IVI_GEN_EVRP_BV_02 () runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_EVRP_BV_02();
                
            } // End of testcase TC_IS_IVI_GEN_EVRP_BV_02
            
        } // End of group iviEventRepetition
        
        group iviEventTermination {
            
            /**
             * @desc Check that the IUT terminates IVM genration on validity duration expery
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *            containing ivi
             *                containing mandatory
             *                    containing iviIdentificationNumber 
             *                        indicating IVIM_ID_1
             *                and containing validTo
             *                    indicating CLT + 10 seconds
             *                and containing iviStatus
             *                    indicating 'new'
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT is alerted of expiration of the time associated with validTo
             *        }
             *        then {
             *            the IUT stops ending IVIM associated with IVIM_ID_1
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVTR_BV_01
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
             */
            testcase TC_IS_IVI_GEN_EVTR_BV_01 () runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_EVTR_BV_01();
                
            } // End of testcase TC_IS_IVI_GEN_EVTR_BV_01
            
            /**
             * @desc Check that the IUT terminates IVM genration on termination request
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *            containing ivi
             *                containing mandatory
             *                    containing iviIdentificationNumber 
             *                        indicating IVIM_ID_1
             *                and not containing validTo
             *                and containing iviStatus
             *                    indicating 'new'
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT receives an AppIVIM_termination request associated with IVIM_ID_1
             *        }
             *        then {
             *            the IUT stops ending IVIM associated with IVIM_ID_1
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVTR_BV_02
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
             */
            testcase TC_IS_IVI_GEN_EVTR_BV_02 () runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_EVTR_BV_02();
                
            } // End of testcase TC_IS_IVI_GEN_EVTR_BV_02
            
            /**
             * @desc Check that the IUT terminates IVM generation on cancellation request.
             * <pre>
             * Pics Selection: PICS_IVI_CANCELLATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *            containing ivi
             *                containing mandatory
             *                    containing iviIdentificationNumber 
             *                        indicating IVIM_ID_1
             *                    and containing serviceProviderId
             *                        indicating IVIM_SP_1
             *                    and containing iviStatus
             *                        indicating 'new'
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT receives an AppIVIM_termination request associated with IVIM_ID_1
             *        }
             *        then {
             *            the IUT sends a valid IVIM
             *                containing ivi
             *                    containing mandatory
             *                        containing iviIdentificationNumber 
             *                            indicating IVIM_ID_1
             *                        and containing timeStamp
             *                            indication IVM_CLT_1
             *                        and containing iviStatus
             *                            indicating 'cancellation' 
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVTR_BV_03
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
             */
            testcase TC_IS_IVI_GEN_EVTR_BV_03 () runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_EVTR_BV_03();
                
            } // End of testcase TC_IS_IVI_GEN_EVTR_BV_03
            
            /**
             * @desc Check that the IUT terminates IVM generation on negation request 
             * <pre>
             * Pics Selection: PICS_IVI_NEGATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT having generated several IVIM
             *                containing ivi
             *                    containing mandatory
             *                        containing iviIdentificationNumber 
             *                            indicating IVIM_ID_1
             *                        and containing timeStamp
             *                            indication IVM_CLT_1
             *                        and containing iviStatus
             *                            indicating 'negation'
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            the IUT receives an AppIVIM_termination request associated with IVIM_ID_1
             *        }
             *        then {
             *            the IUT stops ending IVIM associated with IVIM_ID_1
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_EVTR_BV_04
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.2
             */
            testcase TC_IS_IVI_GEN_EVTR_BV_04 () runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_EVTR_BV_04();
                
            } // End of testcase TC_IS_IVI_GEN_EVTR_BV_04
            
        } // End of group iviEventTermination
        
        group iviCommunication {
            
            /**
             * @desc Check that IVIM uses BTP_B packet
             *       Check that the destination port for IVIM is set to 2006
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT sending IVIM
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            an IVIM is generated
             *        }
             *        then {
             *            the IUT sends a valid IVIM
             *                encapsulated in a BTP-B packet
             *                    containing a destination port value set to '2006'
             *                    and containing a destination port info value set to '0' 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_COM_BV_01
             * @reference ETSI TS 103 301 v1.1.1 clauses 10.2 and 7.4.3.2
            testcase TC_IS_IVI_GEN_COM_BV_01 () runs on ItsIvim system ItsIvimSystem {
            } // End of testcase TC_IS_IVI_GEN_COM_BV_01
             * @desc Check that IVI service encapsulates IVIM in a UNC with the HeaderType field set to the value of 2.
garciay's avatar
garciay committed
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION
             * Initial conditions: 
             *   with {
             *        the IUT being in the "initial state"
             *        and the IUT sending IVIM
             *    }
             * Expected behaviour:
             *    ensure that {
             *        when { 
             *            a IVIM is generated
             *        }
             *        then {
             *            the IUT sends a valid IVIM
             *                encapsulated in a UNC packet
             *                    containing a correctly formatted Common Header
             *                        containing HeaderType field
             *                            indicating the value '2'
             *        }
             *    }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_COM_BV_02
             * @reference ETSI TS 103 301 v1.1.1 Clause 7.4.3.2
            testcase TC_IS_IVI_GEN_COM_BV_02 () runs on ItsIvim system ItsIvimSystem {
            } // End of testcase TC_IS_IVI_GEN_COM_BV_02
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
        group iviSecurityParameters{
            
            /**
             * @desc Check that IVI service uses certificate containing valid ITS AID to sign IVIM.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing a correctly formatted Security Header as a EtsiTs103097Data structure
             *                     containing signedData.tbsData.headerInfo 
             *                         containing psid 
             *                             indicating ITS_AID_IVIM
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SEC_BV_01
             * @reference ETSI TS 103 301 [2], clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SEC_BV_01() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SEC_BV_01();
                
            } // End of TC_IS_IVI_GEN_SEC_BV_01
            
            /**
             * @desc Check that IVI service uses certificate containing valid ITS AID to sign IVIM.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT sending IVIM
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             a IVIM is generated
             *         }
             *         then {
             *             the IUT sends a valid IVIM
             *                 containing a correctly formatted Security Header as a EtsiTs103097Data structure
             *                     containing signedData.tbsData.headerInfo 
             *                         containing psid 
             *                             indicating ITS_AID_IVIM
             *                         and containing generationTime
             *                             indicating realistic generation time
             *                         and optionally containing generationLocation
             *                         and not containing other header items
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SEC_BV_02
             * @reference ETSI TS 103 301 [2], clause 12
             */
            testcase TC_IS_IVI_GEN_SEC_BV_02() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SEC_BV_02();
                
            } // End of TC_IS_IVI_GEN_SEC_BV_02
            
            /**
             * @desc Check that IVI service uses certificate containing valid Service Specific Permissions of type BitmapSsp 
             *       to sign IVIM from the given service provider and the SSP version is set to 1.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_NONE
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 containing bitmapSSP
             *                     indicating octet at position 0 set to 0x01
             *                     and indicating octets at positions 1-3 set to IVI_SP_VALUE
             *                     and indicating other bits set to 0
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing mandatory
             *                         containing serviceProviderId
             *                             indicating IVI_SP_VALUE
             *                         and containing iviStatus
             *                             indicating ‘new’
             *                         and not containing optional
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_NONE
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_01
             * @reference ETSI TS 103 301 [2], clause 4.5.1
             */
            testcase TC_IS_IVI_GEN_SSP_BV_01() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_01();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_01
            
            /**
             * @desc Check that IVI service sends an IVIM containing different road signs schema when it is permitted by 
             *       the signing certificate 
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED AND PICS_IVIM_RSCODE_VIENNACONV AND PICS_IVIM_RSCODE_SAEJ2540
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_X
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 and containing bitmapSSP
             *                     indicating bit BIT_X of octet OCTET_X set to 1
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing element of type GeneralIviContainer
             *                             containing element of type GicPart
             *                                 containing roadSignCodes
             *                                     containing elements of type RSCode
             *                                         containing code
             *                                             containing COMPONENT_X
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_X
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_02
             * @reference ETSI TS 103 301 [2], clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SSP_BV_02() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_02();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_02
            
            /**
             * @desc Check that IVI service sends an IVIM containing ISO/TS 14823 road signs codes of different service categories 
             *       when it is permitted by the signing certificate
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED AND PICS_IVIM_RSCODE_ISO14823
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_X
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 and containing bitmapSSP
             *                     indicating bit BIT_X of octet OCTET_X set to 1
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing element of type GeneralIviContainer
             *                             containing element of type GicPart
             *                                 containing roadSignCodes
             *                                     containing elements of type RSCode
             *                                         containing code
             *                                             containing iso14823.pictogramCode.serviceCategoryCode
             *                                         containing COMPONENT_X
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_X
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_03
             * @reference ETSI TS 103 301 [2], clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SSP_BV_03() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_03();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_03
            
            /**
             * @desc Check that IVI service sends an IVIM containing lane status when it is permitted by the signing 
             *       certificate.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED AND PICS_IVIM_RSCODE_ISO14823
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_LS
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 and containing bitmapSSP
             *                     indicating bit 0 of octet 5 set to 1
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing element of type GeneralIviContainer
             *                             containing element of type GicPart
             *                                 containing laneStatus
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_LS
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_04
             * @reference ETSI TS 103 301 [2],clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SSP_BV_04() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_04();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_04
            
            /**
             * @desc Check that IVI service sends an IVIM containing different containers when it is permitted by the signing 
             *       certificate.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED AND PICS_IVIM_HAS_ROAD_CFG_CONTAINER AND PICS_IVIM_HAS_TEXT_CONTAINER AND PICS_IVIM_HAS_LAYOUT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_X
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 and containing bitmapSSP
             *                     indicating bit BIT_X of octet OCTET_X set to 1
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing optional
             *                         containing element of type CONTAINER_X
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_X
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_05
             * @reference ETSI TS 103 301 [2], clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SSP_BV_05() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_05();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_05
            
            /**
             * @desc Check that IVI service sends an IVI negation when it is permitted by the signing certificate.
             * <pre>
             * Pics Selection: PICS_IVIM_GENERATION AND PICS_IS_IUT_SECURED AND PICS_IVIM_HAS_ROAD_CFG_CONTAINER AND PICS_IVIM_HAS_TEXT_CONTAINER AND PICS_IVIM_HAS_LAYOUT_CONTAINER
             * Initial conditions: 
             *     with {
             *         the IUT being in the "initial state"
             *         and the IUT is operating in secured mode
             *         and the IUT is authorized to sign IVIM with the certificate CERT_IVI_SSP_NEG
             *             containing appPermission item
             *                 containing psid
             *                     indicating ITS_AID_IVIM 
             *                 and containing bitmapSSP
             *                     indicating bit 4 of octet 5 set to 1
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             the IUT is requested to generate an IVIM
             *                 containing ivi
             *                     containing mandatory
             *                         containing iviStatus
             *                             indnicating ‘negation’
             *         }
             *         then {
             *             the IUT sends an IVIM
             *                 signed with the CERT_IVI_SSP_NEG
             *         }
             *     }
             * </pre>
             * 
             * @see       ETSI TS 103 191-2 v1.2.5 TP_IS_IVI_GEN_SSP_BV_06
             * @reference ETSI TS 103 301 [2], clause 6.4.3.2
             */
            testcase TC_IS_IVI_GEN_SSP_BV_06() runs on ItsIvim system ItsIvimSystem {
                
                f_IS_IVI_GEN_SSP_BV_06();
                
            } // End of TC_IS_IVI_GEN_SSP_BV_06