~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testhashcache.py

merge merge tweaks from aaron, which includes latest .dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
import os
18
 
import sha
19
 
import sys
20
 
import time
 
17
from bzrlib.selftest import TestCaseInTempDir
21
18
 
22
 
from bzrlib.errors import BzrError
23
 
from bzrlib.hashcache import HashCache
24
 
from bzrlib.tests import TestCaseInTempDir, TestSkipped
25
19
 
26
20
 
27
21
def sha1(t):
 
22
    import sha
28
23
    return sha.new(t).hexdigest()
29
24
 
30
25
 
31
26
def pause():
32
 
    if False:
33
 
        return
34
 
    if sys.platform in ('win32', 'cygwin'):
35
 
        time.sleep(3)
36
 
        return
 
27
    import time
37
28
    # allow it to stabilize
38
29
    start = int(time.time())
39
30
    while int(time.time()) == start:
40
31
        time.sleep(0.2)
41
 
 
42
 
 
43
 
class FixThisError(Exception):
44
 
    pass
45
32
    
46
33
 
47
34
class TestHashCache(TestCaseInTempDir):
48
35
 
49
36
    def test_hashcache(self):
50
37
        """Functional tests for hashcache"""
 
38
        from bzrlib.hashcache import HashCache
 
39
        import os
51
40
 
52
41
        # make a dummy bzr directory just to hold the cache
53
42
        os.mkdir('.bzr')
54
 
        hc = HashCache('.', '.bzr/stat-cache')
 
43
        hc = HashCache('.')
55
44
 
56
45
        file('foo', 'wb').write('hello')
57
46
        os.mkdir('subdir')
99
88
 
100
89
        self.assertEquals(hc.get_sha1('subdir'), None)
101
90
 
102
 
        # pause briefly to make sure they're not treated as new uncacheable
103
 
        # files
 
91
        # it's likely neither are cached at the moment because they 
 
92
        # changed recently, but we can't be sure
104
93
        pause()
105
94
 
 
95
        # should now be safe to cache it if we reread them
106
96
        self.assertEquals(hc.get_sha1('foo'), sha1('g00dbye'))
 
97
        self.assertEquals(len(hc._cache), 1)
107
98
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
 
99
        self.assertEquals(len(hc._cache), 2)
108
100
 
109
101
        # write out, read back in and check that we don't need to
110
102
        # re-read any files
111
103
        hc.write()
112
104
        del hc
113
105
 
114
 
        hc = HashCache('.', '.bzr/stat-cache')
 
106
        hc = HashCache('.')
115
107
        hc.read()
116
108
 
117
109
        self.assertEquals(len(hc._cache), 2)
119
111
        self.assertEquals(hc.hit_count, 1)
120
112
        self.assertEquals(hc.miss_count, 0)
121
113
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
122
 
 
123
 
    def test_hashcache_raise(self):
124
 
        """check that hashcache can raise BzrError"""
125
 
 
126
 
        os.mkdir('.bzr')
127
 
        hc = HashCache('.', '.bzr/stat-cache')
128
 
        ok = False
129
 
 
130
 
        # make a best effort to create a weird kind of file
131
 
        funcs = (getattr(os, 'mkfifo', None), getattr(os, 'mknod', None))
132
 
        for func in funcs:
133
 
            if func is None:
134
 
                continue
135
 
            try:
136
 
                func('a')
137
 
                ok = True
138
 
                break
139
 
            except FixThisError:
140
 
                pass
141
 
 
142
 
        if ok:
143
 
            self.assertRaises(BzrError, hc.get_sha1, 'a')
144
 
        else:
145
 
            raise TestSkipped('No weird file type could be created')