~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testhashcache.py

  • Committer: Martin Pool
  • Date: 2005-09-12 09:50:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050912095044-6acfdb5611729987
- no tests in bzrlib.fetch anymore

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
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')
114
103
        hc.write()
115
104
        del hc
116
105
 
117
 
        hc = HashCache('.', '.bzr/stat-cache')
 
106
        hc = HashCache('.')
118
107
        hc.read()
119
108
 
120
109
        self.assertEquals(len(hc._cache), 2)
122
111
        self.assertEquals(hc.hit_count, 1)
123
112
        self.assertEquals(hc.miss_count, 0)
124
113
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
125
 
 
126
 
    def test_hashcache_raise(self):
127
 
        """check that hashcache can raise BzrError"""
128
 
 
129
 
        os.mkdir('.bzr')
130
 
        hc = HashCache('.', '.bzr/stat-cache')
131
 
        ok = False
132
 
 
133
 
        # make a best effort to create a weird kind of file
134
 
        funcs = (os.mkfifo, os.mknod)
135
 
        for func in funcs:
136
 
            try:
137
 
                func('a')
138
 
                ok = True
139
 
                break
140
 
            except FixThisError:
141
 
                pass
142
 
 
143
 
        if ok:
144
 
            self.assertRaises(BzrError, hc.get_sha1, 'a')
145
 
        else:
146
 
            raise BzrError("no weird file type could be created: extend this test case for your os")