def test_no_matched_config_relpath(self):
        cut = CMakeDeclaration("../config")
        origin_block_cell_name = BlockCellName("fran/cmakeparsing/other/thing/start.cmake")

        block_cell_names = [BlockCellName("fran/cmakeparsing/CMakeLists.txt"),
                            BlockCellName("fran/cmakeparsing/other/thing/macro.cmake"),
                            BlockCellName("fran/cmakeparsing/config")]

        self.assertItemsEqual(set(), cut.match(block_cell_names, origin_block_cell_name))
    def test_match_with_macro_cmake_abspath(self):
        cut = CMakeDeclaration("fran/cmakeparsing/cmake/Macros_2.cmake")
        origin_block_cell_name = BlockCellName("fran/cmakeparsing/CMakeLists.txt")

        block_cell_names = [BlockCellName("fran/cmakeparsing/CMakeLists.txt"),
                            BlockCellName("fran/cmakeparsing/cmake/Macros.cmake"),
                            BlockCellName("fran/cmakeparsing/cmake/Macros_2.cmake")]

        self.assertItemsEqual(set(["fran/cmakeparsing/cmake/Macros_2.cmake"]),
                              cut.match(block_cell_names, origin_block_cell_name))
Пример #3
0
    def test_no_matched_config_relpath(self):
        cut = CMakeDeclaration("../config")
        origin_block_cell_name = BlockCellName(
            "fran/cmakeparsing/other/thing/start.cmake")

        block_cell_names = [
            BlockCellName("fran/cmakeparsing/CMakeLists.txt"),
            BlockCellName("fran/cmakeparsing/other/thing/macro.cmake"),
            BlockCellName("fran/cmakeparsing/config")
        ]

        self.assertItemsEqual(
            set(), cut.match(block_cell_names, origin_block_cell_name))
Пример #4
0
    def test_match_with_macro_cmake_abspath(self):
        cut = CMakeDeclaration("fran/cmakeparsing/cmake/Macros_2.cmake")
        origin_block_cell_name = BlockCellName(
            "fran/cmakeparsing/CMakeLists.txt")

        block_cell_names = [
            BlockCellName("fran/cmakeparsing/CMakeLists.txt"),
            BlockCellName("fran/cmakeparsing/cmake/Macros.cmake"),
            BlockCellName("fran/cmakeparsing/cmake/Macros_2.cmake")
        ]

        self.assertItemsEqual(
            set(["fran/cmakeparsing/cmake/Macros_2.cmake"]),
            cut.match(block_cell_names, origin_block_cell_name))