aboutsummaryrefslogtreecommitdiff
path: root/test/split-testfile.py
blob: 97a489e3c146eadba532cdf56d06726cffa020f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/python
#
# Copyright (c) 2009 Petri Lehtinen <petri@digip.org>
#
# Jansson is free software; you can redistribute it and/or modify
# it under the terms of the MIT license. See LICENSE for details.

import os
import sys
from optparse import OptionParser

def strip_file(filename):
    with open(filename) as fobj:
        data = fobj.read()
    with open(filename, 'w') as fobj:
        fobj.write(data.strip())

def open_files(outdir, i, name):
    basename = '%02d_%s' % (i, name)
    print basename
    input_path = os.path.join(outdir, basename + '.in')
    output_path = os.path.join(outdir, basename + '.out')
    return open(input_path, 'w'), open(output_path, 'w')

def main():
    parser = OptionParser('usage: %prog [options] inputfile outputdir')
    parser.add_option('--strip', help='strip whitespace from input',
                      action='store_true', default=False)
    options, args = parser.parse_args()

    if len(args) != 2:
        parser.print_help()
        return 2

    infile = os.path.normpath(args[0])
    outdir = os.path.normpath(args[1])

    if not os.path.exists(outdir):
        print >>sys.stderr, 'output directory %r does not exist!' % outdir
        return 1

    n = 0
    current = None
    input, output = None, None

    for line in open(infile):
        if line.startswith('==== '):
            n += 1
            if input is not None and output is not None:
                input.close()
                output.close()
                if options.strip:
                    strip_file(input.name)
            input, output = open_files(outdir, n, line[5:line.find(' ====\n')])
            current = input
        elif line == '====\n':
            current = output
        else:
            current.write(line)

    if input is not None and output is not None:
        input.close()
        output.close()

    print >>sys.stderr, "%s: %d test cases" % (infile, n)

if __name__ == '__main__':
    sys.exit(main() or 0)