/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_strace.py

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

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