~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/features.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 16:43:12 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730164312-b025fd3ff0cee59e
rename  gpl.txt => COPYING.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 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
 
"""A collection of commonly used 'Features' which bzrlib uses to skip tests."""
18
 
 
19
 
import os
20
 
import stat
21
 
 
22
 
from bzrlib import tests
23
 
from bzrlib.symbol_versioning import deprecated_in
24
 
 
25
 
 
26
 
apport = tests.ModuleAvailableFeature('apport')
27
 
paramiko = tests.ModuleAvailableFeature('paramiko')
28
 
pycurl = tests.ModuleAvailableFeature('pycurl')
29
 
pywintypes = tests.ModuleAvailableFeature('pywintypes')
30
 
subunit = tests.ModuleAvailableFeature('subunit')
31
 
 
32
 
 
33
 
class _BackslashDirSeparatorFeature(tests.Feature):
34
 
 
35
 
    def _probe(self):
36
 
        try:
37
 
            os.lstat(os.getcwd() + '\\')
38
 
        except OSError:
39
 
            return False
40
 
        else:
41
 
            return True
42
 
 
43
 
    def feature_name(self):
44
 
        return "Filesystem treats '\\' as a directory separator."
45
 
 
46
 
backslashdir_feature = _BackslashDirSeparatorFeature()
47
 
 
48
 
 
49
 
class _PosixPermissionsFeature(tests.Feature):
50
 
 
51
 
    def _probe(self):
52
 
        def has_perms():
53
 
            # create temporary file and check if specified perms are maintained.
54
 
            import tempfile
55
 
 
56
 
            write_perms = stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
57
 
            f = tempfile.mkstemp(prefix='bzr_perms_chk_')
58
 
            fd, name = f
59
 
            os.close(fd)
60
 
            os.chmod(name, write_perms)
61
 
 
62
 
            read_perms = os.stat(name).st_mode & 0777
63
 
            os.unlink(name)
64
 
            return (write_perms == read_perms)
65
 
 
66
 
        return (os.name == 'posix') and has_perms()
67
 
 
68
 
    def feature_name(self):
69
 
        return 'POSIX permissions support'
70
 
 
71
 
 
72
 
posix_permissions_feature = _PosixPermissionsFeature()
73
 
 
74
 
 
75
 
class _ChownFeature(tests.Feature):
76
 
    """os.chown is supported"""
77
 
 
78
 
    def _probe(self):
79
 
        return os.name == 'posix' and hasattr(os, 'chown')
80
 
 
81
 
chown_feature = _ChownFeature()
82
 
 
83
 
 
84
 
class ExecutableFeature(tests.Feature):
85
 
    """Feature testing whether an executable of a given name is on the PATH."""
86
 
 
87
 
    def __init__(self, name):
88
 
        super(ExecutableFeature, self).__init__()
89
 
        self.name = name
90
 
        self._path = None
91
 
 
92
 
    @property
93
 
    def path(self):
94
 
        # This is a property, so accessing path ensures _probe was called
95
 
        self.available()
96
 
        return self._path
97
 
 
98
 
    def _probe(self):
99
 
        path = os.environ.get('PATH')
100
 
        if path is None:
101
 
            return False
102
 
        for d in path.split(os.pathsep):
103
 
            if d:
104
 
                f = os.path.join(d, self.name)
105
 
                if os.access(f, os.X_OK):
106
 
                    self._path = f
107
 
                    return True
108
 
        return False
109
 
 
110
 
    def feature_name(self):
111
 
        return '%s executable' % self.name
112
 
 
113
 
 
114
 
bash_feature = ExecutableFeature('bash')
115
 
sed_feature = ExecutableFeature('sed')