Commit 598667fa authored by Yann Garcia's avatar Yann Garcia
Browse files

Remove AtsPIM & AtsSAEM to be replaced by submodules

parent 5509fa00
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -66,10 +66,6 @@
	path = ttcn/AtsPIM/lib/asn1
	url = https://forge.etsi.org/rep/ITS/asn1/cp_ts104072.git
	branch = TTF_T05x
[submodule "ttcn/AtsSAEM/lib/asn1"]
	path = ttcn/AtsSAEM/lib/asn1
	url = https://forge.etsi.org/rep/ITS/asn1/saem_ts104091.git
	branch = TTF_T05x
[submodule "ttcn/AtsAVM"]
	path = ttcn/AtsAVM
	url = https://forge.etsi.org/rep/ITS/ttcn/avm-ts-104-202-3.git
+4 −2
Original line number Diff line number Diff line
@@ -39,8 +39,10 @@ do
    then
        git checkout --recurse-submodules $NEW_BRANCH
        git submodule update --recursive
        ln -sf asn/PIM-PDU-Descriptions.asn asn/PIM_PDU_Descriptions.asn
        ln -sf asn/PIM-SA-Application-Data-Descriptions.asn asn/PIM_SA_Application_Data_Descriptions.asn
        cd ./asn
        ln -sf PIM-PDU-Descriptions.asn PIM_PDU_Descriptions.asn
        ln -sf PIM-SA-Application-Data-Descriptions.asn PIM_SA_Application_Data_Descriptions.asn
        cd -
    elif [ -f SAEM-PDU-Descriptions.asn ]
    then
        git checkout --recurse-submodules $NEW_BRANCH
Compare 873d0605 to baa1b4fa
Original line number Diff line number Diff line
Subproject commit 873d0605293c11564f3f5186c3feb8341c8b951c
Subproject commit baa1b4fa7634eb26e627e15933f9a3892ca0c449

ttcn/AtsPIM/ItsPim_TestCases.ttcn

deleted100644 → 0
+0 −62
Original line number Diff line number Diff line
/**
 *    @author      ETSI / TTF T052
 *    @desc        Testcases for CA Protocol
 *    @reference   ETSI TS 103 900 v2.2.1
 *    @copyright   ETSI Copyright Notification
 *                 No part may be reproduced except as authorized by written permission.
 *                 The copyright and the foregoing restriction extend to reproduction in all media.
 *                 All rights reserved.
 */

module ItsPim_TestCases {

    // LibItsCam
    import from LibItsPim_TestSystem all;

    // Ats Its
    import from ItsPim_TpFunctions all;

    // 5.2.1
    group pimMessageDissemination {

        group pimMessageFormat {

            /**
             * @desc Check that protocolVersion is set to 2 and messageID is
             *       set to 21.
             * <pre>
             * Pics Selection: PICS_PIM_GENERATION
             * Initial conditions:
             *     with {
             *         the IUT being in the "initial state"
             *     }
             * Expected behaviour:
             *     ensure that {
             *         when {
             *             a PIM is generated
             *         }
             *         then {
             *             the IUT sends a valid PIM
             *                 containing ITS PDU header
             *                     containing protocolVersion
             *                         indicating value 2
             *                     and containing messageID
             *                         indicating value 21
             *         }
             *     }
             * </pre>
             *
             * @see       ETSI TS 104 202-2 v2.2.1 TP/PIM/MSD/FMT/BV-01
             * @reference ETSI TS 103 882 v2.2.1, Annex B
             */
            testcase TC_PIM_MSD_FMT_BV_01() runs on ItsPim system ItsPimSystem {

                f_PIM_MSD_FMT_BV_01();

            } // End of TC_PIM_MSD_FMT_BV_01

        } // End of group pimMessageFormat

    } // End of group pimMessageDissemination

} // End of module ItsPim_TestCases
+0 −26
Original line number Diff line number Diff line
/**
 *    @author   ETSI / TTF T052
 *    @desc     Test Control file for PIM
 *    @copyright   ETSI Copyright Notification
 *                 No part may be reproduced except as authorized by written permission.
 *                 The copyright and the foregoing restriction extend to reproduction in all media.
 *                 All rights reserved.
*
 */
module ItsPim_TestControl {
    
    // ATS PIM
    import from ItsPim_TestCases all;
    
    // LibIts
    import from LibItsPim_Pics all;
    
    // Test Execution
    control {
        
        if (PICS_PIM_GENERATION) {
            execute(TC_PIM_MSD_FMT_BV_01());
        }
    } // End of 'control' statement
    
} // End of ItsPim_TestControl
 No newline at end of file
Loading