~bzr-pqm/bzr/bzr.dev

5557.1.15 by John Arbash Meinel
Merge bzr.dev 5597 to resolve NEWS, aka bzr-2.3.txt
1
# Copyright (C) 2007-2011 Canonical Ltd
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
16
17
"""Tests for the strace-invoking support."""
18
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
19
import threading
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
20
3406.1.1 by Vincent Ladeuil
Fix #226769 by disabling some strace tests.
21
from bzrlib import (
5398.2.1 by Martin Pool
Cope with strace not allowing you to attach to your own processes
22
    strace,
3406.1.1 by Vincent Ladeuil
Fix #226769 by disabling some strace tests.
23
    tests,
24
    )
2566.3.4 by Vincent Ladeuil
Take Martin and Robert comments into account.
25
from bzrlib.strace import StraceFeature, strace_detailed, StraceResult
3406.1.1 by Vincent Ladeuil
Fix #226769 by disabling some strace tests.
26
27
28
class TestStrace(tests.TestCaseWithTransport):
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
29
30
    _test_needs_features = [StraceFeature]
31
5398.2.3 by Martin Pool
Just skip the strace tests
32
    def setUp(self):
33
        # NB: see http://pad.lv/626679 and
34
        # <https://code.launchpad.net/~mbp/bzr/626679-strace/+merge/34157>:
35
        # testing strace by connecting to ourselves has repeatedly caused
36
        # hangs in running the test suite; these are fixable given enough
37
        # determination but given that strace is not used by any other tests
38
        # at the moment and that it's only test-support code, we just leave it
39
        # untested -- mbp 20100901
40
        raise tests.TestSkipped("strace selftests are broken and disabled")
41
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
42
    def _check_threads(self):
3406.1.3 by Vincent Ladeuil
Fixed as par John's review.
43
        # For bug #226769, it was decided that the strace tests should not be
44
        # run when more than one thread is active. A lot of tests are currently
45
        # leaking threads for good or bad reasons, once they are fixed or
46
        # strace itself is fixed (bug #103133), we can get rid of the
47
        # restriction.
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
48
        active = threading.activeCount()
49
        if active > 1: # There is always the main thread at least
50
            raise tests.KnownFailure(
51
                '%d active threads, bug #103133 needs to be fixed.' % active)
3406.1.1 by Vincent Ladeuil
Fix #226769 by disabling some strace tests.
52
5398.2.1 by Martin Pool
Cope with strace not allowing you to attach to your own processes
53
    def strace_detailed_or_skip(self, *args, **kwargs):
54
        """Run strace, but cope if it's not allowed"""
55
        try:
56
            return strace_detailed(*args, **kwargs)
57
        except strace.StraceError, e:
58
            if e.err_messages.startswith(
59
                    "attach: ptrace(PTRACE_ATTACH, ...): Operation not permitted"):
60
                raise tests.TestSkipped("ptrace not permitted")
61
            else:
62
                raise
63
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
64
    def test_strace_callable_is_called(self):
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
65
        self._check_threads()
66
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
67
        output = []
68
        def function(positional, *args, **kwargs):
69
            output.append((positional, args, kwargs))
5398.2.1 by Martin Pool
Cope with strace not allowing you to attach to your own processes
70
        self.strace_detailed_or_skip(
71
            function, ["a", "b"], {"c": "c"},
72
            follow_children=False)
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
73
        self.assertEqual([("a", ("b",), {"c":"c"})], output)
74
2367.1.9 by Robert Collins
Review feedback.
75
    def test_strace_callable_result(self):
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
76
        self._check_threads()
3406.1.1 by Vincent Ladeuil
Fix #226769 by disabling some strace tests.
77
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
78
        def function():
2367.1.9 by Robert Collins
Review feedback.
79
            return "foo"
5398.2.1 by Martin Pool
Cope with strace not allowing you to attach to your own processes
80
        result, strace_result = self.strace_detailed_or_skip(function,[], {},
2566.3.4 by Vincent Ladeuil
Take Martin and Robert comments into account.
81
                                                follow_children=False)
2367.1.9 by Robert Collins
Review feedback.
82
        self.assertEqual("foo", result)
83
        self.assertIsInstance(strace_result, StraceResult)
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
84
85
    def test_strace_result_has_raw_log(self):
86
        """Checks that a reasonable raw strace log was found by strace."""
3406.1.2 by Vincent Ladeuil
Fix as per Robert's review.
87
        self._check_threads()
88
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
89
        def function():
90
            self.build_tree(['myfile'])
5398.2.1 by Martin Pool
Cope with strace not allowing you to attach to your own processes
91
        unused, result = self.strace_detailed_or_skip(function, [], {},
2566.3.4 by Vincent Ladeuil
Take Martin and Robert comments into account.
92
                                         follow_children=False)
2367.1.7 by Robert Collins
Added ``bzrlib.strace.strace`` which will strace a single callable and
93
        self.assertContainsRe(result.raw_log, 'myfile')