sources for common.py [rev. unknown]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
from py.__.path.common import checker
import py
class CommonPathTests(object):
    root = None  # subclasses have to setup a 'root' attribute
    def test_constructor_equality(self):
        p = self.root.__class__(self.root)
        assert p == self.root
    def test_eq_nonstring(self):
        path1 = self.root.join('sampledir')
        path2 = self.root.join('sampledir')
        assert path1 == path2
    def test_new_identical(self):
        assert self.root == self.root.new()
    def test_join(self):
        p = self.root.join('sampledir')
        strp = str(p) 
        assert strp.endswith('sampledir') 
        assert strp.startswith(str(self.root)) 
    def test_join_normalized(self):
        newpath = self.root.join(self.root.sep+'sampledir')
        strp = str(newpath) 
        assert strp.endswith('sampledir') 
        assert strp.startswith(str(self.root)) 
        newpath = self.root.join((self.root.sep*2) + 'sampledir')
        strp = str(newpath) 
        assert strp.endswith('sampledir') 
        assert strp.startswith(str(self.root)) 
    def test_join_noargs(self):
        newpath = self.root.join()
        assert self.root == newpath
    def test_add_something(self):
        p = self.root.join('sample')
        p = p + 'dir'
        assert p.check()
    def test_parts(self):
        newpath = self.root.join('sampledir', 'otherfile')
        par = newpath.parts()[-3:]
        assert par == [self.root, self.root.join('sampledir'), newpath]
        revpar = newpath.parts(reverse=True)[:3]
        assert revpar == [newpath, self.root.join('sampledir'), self.root]
    def test_common(self):
        other = self.root.join('sampledir')
        x = other.common(self.root)
        assert x == self.root
    #def test_parents_nonexisting_file(self):
    #    newpath = self.root / 'dirnoexist' / 'nonexisting file'
    #    par = list(newpath.parents())
    #    assert par[:2] == [self.root / 'dirnoexist', self.root]
    def test_basename_checks(self):
        newpath = self.root.join('sampledir')
        assert newpath.check(basename='sampledir')
        assert newpath.check(notbasename='xyz')
        assert newpath.basename == 'sampledir'
    def test_basename(self):
        newpath = self.root.join('sampledir')
        assert newpath.check(basename='sampledir')
        assert newpath.basename, 'sampledir'
    def test_dirpath(self):
        newpath = self.root.join('sampledir')
        assert newpath.dirpath() == self.root
    def test_dirpath_with_args(self):
        newpath = self.root.join('sampledir')
        assert newpath.dirpath('x') == self.root.join('x')
    def test_newbasename(self):
        newpath = self.root.join('samplefile')
        newbase = newpath.new(basename="samplefile2")
        assert newbase.basename == "samplefile2"
        assert newbase.dirpath() == newpath.dirpath()
    def test_not_exists(self):
        assert not self.root.join('does_not_exist').check()
        assert self.root.join('does_not_exist').check(exists=0)
    def test_exists(self):
        assert self.root.join("samplefile").check()
        assert self.root.join("samplefile").check(exists=1)
    def test_dir(self):
        #print repr(self.root.join("sampledir"))
        assert self.root.join("sampledir").check(dir=1)
        assert self.root.join('samplefile').check(notdir=1)
        assert not self.root.join("samplefile").check(dir=1)
    def test_filter_dir(self):
        assert checker(dir=1)(self.root.join("sampledir"))
    def test_fnmatch_file(self):
        assert self.root.join("samplefile").check(fnmatch='s*e')
        assert self.root.join("samplefile").check(notfnmatch='s*x')
        assert not self.root.join("samplefile").check(fnmatch='s*x')
    #def test_fnmatch_dir(self):
    #    pattern = self.root.sep.join(['s*file'])
    #    sfile = self.root.join("samplefile")
    #    assert sfile.check(fnmatch=pattern)
    def test_relto(self):
        l=self.root.join("sampledir", "otherfile")
        assert l.relto(self.root) == l.sep.join(["sampledir", "otherfile"])
        assert l.check(relto=self.root)
        assert self.root.check(notrelto=l)
        assert not self.root.check(relto=l)
    def test_relto_not_relative(self):
        l1=self.root.join("bcde")
        l2=self.root.join("b")
        assert not l1.relto(l2)
        assert not l2.relto(l1)
    def test_listdir(self):
        l = self.root.listdir()
        assert self.root.join('sampledir') in l
        assert self.root.join('samplefile') in l
        py.test.raises(py.error.ENOTDIR,
                       "self.root.join('samplefile').listdir()")
    def test_listdir_fnmatchstring(self):
        l = self.root.listdir('s*dir')
        assert len(l)
        assert l[0], self.root.join('sampledir')
    def test_listdir_filter(self):
        l = self.root.listdir(checker(dir=1))
        assert self.root.join('sampledir') in l
        assert not self.root.join('samplefile') in l
    def test_listdir_sorted(self):
        l = self.root.listdir(checker(basestarts="sample"), sort=True)
        assert self.root.join('sampledir') == l[0]
        assert self.root.join('samplefile') == l[1]
        assert self.root.join('samplepickle') == l[2]
    def test_visit_nofilter(self):
        l = []
        for i in self.root.visit():
            l.append(i.relto(self.root))
        assert "sampledir" in l
        assert self.root.sep.join(["sampledir", "otherfile"]) in l
    def test_visit_norecurse(self):
        l = []
        for i in self.root.visit(None, lambda x: x.basename != "sampledir"):
            l.append(i.relto(self.root))
        assert "sampledir" in l
        assert not self.root.sep.join(["sampledir", "otherfile"]) in l
    def test_visit_filterfunc_is_string(self):
        l = []
        for i in self.root.visit('*dir'):
            l.append(i.relto(self.root))
        assert len(l), 2
        assert "sampledir" in l
        assert "otherdir" in l
    def test_visit_ignore(self):
        p = self.root.join('nonexisting')
        assert list(p.visit(ignore=py.error.ENOENT)) == []
    def test_visit_endswith(self):
        l = []
        for i in self.root.visit(checker(endswith="file")):
            l.append(i.relto(self.root))
        assert self.root.sep.join(["sampledir", "otherfile"]) in l
        assert "samplefile" in l
    def test_endswith(self):
        assert self.root.check(notendswith='.py')
        x = self.root.join('samplefile')
        assert x.check(endswith='file')
    def test_cmp(self):
        path1 = self.root.join('samplefile')
        path2 = self.root.join('samplefile2')
        assert cmp(path1, path2) == cmp('samplefile', 'samplefile2')
        assert cmp(path1, path1) == 0
    def test_contains_path(self):
        path1 = self.root.join('samplefile')
        assert path1 in self.root
        assert not self.root.join('not existing') in self.root
    def test_contains_path_with_basename(self):
        assert 'samplefile' in self.root
        assert 'not_existing' not in self.root
    def featuretest_check_docstring(self):
        here = self.root.__class__
        assert here.check.__doc__
        doc = here.check.__doc__
        for name in dir(local.Checkers):
            if name[0] != '_':
                assert name in doc
    def test_simple_read(self):
        x = self.root.join('samplefile').read('ru')
        assert x == 'samplefile\n'