File: test-linetrace.py.in

package info (click to toggle)
pydb 1.26-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 2,460 kB
  • ctags: 1,061
  • sloc: python: 4,200; perl: 2,479; sh: 873; lisp: 866; makefile: 634; ansic: 16
file content (67 lines) | stat: -rwxr-xr-x 2,378 bytes parent folder | download | duplicates (2)
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
#!@PYTHON@ -t
# -*- Python -*-
# $Id: test-linetrace.py.in,v 1.5 2008/12/08 00:40:57 rockyb Exp $
"Unit test for Extended Python debugger's set linetrace "
import difflib, os, sys, time, unittest

top_builddir = "@top_builddir@"
if top_builddir[-1] != os.path.sep:
    top_builddir += os.path.sep
sys.path.insert(0, os.path.join(top_builddir, 'pydb'))
top_srcdir = "@top_srcdir@"
if top_srcdir[-1] != os.path.sep:
    top_srcdir += os.path.sep
sys.path.insert(0, os.path.join(top_srcdir, 'pydb'))

def run_python(testname, pythonfile, args='', outfile=None):
    srcdir = os.path.join(top_srcdir, 'test')
    pythonfile = os.path.join(".", pythonfile)
    outfile_opt = ''
    if outfile is None:
        outfile     = "%s.out" % testname

    if sys.hexversion >= 0x02050000:
        rightfile   = os.path.join(srcdir, 'data',
                                   "%s-2.5.right" % testname)
    elif sys.version_info[0:2] == (2, 4) and sys.version_info[3] == 'final':
        rightfile   = os.path.join(srcdir, 'data',
                                   "%s-2.4-final.right" % testname)
    else:
        rightfile   = os.path.join(srcdir, 'data',
                                   "%s.right" % testname)

    if os.path.exists(outfile): os.unlink(outfile)

    cmd = "(@PYTHON@ %s %s) >%s 2>&1" % (pythonfile, args, outfile)
    os.system(cmd)

    # Do diff on output
    fromfile  = rightfile
    fromdate  = time.ctime(os.stat(fromfile).st_mtime)
    fromlines = open(fromfile, 'U').readlines()[1:-1]
    tofile    = outfile
    todate    = time.ctime(os.stat(tofile).st_mtime)
    tolines   = open(tofile, 'U').readlines()[1:-1]

    # 3rd line has a path in it. Pick out just the non-path tail of that
    fromlines[2] = fromlines[2][-24:]
    tolines[2] = tolines[2][-24:]
    diff = list(difflib.unified_diff(fromlines, tolines,
                                     fromfile, tofile, fromdate, todate))
    if len(diff) == 0:
        os.unlink(outfile)
    for line in diff:
        print line,
    return len(diff) == 0
    
class PdbTests(unittest.TestCase):

    def test_settrace(self):
        """Test that 'tracing and set_trace (debugger) work"""
        global builddir
        result = run_python("tracetest", "settrace.py")
        self.assertEqual(True, result, "hanoi trace output comparision")
        return

if __name__ == "__main__":
    unittest.main()