Ejemplo n.º 1
0
def problem_generator(contest_dirs):
    for contest_dir in contest_dirs:
        logging.debug('Entering {}'.format(contest_dir))
        contest = ejudge_contest.EjudgeContest(contest_dir)
        problems_ids = contest.get_problem_ids()
        for problem_id in problems_ids:
            logging.debug('Processing problem {} from contest {}'.format(problem_id[1], contest.contest_id))
            problem_name = contest.get_short_name_by_problem_id(problem_id)
            polygon_id = contest.get_polygon_id_by_problem_id(problem_id)
            tests_paths = contest.get_test_paths_by_problem_id(problem_id)
            tests_hashes = []
            for test_path in tests_paths:
                tests_hashes.append(md5_hasher.get_hash(test_path[0], test_path[1]))
            yield model.Problem(problem_id, polygon_id, problem_name, tests_hashes)
Ejemplo n.º 2
0
 def test_get_hash(self):
     self.assertEqual(get_hash(b'123', b'456'), 'e10adc3949ba59abbe56e057f20f883e')  # md5('123456')