~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lsprof.py

  • Committer: Ian Clatworthy
  • Date: 2007-06-06 10:45:08 UTC
  • mto: This revision was merged to the branch mainline in revision 2527.
  • Revision ID: ian.clatworthy@internode.on.net-20070606104508-q2i41r4r23xkaebs
changes requested in jameinel's review incorporated

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Tests for profiling data collection."""
 
18
 
 
19
 
 
20
import cPickle
 
21
import os
 
22
 
 
23
import bzrlib
 
24
from bzrlib.lsprof import profile
 
25
from bzrlib.tests import TestCaseInTempDir
 
26
 
 
27
 
 
28
def _junk_callable():
 
29
    "A simple routine to profile."
 
30
    result = sorted(['abc', 'def', 'ghi'])
 
31
 
 
32
 
 
33
def _collect_stats():
 
34
    "Collect and return some dummy profile data."
 
35
    ret, stats = profile(_junk_callable)
 
36
    return stats
 
37
 
 
38
 
 
39
class TestStatsSave(TestCaseInTempDir):
 
40
 
 
41
    def setUp(self):
 
42
        super(TestCaseInTempDir, self).setUp()
 
43
        self.stats = _collect_stats()
 
44
 
 
45
    def _tempfile(self, ext):
 
46
        dir = self.test_dir
 
47
        return os.path.join(dir, "tmp_profile_data." + ext)
 
48
 
 
49
    def test_stats_save_to_txt(self):
 
50
        f = self._tempfile("txt")
 
51
        self.stats.save(f)
 
52
        lines = open(f).readlines()
 
53
        self.assertEqual(lines[0], "   CallCount    Recursive    Total(ms)   "
 
54
            "Inline(ms) module:lineno(function)\n")
 
55
 
 
56
    def test_stats_save_to_callgrind(self):
 
57
        f = self._tempfile("callgrind")
 
58
        self.stats.save(f)
 
59
        lines = open(f).readlines()
 
60
 
 
61
    def test_stats_save_to_pickle(self):
 
62
        f = self._tempfile("pkl")
 
63
        self.stats.save(f)
 
64
        data1 = cPickle.load(open(f))
 
65
        self.assertEqual(type(data1), bzrlib.lsprof.Stats)