~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testhashcache.py

  • Committer: Martin Pool
  • Date: 2005-08-25 05:58:05 UTC
  • mfrom: (974.1.36)
  • Revision ID: mbp@sourcefrog.net-20050825055805-8c892bc3c2d75131
- merge aaron's merge improvements:

  * When merging, pull in all missing revisions from the source
    branch. 

  * Detect common ancestors by looking at the whole ancestry graph, 
    rather than just mainline history.

  Some changes to reconcile this with parallel updates to the test and
  trace code.

aaron.bentley@utoronto.ca-20050823052551-f3401a8b57d9126f

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 InTempDir
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
 
class TestHashCache(TestCaseInTempDir):
 
34
class TestHashCache(InTempDir):
48
35
 
49
36
    def test_hashcache(self):
50
37
        """Functional tests for hashcache"""
 
38
        from bzrlib.hashcache import HashCache
 
39
        import os
 
40
        import time
51
41
 
52
42
        # make a dummy bzr directory just to hold the cache
53
43
        os.mkdir('.bzr')
54
 
        hc = HashCache('.', '.bzr/stat-cache')
 
44
        hc = HashCache('.')
55
45
 
56
46
        file('foo', 'wb').write('hello')
57
47
        os.mkdir('subdir')
99
89
 
100
90
        self.assertEquals(hc.get_sha1('subdir'), None)
101
91
 
102
 
        # pause briefly to make sure they're not treated as new uncacheable
103
 
        # files
 
92
        # it's likely neither are cached at the moment because they 
 
93
        # changed recently, but we can't be sure
104
94
        pause()
105
95
 
 
96
        # should now be safe to cache it if we reread them
106
97
        self.assertEquals(hc.get_sha1('foo'), sha1('g00dbye'))
 
98
        self.assertEquals(len(hc._cache), 1)
107
99
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
 
100
        self.assertEquals(len(hc._cache), 2)
108
101
 
109
102
        # write out, read back in and check that we don't need to
110
103
        # re-read any files
111
104
        hc.write()
112
105
        del hc
113
106
 
114
 
        hc = HashCache('.', '.bzr/stat-cache')
 
107
        hc = HashCache('.')
115
108
        hc.read()
116
109
 
117
110
        self.assertEquals(len(hc._cache), 2)
119
112
        self.assertEquals(hc.hit_count, 1)
120
113
        self.assertEquals(hc.miss_count, 0)
121
114
        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')