Пример #1
0
def generate_output(args):
    if not args.test:
        args.test = glob_with_format(args.format) # by default
    if args.ignore_backup:
        args.test = drop_backup_or_hidden_files(args.test)
    tests = construct_relationship_of_files(args.test, args.format)
    for name, it in sorted(tests.items()):
        log.emit('')
        log.info('%s', name)
        if 'out' in it:
            log.info('output file already exists.')
            log.info('skipped.')
            continue
        with open(it['in']) as inf:
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command, shell=args.shell, stdin=inf)
            end = time.perf_counter()
            log.status('time: %f sec', end - begin)
        if proc.returncode != 0:
            log.failure(log.red('RE') + ': return code %d', proc.returncode)
            log.info('skipped.')
            continue
        log.emit(log.bold(answer.decode().rstrip()))
        path = path_from_format(args.format, match_with_format(args.format, it['in']).groupdict()['name'], 'out')
        with open(path, 'w') as fh:
            fh.buffer.write(answer)
        log.success('saved to: %s', path)
Пример #2
0
def generate_output(args: 'argparse.Namespace') -> None:
    if not args.test:
        args.test = cutils.glob_with_format(args.directory, args.format) # by default
    if args.ignore_backup:
        args.test = cutils.drop_backup_or_hidden_files(args.test)
    tests = cutils.construct_relationship_of_files(args.test, args.directory, args.format)
    for name, it in sorted(tests.items()):
        log.emit('')
        log.info('%s', name)
        if 'out' in it:
            log.info('output file already exists.')
            log.info('skipped.')
            continue
        with it['in'].open() as inf:
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command, shell=True, stdin=inf)
            end = time.perf_counter()
            log.status('time: %f sec', end - begin)
        if proc.returncode != 0:
            log.failure(log.red('RE') + ': return code %d', proc.returncode)
            log.info('skipped.')
            continue
        log.emit(log.bold(answer.decode().rstrip()))
        match_result = cutils.match_with_format(args.directory, args.format, it['in'])  # type: Optional[Match[Any]]
        if match_result is not None:
            matched_name = match_result.groupdict()['name']  # type: str
        else:
            assert False
        path = cutils.path_from_format(args.directory, args.format, name=matched_name, ext='out')
        if not path.parent.is_dir():
            os.makedirs(str(path.parent), exist_ok=True)
        with path.open('wb') as fh:
            fh.write(answer)
        log.success('saved to: %s', path)
Пример #3
0
def generate_output(args):
    if not args.test:
        args.test = cutils.glob_with_format(args.directory,
                                            args.format)  # by default
    if args.ignore_backup:
        args.test = cutils.drop_backup_or_hidden_files(args.test)
    tests = cutils.construct_relationship_of_files(args.test, args.directory,
                                                   args.format)
    for name, it in sorted(tests.items()):
        log.emit("")
        log.info("%s", name)
        if "out" in it:
            log.info("output file already exists.")
            log.info("skipped.")
            continue
        with open(it["in"]) as inf:
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command,
                                              shell=True,
                                              stdin=inf)
            end = time.perf_counter()
            log.status("time: %f sec", end - begin)
        if proc.returncode != 0:
            log.failure(log.red("RE") + ": return code %d", proc.returncode)
            log.info("skipped.")
            continue
        log.emit(log.bold(answer.decode().rstrip()))
        path = cutils.path_from_format(
            args.directory,
            args.format,
            name=cutils.match_with_format(args.directory, args.format,
                                          it["in"]).groupdict()["name"],
            ext="out",
        )
        with open(path, "w") as fh:
            fh.buffer.write(answer)
        log.success("saved to: %s", path)
Пример #4
0
def test(args):
    # prepare
    if not args.test:
        args.test = glob_with_format(args.format) # by default
    if args.ignore_backup:
        args.test = drop_backup_or_hidden_files(args.test)
    tests = construct_relationship_of_files(args.test, args.format)
    if args.error: # float mode
        match = lambda a, b: compare_as_floats(a, b, args.error)
    else:
        def match(a, b):
            if a == b:
                return True
            if args.rstrip and a.rstrip(rstrip_targets) == b.rstrip(rstrip_targets):
                log.warning('WA if no rstrip')
                return True
            return False
    rstrip_targets = ' \t\r\n\f\v\0'  # ruby's one, follow AnarchyGolf
    slowest, slowest_name = -1, ''
    ac_count = 0

    for name, it in sorted(tests.items()):
        is_printed_input = not args.print_input
        def print_input():
            nonlocal is_printed_input
            if not is_printed_input:
                is_printed_input = True
                with open(it['in']) as inf:
                    log.emit('input:\n%s', log.bold(inf.read()))

        log.emit('')
        log.info('%s', name)

        # run the binary
        with open(it['in']) as inf:
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command, shell=args.shell, stdin=inf, timeout=args.tle)
            end = time.perf_counter()
            answer = answer.decode()
            if slowest < end - begin:
                slowest = end - begin
                slowest_name = name
            log.status('time: %f sec', end - begin)
            proc.terminate()

        # check TLE, RE or not
        result = 'AC'
        if proc.returncode is None:
            log.failure(log.red('TLE'))
            result = 'TLE'
            print_input()
        elif proc.returncode != 0:
            log.failure(log.red('RE') + ': return code %d', proc.returncode)
            result = 'RE'
            print_input()

        # check WA or not
        if 'out' in it:
            with open(it['out']) as outf:
                correct = outf.read()
            # compare
            if args.mode == 'all':
                if not match(answer, correct):
                    log.failure(log.red('WA'))
                    print_input()
                    if not args.silent:
                        log.emit('output:\n%s', log.bold(answer))
                        log.emit('expected:\n%s', log.bold(correct))
                    result = 'WA'
            elif args.mode == 'line':
                answer  = answer .splitlines()
                correct = correct.splitlines()
                for i, (x, y) in enumerate(zip(answer + [ None ] * len(correct), correct + [ None ] * len(answer))):
                    if x is None and y is None:
                        break
                    elif x is None:
                        print_input()
                        log.failure(log.red('WA') + ': line %d: line is nothing: expected "%s"', i, log.bold(y))
                        result = 'WA'
                    elif y is None:
                        print_input()
                        log.failure(log.red('WA') + ': line %d: unexpected line: output "%s"', i, log.bold(x))
                        result = 'WA'
                    elif not match(x, y):
                        print_input()
                        log.failure(log.red('WA') + ': line %d: output "%s": expected "%s"', i, log.bold(x), log.bold(y))
                        result = 'WA'
            else:
                assert False
        else:
            if not args.silent:
                log.emit(log.bold(answer))
        if result == 'AC':
            log.success(log.green('AC'))
            ac_count += 1

    # summarize
    log.emit('')
    log.status('slowest: %f sec  (for %s)', slowest, slowest_name)
    if ac_count == len(tests):
        log.success('test ' + log.green('success') + ': %d cases', len(tests))
    else:
        log.failure('test ' + log.red('failed') + ': %d AC / %d cases', ac_count, len(tests))
        sys.exit(1)
Пример #5
0
def test(args):
    # prepare
    if not args.test:
        args.test = cutils.glob_with_format(args.directory,
                                            args.format)  # by default
    if args.ignore_backup:
        args.test = cutils.drop_backup_or_hidden_files(args.test)
    tests = cutils.construct_relationship_of_files(args.test, args.directory,
                                                   args.format)
    if args.error:  # float mode
        match = lambda a, b: compare_as_floats(a, b, args.error)
    else:

        def match(a, b):
            if a == b:
                return True
            if args.rstrip and a.rstrip(rstrip_targets) == b.rstrip(
                    rstrip_targets):
                log.warning("WA if no rstrip")
                return True
            return False

    rstrip_targets = " \t\r\n\f\v\0"  # ruby's one, follow AnarchyGolf
    slowest, slowest_name = -1, ""
    ac_count = 0

    for name, it in sorted(tests.items()):
        is_printed_input = not args.print_input

        def print_input():
            nonlocal is_printed_input
            if not is_printed_input:
                is_printed_input = True
                with open(it["in"]) as inf:
                    log.emit("input:\n%s", log.bold(inf.read()))

        log.emit("")
        log.info("%s", name)

        # run the binary
        with open(it["in"]) as inf:
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command,
                                              shell=True,
                                              stdin=inf,
                                              timeout=args.tle)
            end = time.perf_counter()
            answer = answer.decode()
            if slowest < end - begin:
                slowest = end - begin
                slowest_name = name
            log.status("time: %f sec", end - begin)
            proc.terminate()

        # check TLE, RE or not
        result = "AC"
        if proc.returncode is None:
            log.failure(log.red("TLE"))
            result = "TLE"
            print_input()
        elif proc.returncode != 0:
            log.failure(log.red("RE") + ": return code %d", proc.returncode)
            result = "RE"
            print_input()

        # check WA or not
        if "out" in it:
            with open(it["out"]) as outf:
                correct = outf.read()
            # compare
            if args.mode == "all":
                if not match(answer, correct):
                    log.failure(log.red("WA"))
                    print_input()
                    if not args.silent:
                        log.emit("output:\n%s", log.bold(answer))
                        log.emit("expected:\n%s", log.bold(correct))
                    result = "WA"
            elif args.mode == "line":
                answer = answer.splitlines()
                correct = correct.splitlines()
                for i, (x, y) in enumerate(
                        zip(answer + [None] * len(correct),
                            correct + [None] * len(answer))):
                    if x is None and y is None:
                        break
                    elif x is None:
                        print_input()
                        log.failure(
                            log.red("WA") +
                            ': line %d: line is nothing: expected "%s"',
                            i + 1,
                            log.bold(y),
                        )
                        result = "WA"
                    elif y is None:
                        print_input()
                        log.failure(
                            log.red("WA") +
                            ': line %d: unexpected line: output "%s"',
                            i + 1,
                            log.bold(x),
                        )
                        result = "WA"
                    elif not match(x, y):
                        print_input()
                        log.failure(
                            log.red("WA") +
                            ': line %d: output "%s": expected "%s"',
                            i + 1,
                            log.bold(x),
                            log.bold(y),
                        )
                        result = "WA"
            else:
                assert False
        else:
            if not args.silent:
                log.emit(log.bold(answer))
        if result == "AC":
            log.success(log.green("AC"))
            ac_count += 1

    # summarize
    log.emit("")
    log.status("slowest: %f sec  (for %s)", slowest, slowest_name)
    if ac_count == len(tests):
        log.success("test " + log.green("success") + ": %d cases", len(tests))
    else:
        log.failure("test " + log.red("failed") + ": %d AC / %d cases",
                    ac_count, len(tests))
        sys.exit(1)
Пример #6
0
def test(args: 'argparse.Namespace') -> None:
    # prepare
    if not args.test:
        args.test = cutils.glob_with_format(args.directory, args.format)  # by default
    if args.ignore_backup:
        args.test = cutils.drop_backup_or_hidden_files(args.test)
    # 自分で書き換えた箇所
    f = open('onlinejudge/communication.py', 'r')
    com_prob = f.read().split()[1]
    f.close()
    path = com_prob.upper() + '/test'
    args.test = []
    for p in os.listdir(path):
        args.test.append(pathlib.Path(com_prob.upper() + '/test/' + p))
    tests = cutils.construct_relationship_of_files(args.test, args.directory, args.format)
    if args.error: # float mode
        match = lambda a, b: compare_as_floats(a, b, args.error)
    else:
        def match(a, b):
            # 自分で書き換えた箇所
            a = a.replace(chr(13), '')
            b = b.replace(chr(13), '')
            if a == b:
                return 'AC'
            if args.rstrip and a.rstrip(rstrip_targets) == b.rstrip(rstrip_targets):
                log.faster_warning('WA if no rstrip')
                return 'AC'

            # 自分で書き換えた箇所
            # 小数出力の誤差許容
            def make_outlist(s):
                outlist = []
                tmp_token = ''
                for i in range(len(s)):
                    if s[i] == ' ' or s[i] == '\n' or i == len(s)-1:
                        if tmp_token != '':
                            outlist.append(tmp_token)
                        tmp_token = ''
                        continue
                    else:
                        tmp_token += s[i]
                return outlist

            outlist_a = make_outlist(a)
            outlist_b = make_outlist(b)

            if len(outlist_a) == len(outlist_b):
                flg = False
                for i in range(len(outlist_a)):
                    def isnum(s):
                        ''' 小数点およびマイナスも含めて数字であるか '''
                        try:
                            int(s)
                        except:
                            return re.fullmatch(r'[-]?[0-9]+[.][0-9]+', s) != None
                        return True

                    if isnum(outlist_a[i]) and isnum(outlist_b[i]):
                        # b が correct だと想定
                        if '.' in outlist_b[i]:
                            flg = True
                        permissible_error = float('1e-6')
                        if not (abs(float(outlist_a[i]) - float(outlist_b[i])) <= permissible_error or abs(float(outlist_a[i]) - float(outlist_b[i])) <= abs(float(outlist_b[i])) * permissible_error):
                            return 'WA'
                    else:
                        return 'WA'
                return ['AC_with_error', flg]
            return 'WA'

    rstrip_targets = ' \t\r\n\f\v\0'  # ruby's one, follow AnarchyGolf
    slowest = -1  # type: Union[int, float]
    slowest_name = ''
    ac_count = 0
    ac_with_error_count = 0
    error_permission = False

    history = []  # type: List[Dict[str, Any]]
    for name, it in sorted(tests.items()):
        is_printed_input = not args.print_input
        def print_input():
            nonlocal is_printed_input
            if not is_printed_input:
                is_printed_input = True
                with open(it['in']) as inf:
                    log.faster_emit('input:\n%s', log.bold(inf.read()))

        log.faster_emit('')
        log.faster_info('%s', name)

        # run the binary
        with it['in'].open() as inf:
            begin = time.perf_counter()
            answer_byte, proc = utils.exec_command(args.command, shell=True, stdin=inf, timeout=args.tle)
            end = time.perf_counter()
            elapsed = end - begin
            answer = answer_byte.decode()
            if slowest < elapsed:
                slowest = elapsed
                slowest_name = name
            log.faster_status('time: %f sec', elapsed)
            proc.terminate()

        # check TLE, RE or not
        result = 'AC'
        if proc.returncode is None:
            log.faster_failure(log.red('TLE'))
            result = 'TLE'
            print_input()
        elif proc.returncode != 0:
            log.faster_failure(log.red('RE') + ': return code %d', proc.returncode)
            result = 'RE'
            print_input()

        # check WA or not
        if 'out' in it:
            with it['out'].open() as outf:
                correct = outf.read()
            # compare
            if args.mode == 'all':
                if match(answer, correct) == 'WA':
                    log.faster_failure(log.red('WA'))
                    print_input()
                    if not args.silent:
                        log.faster_emit('output:\n%s', log.bold(answer))
                        log.faster_emit('expected:\n%s', log.bold(correct))
                    result = 'WA'
                elif match(answer, correct) == ['AC_with_error', True]:
                    print_input()
                    if not args.silent:
                        log.faster_emit('output:\n%s', log.bold(answer))
                        log.faster_emit('expected:\n%s', log.bold(correct))
                    result = 'AC_with_error'
                    error_permission = True
                elif match(answer, correct) == ['AC_with_error', False]:
                    print_input()
                    if not args.silent:
                        log.faster_emit('output:\n%s', log.bold(answer))
                        log.faster_emit('expected:\n%s', log.bold(correct))
                    result = 'AC_with_error'
            elif args.mode == 'line':
                answer_words  = answer .splitlines()
                correct_words = correct.splitlines()
                for i, (x, y) in enumerate(zip(answer_words + [ None ] * len(correct_words), correct_words + [ None ] * len(answer_words))):  # type: ignore
                    if x is None and y is None:
                        break
                    elif x is None:
                        print_input()
                        log.faster_failure(log.red('WA') + ': line %d: line is nothing: expected "%s"', i + 1, log.bold(y))
                        result = 'WA'
                    elif y is None:
                        print_input()
                        log.faster_failure(log.red('WA') + ': line %d: unexpected line: output "%s"', i + 1, log.bold(x))
                        result = 'WA'
                    elif match(x, y) == 'WA':
                        print_input()
                        log.faster_failure(log.red('WA') + ': line %d: output "%s": expected "%s"', i + 1, log.bold(x), log.bold(y))
                        result = 'WA'
            else:
                assert False
        else:
            if not args.silent:
                log.faster_emit(log.bold(answer))
        if result == 'AC':
            log.faster_success(log.green('AC'))
            ac_count += 1
        elif result == 'AC_with_error':
            log.faster_success(log.green('AC (with error)'))
            ac_count += 1
            ac_with_error_count += 1

        # push the result
        testcase = {
            'name': name,
            'input': str(it['in'].resolve()),
        }
        if 'out' in it:
            testcase['output'] = str(it['out'].resolve())
        history += [ {
            'result': result,
            'testcase': testcase,
            'output': answer,
            'exitcode': proc.returncode,
            'elapsed': elapsed,
        } ]

    # summarize
    log.faster_emit('')
    log.faster_status('slowest: %f sec  (for %s)', slowest, slowest_name)
    if ac_count == len(tests):
        # 自分で書き換えた箇所
        if ac_with_error_count > 0:
            if error_permission == True:
                log.faster_success('test ' + log.green('success (with error)') + ': %d cases', len(tests))
            else:
                log.faster_failure('test ' + log.green('success (with error)') + ': %d cases', len(tests))
                log.faster_error('your answer has error while correct answer has no error')
                log.faster_warning('please remove error from your answer')
                f = open('onlinejudge/communication.py', 'r')
                com_prev = f.readlines()
                f.close()
                f = open('onlinejudge/communication.py', 'w')
                f.writelines([' '.join(com_prev[0].split())] + [' ', 'WA', '\n'] + com_prev[1].split())
                f.close()
        else:
            log.faster_success('test ' + log.green('success') + ': %d cases', len(tests))
        # 自分で書き換えた箇所
        f = open('onlinejudge/communication.py', 'r')
        com_prev = f.readlines()
        f.close()
        f = open('onlinejudge/communication.py', 'w')
        f.writelines([' '.join(com_prev[0].split())] + [' ', 'AC', '\n'] + com_prev[1].split())
        f.close()
    else:
        log.faster_failure('test ' + log.red('failed') + ': %d AC / %d cases', ac_count, len(tests))
        # 自分で書き換えた箇所
        f = open('onlinejudge/communication.py', 'r')
        com_prev = f.readlines()
        f.close()
        f = open('onlinejudge/communication.py', 'w')
        f.writelines([' '.join(com_prev[0].split())] + [' ', 'WA', '\n'] + com_prev[1].split())
        f.close()

    if args.json:
        print(json.dumps(history))

    if ac_count != len(tests):
        sys.exit(1)
Пример #7
0
def test(args):
    if not args.test:
        args.test = glob_with_format(args.format) # by default
    tests = construct_relationship_of_files(args.test, args.format)
    # run tests
    if args.error: # float mode
        match = lambda a, b: compare_as_floats(a, b, args.error)
    else:
        match = lambda a, b: a == b
    rstrip_targets = ' \t\r\n\f\v\0'  # ruby's one, follow AnarchyGolf
    slowest, slowest_name = -1, ''
    ac_count = 0
    for name, it in sorted(tests.items()):
        log.emit('')
        log.info('%s', name)
        with open(it['in']) as inf:
            # run
            begin = time.perf_counter()
            answer, proc = utils.exec_command(args.command, shell=args.shell, stdin=inf, timeout=args.tle)
            end = time.perf_counter()
            answer = answer.decode()
            if args.rstrip:
                answer = answer.rstrip(rstrip_targets)
            if slowest < end - begin:
                slowest = end - begin
                slowest_name = name
            log.status('time: %f sec', end - begin)
            # check
            is_ac = True
            if proc.returncode is None:
                log.failure(log.red('TLE'))
                is_ac = False
            elif proc.returncode != 0:
                log.failure(log.red('RE') + ': return code %d', proc.returncode)
                is_ac = False
            if 'out' in it:
                with open(it['out']) as outf:
                    correct = outf.read()
                if args.rstrip:
                    correct = correct.rstrip(rstrip_targets)
                # compare
                if args.mode == 'all':
                    if not match(answer, correct):
                        log.failure(log.red('WA'))
                        if not args.silent:
                            log.emit('output:\n%s', log.bold(answer))
                            log.emit('expected:\n%s', log.bold(correct))
                        is_ac = False
                elif args.mode == 'line':
                    answer  = answer .splitlines()
                    correct = correct.splitlines()
                    for i, (x, y) in enumerate(zip(answer + [ None ] * len(correct), correct + [ None ] * len(answer))):
                        if x is None and y is None:
                            break
                        elif x is None:
                            log.failure(log.red('WA') + ': line %d: line is nothing: expected "%s"', i, log.bold(y))
                            is_ac = False
                        elif y is None:
                            log.failure(log.red('WA') + ': line %d: unexpected line: output "%s"', i, log.bold(x))
                            is_ac = False
                        elif not match(x, y):
                            log.failure(log.red('WA') + ': line %d: output "%s": expected "%s"', i, log.bold(x), log.bold(y))
                            is_ac = False
                else:
                    assert False
            else:
                if not args.silent:
                    log.emit(log.bold(answer))
            if is_ac:
                log.success(log.green('AC'))
                ac_count += 1
    # summarize
    log.emit('')
    log.status('slowest: %f sec  (for %s)', slowest, slowest_name)
    if ac_count == len(tests):
        log.success('test ' + log.green('success') + ': %d cases', len(tests))
    else:
        log.failure('test ' + log.red('failed') + ': %d AC / %d cases', ac_count, len(tests))
        sys.exit(1)