~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_strace.py

  • Committer: Martin Pool
  • Date: 2005-07-28 11:56:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050728115624-93c11c2b1e399023
- note changes to command line parsing

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""Tests for the strace-invoking support."""
18
 
 
19
 
import errno
20
 
import subprocess
21
 
import threading
22
 
 
23
 
from bzrlib import (
24
 
    strace,
25
 
    tests,
26
 
    )
27
 
from bzrlib.strace import StraceFeature, strace_detailed, StraceResult
28
 
 
29
 
 
30
 
class TestStrace(tests.TestCaseWithTransport):
31
 
 
32
 
    _test_needs_features = [StraceFeature]
33
 
 
34
 
    def setUp(self):
35
 
        # NB: see http://pad.lv/626679 and
36
 
        # <https://code.launchpad.net/~mbp/bzr/626679-strace/+merge/34157>:
37
 
        # testing strace by connecting to ourselves has repeatedly caused
38
 
        # hangs in running the test suite; these are fixable given enough
39
 
        # determination but given that strace is not used by any other tests
40
 
        # at the moment and that it's only test-support code, we just leave it
41
 
        # untested -- mbp 20100901
42
 
        raise tests.TestSkipped("strace selftests are broken and disabled")
43
 
 
44
 
    def _check_threads(self):
45
 
        # For bug #226769, it was decided that the strace tests should not be
46
 
        # run when more than one thread is active. A lot of tests are currently
47
 
        # leaking threads for good or bad reasons, once they are fixed or
48
 
        # strace itself is fixed (bug #103133), we can get rid of the
49
 
        # restriction.
50
 
        active = threading.activeCount()
51
 
        if active > 1: # There is always the main thread at least
52
 
            raise tests.KnownFailure(
53
 
                '%d active threads, bug #103133 needs to be fixed.' % active)
54
 
 
55
 
    def strace_detailed_or_skip(self, *args, **kwargs):
56
 
        """Run strace, but cope if it's not allowed"""
57
 
        try:
58
 
            return strace_detailed(*args, **kwargs)
59
 
        except strace.StraceError, e:
60
 
            if e.err_messages.startswith(
61
 
                    "attach: ptrace(PTRACE_ATTACH, ...): Operation not permitted"):
62
 
                raise tests.TestSkipped("ptrace not permitted")
63
 
            else:
64
 
                raise
65
 
 
66
 
    def test_strace_callable_is_called(self):
67
 
        self._check_threads()
68
 
 
69
 
        output = []
70
 
        def function(positional, *args, **kwargs):
71
 
            output.append((positional, args, kwargs))
72
 
        self.strace_detailed_or_skip(
73
 
            function, ["a", "b"], {"c": "c"},
74
 
            follow_children=False)
75
 
        self.assertEqual([("a", ("b",), {"c":"c"})], output)
76
 
 
77
 
    def test_strace_callable_result(self):
78
 
        self._check_threads()
79
 
 
80
 
        def function():
81
 
            return "foo"
82
 
        result, strace_result = self.strace_detailed_or_skip(function,[], {},
83
 
                                                follow_children=False)
84
 
        self.assertEqual("foo", result)
85
 
        self.assertIsInstance(strace_result, StraceResult)
86
 
 
87
 
    def test_strace_result_has_raw_log(self):
88
 
        """Checks that a reasonable raw strace log was found by strace."""
89
 
        self._check_threads()
90
 
 
91
 
        def function():
92
 
            self.build_tree(['myfile'])
93
 
        unused, result = self.strace_detailed_or_skip(function, [], {},
94
 
                                         follow_children=False)
95
 
        self.assertContainsRe(result.raw_log, 'myfile')