コード例 #1
0
    def test_paths_in_dir_level_3(self):
        ignored_filename_patterns = [r'\A\.$', r'\A\.\.$', r'\A\.DS_Store$']
        ignored_regex_objects = expression_helper.regex_objects_from_patterns(ignored_filename_patterns)

        search_dir_full_path = pathlib.Path('.').joinpath('searcher_data', 'search_dir', 'level_1', 'level_2', 'level_3')

        actual = file_helper.paths_in_dir(search_dir_full_path, ignored_regex_objects)

        # Don't care about element order, so compare results using set instead of list
        expected = {
            search_dir_full_path.joinpath('d.txt alias')
        }
        self.assertEqual(expected, set(actual))
コード例 #2
0
    def test_paths_in_dir_ignore_ython(self):

        ignored_filename_patterns = [r'\A\.$', r'\A\.\.$', r'\A\.DS_Store$', r'ython']
        ignored_regex_objects = expression_helper.regex_objects_from_patterns(ignored_filename_patterns)

        search_dir_full_path = pathlib.Path('.').joinpath('searcher_data', 'search_dir')

        actual = file_helper.paths_in_dir(search_dir_full_path, ignored_regex_objects)

        # Don't care about element order, so compare results using set instead of list
        expected = {
            search_dir_full_path.joinpath('httpwww.beepscore.comhubcape'),
        }
        self.assertEqual(expected, set(actual))
コード例 #3
0
    def test_paths_in_dir(self):

        ignored_filename_patterns = [r'\A\.$', r'\A\.\.$', r'\A\.DS_Store$']
        ignored_regex_objects = expression_helper.regex_objects_from_patterns(ignored_filename_patterns)

        search_dir_full_path = pathlib.Path('.').joinpath('searcher_data', 'search_dir')

        actual = file_helper.paths_in_dir(search_dir_full_path, ignored_regex_objects)

        # Don't care about element order, so compare results using set instead of list
        expected = {
            search_dir_full_path.joinpath('httppython.org'),
            search_dir_full_path.joinpath('httpsen.wikipedia.orgwikiPython_%28programming_language%29'),
            search_dir_full_path.joinpath('httpswww.google.com#q=python'),
            search_dir_full_path.joinpath('httpwww.beepscore.comhubcape'),
        }
        self.assertEqual(expected, set(actual))