/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testhashcache.py

  • Committer: Robert Collins
  • Date: 2005-10-19 10:11:57 UTC
  • mfrom: (1185.16.78)
  • mto: This revision was merged to the branch mainline in revision 1470.
  • Revision ID: robertc@robertcollins.net-20051019101157-17438d311e746b4f
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011, 2016 Canonical Ltd
2
 
#
 
1
# (C) 2005 Canonical Ltd
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
import os
18
 
import stat
19
18
import time
20
 
 
21
 
from .. import osutils
22
 
from ..errors import BzrError
23
 
from ..hashcache import HashCache
24
 
from . import (
25
 
    TestCaseInTempDir,
26
 
    )
27
 
from .features import (
28
 
    OsFifoFeature,
29
 
    )
30
 
 
31
 
 
32
 
sha1 = osutils.sha_string
 
19
from bzrlib.selftest import TestCaseInTempDir
 
20
 
 
21
 
 
22
 
 
23
def sha1(t):
 
24
    import sha
 
25
    return sha.new(t).hexdigest()
33
26
 
34
27
 
35
28
def pause():
36
 
    time.sleep(5.0)
37
 
 
 
29
    if False:
 
30
        return
 
31
    if os.name == 'nt':
 
32
        time.sleep(3)
 
33
        return
 
34
    # allow it to stabilize
 
35
    start = int(time.time())
 
36
    while int(time.time()) == start:
 
37
        time.sleep(0.2)
 
38
    
38
39
 
39
40
class TestHashCache(TestCaseInTempDir):
40
 
    """Test the hashcache against a real directory"""
41
 
 
42
 
    def make_hashcache(self):
 
41
 
 
42
    def test_hashcache(self):
 
43
        """Functional tests for hashcache"""
 
44
        from bzrlib.hashcache import HashCache
 
45
        import os
 
46
 
43
47
        # make a dummy bzr directory just to hold the cache
44
48
        os.mkdir('.bzr')
45
 
        hc = HashCache(u'.', '.bzr/stat-cache')
46
 
        return hc
47
 
 
48
 
    def reopen_hashcache(self):
49
 
        hc = HashCache(u'.', '.bzr/stat-cache')
 
49
        hc = HashCache('.')
 
50
 
 
51
        file('foo', 'wb').write('hello')
 
52
        os.mkdir('subdir')
 
53
        pause()
 
54
 
 
55
        self.assertEquals(hc.get_sha1('foo'),
 
56
                          'aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d')
 
57
        self.assertEquals(hc.miss_count, 1)
 
58
        self.assertEquals(hc.hit_count, 0)
 
59
 
 
60
        # check we hit without re-reading
 
61
        self.assertEquals(hc.get_sha1('foo'),
 
62
                          'aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d')
 
63
        ##self.assertEquals(hc.miss_count, 1)
 
64
        ##self.assertEquals(hc.hit_count, 1)
 
65
 
 
66
        # check again without re-reading
 
67
        self.assertEquals(hc.get_sha1('foo'),
 
68
                          'aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d')
 
69
        ##self.assertEquals(hc.miss_count, 1)
 
70
        ##self.assertEquals(hc.hit_count, 2)
 
71
 
 
72
        # write new file and make sure it is seen
 
73
        file('foo', 'wb').write('goodbye')
 
74
        pause()
 
75
        self.assertEquals(hc.get_sha1('foo'),
 
76
                          '3c8ec4874488f6090a157b014ce3397ca8e06d4f')
 
77
        ##self.assertEquals(hc.miss_count, 2)
 
78
 
 
79
        # quickly write new file of same size and make sure it is seen
 
80
        # this may rely on detection of timestamps that are too close
 
81
        # together to be safe
 
82
        file('foo', 'wb').write('g00dbye')
 
83
        self.assertEquals(hc.get_sha1('foo'),
 
84
                          sha1('g00dbye'))
 
85
 
 
86
        file('foo2', 'wb').write('other file')
 
87
        self.assertEquals(hc.get_sha1('foo2'), sha1('other file'))
 
88
 
 
89
        os.remove('foo2')
 
90
        self.assertEquals(hc.get_sha1('foo2'), None)
 
91
 
 
92
        file('foo2', 'wb').write('new content')
 
93
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
 
94
 
 
95
        self.assertEquals(hc.get_sha1('subdir'), None)
 
96
 
 
97
        # it's likely neither are cached at the moment because they 
 
98
        # changed recently, but we can't be sure
 
99
        pause()
 
100
 
 
101
        # should now be safe to cache it if we reread them
 
102
        self.assertEquals(hc.get_sha1('foo'), sha1('g00dbye'))
 
103
        ##self.assertEquals(len(hc._cache), 1)
 
104
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))
 
105
        ##self.assertEquals(len(hc._cache), 2)
 
106
 
 
107
        # write out, read back in and check that we don't need to
 
108
        # re-read any files
 
109
        hc.write()
 
110
        del hc
 
111
 
 
112
        hc = HashCache('.')
50
113
        hc.read()
51
 
        return hc
52
 
 
53
 
    def test_hashcache_initial_miss(self):
54
 
        """Get correct hash from an empty hashcache"""
55
 
        hc = self.make_hashcache()
56
 
        self.build_tree_contents([('foo', b'hello')])
57
 
        self.assertEqual(hc.get_sha1('foo'),
58
 
                         b'aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d')
59
 
        self.assertEqual(hc.miss_count, 1)
60
 
        self.assertEqual(hc.hit_count, 0)
61
 
 
62
 
    def test_hashcache_new_file(self):
63
 
        hc = self.make_hashcache()
64
 
        self.build_tree_contents([('foo', b'goodbye')])
65
 
        # now read without pausing; it may not be possible to cache it as its
66
 
        # so new
67
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'goodbye'))
68
 
 
69
 
    def test_hashcache_nonexistent_file(self):
70
 
        hc = self.make_hashcache()
71
 
        self.assertEqual(hc.get_sha1('no-name-yet'), None)
72
 
 
73
 
    def test_hashcache_replaced_file(self):
74
 
        hc = self.make_hashcache()
75
 
        self.build_tree_contents([('foo', b'goodbye')])
76
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'goodbye'))
77
 
        os.remove('foo')
78
 
        self.assertEqual(hc.get_sha1('foo'), None)
79
 
        self.build_tree_contents([('foo', b'new content')])
80
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'new content'))
81
 
 
82
 
    def test_hashcache_not_file(self):
83
 
        hc = self.make_hashcache()
84
 
        self.build_tree(['subdir/'])
85
 
        self.assertEqual(hc.get_sha1('subdir'), None)
86
 
 
87
 
    def test_hashcache_load(self):
88
 
        hc = self.make_hashcache()
89
 
        self.build_tree_contents([('foo', b'contents')])
90
 
        pause()
91
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'contents'))
92
 
        hc.write()
93
 
        hc = self.reopen_hashcache()
94
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'contents'))
95
 
        self.assertEqual(hc.hit_count, 1)
96
 
 
97
 
    def test_hammer_hashcache(self):
98
 
        hc = self.make_hashcache()
99
 
        for i in range(10000):
100
 
            with open('foo', 'wb') as f:
101
 
                last_content = b'%08x' % i
102
 
                f.write(last_content)
103
 
            last_sha1 = sha1(last_content)
104
 
            self.log("iteration %d: %r -> %r",
105
 
                     i, last_content, last_sha1)
106
 
            got_sha1 = hc.get_sha1('foo')
107
 
            self.assertEqual(got_sha1, last_sha1)
108
 
            hc.write()
109
 
            hc = self.reopen_hashcache()
110
 
 
111
 
    def test_hashcache_raise(self):
112
 
        """check that hashcache can raise BzrError"""
113
 
        self.requireFeature(OsFifoFeature)
114
 
        hc = self.make_hashcache()
115
 
        os.mkfifo('a')
116
 
        # It's possible that the system supports fifos but the filesystem
117
 
        # can't.  In that case we should skip at this point.  But in fact
118
 
        # such combinations don't usually occur for the filesystem where
119
 
        # people test bzr.
120
 
        self.assertRaises(BzrError, hc.get_sha1, 'a')
121
 
 
122
 
 
123
 
class FakeHashCache(HashCache):
124
 
    """Hashcache that consults a fake clock rather than the real one.
125
 
 
126
 
    This lets us examine how old or new files would be handled, without
127
 
    actually having to wait for time to pass.
128
 
    """
129
 
 
130
 
    def __init__(self):
131
 
        # set root and cache file name to none to make sure we won't touch the
132
 
        # real filesystem
133
 
        HashCache.__init__(self, u'.', 'hashcache')
134
 
        self._files = {}
135
 
        # simulated clock running forward as operations happen
136
 
        self._clock = 0
137
 
 
138
 
    def put_file(self, filename, file_contents):
139
 
        abspath = './' + filename
140
 
        self._files[abspath] = (file_contents, self._clock)
141
 
 
142
 
    def _fingerprint(self, abspath, fs=None):
143
 
        entry = self._files[abspath]
144
 
        return (len(entry[0]),
145
 
                entry[1], entry[1],
146
 
                10, 20,
147
 
                stat.S_IFREG | 0o600)
148
 
 
149
 
    def _really_sha1_file(self, abspath, filters):
150
 
        if abspath in self._files:
151
 
            return sha1(self._files[abspath][0])
152
 
        else:
153
 
            return None
154
 
 
155
 
    def _cutoff_time(self):
156
 
        return self._clock - 2
157
 
 
158
 
    def pretend_to_sleep(self, secs):
159
 
        self._clock += secs
160
 
 
161
 
 
162
 
class TestHashCacheFakeFilesystem(TestCaseInTempDir):
163
 
    """Tests the hashcache using a simulated OS.
164
 
    """
165
 
 
166
 
    def make_hashcache(self):
167
 
        return FakeHashCache()
168
 
 
169
 
    def test_hashcache_miss_new_file(self):
170
 
        """A new file gives the right sha1 but misses"""
171
 
        hc = self.make_hashcache()
172
 
        hc.put_file('foo', b'hello')
173
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'hello'))
174
 
        self.assertEqual(hc.miss_count, 1)
175
 
        self.assertEqual(hc.hit_count, 0)
176
 
        # if we try again it's still too new;
177
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'hello'))
178
 
        self.assertEqual(hc.miss_count, 2)
179
 
        self.assertEqual(hc.hit_count, 0)
180
 
 
181
 
    def test_hashcache_old_file(self):
182
 
        """An old file gives the right sha1 and hits"""
183
 
        hc = self.make_hashcache()
184
 
        hc.put_file('foo', b'hello')
185
 
        hc.pretend_to_sleep(20)
186
 
        # file is new; should get the correct hash but miss
187
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'hello'))
188
 
        self.assertEqual(hc.miss_count, 1)
189
 
        self.assertEqual(hc.hit_count, 0)
190
 
        # and can now be hit
191
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'hello'))
192
 
        self.assertEqual(hc.miss_count, 1)
193
 
        self.assertEqual(hc.hit_count, 1)
194
 
        hc.pretend_to_sleep(3)
195
 
        # and again
196
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'hello'))
197
 
        self.assertEqual(hc.miss_count, 1)
198
 
        self.assertEqual(hc.hit_count, 2)
199
 
 
200
 
    def test_hashcache_invalidates(self):
201
 
        hc = self.make_hashcache()
202
 
        hc.put_file('foo', b'hello')
203
 
        hc.pretend_to_sleep(20)
204
 
        hc.get_sha1('foo')
205
 
        hc.put_file('foo', b'h1llo')
206
 
        self.assertEqual(hc.get_sha1('foo'), sha1(b'h1llo'))
207
 
        self.assertEqual(hc.miss_count, 2)
208
 
        self.assertEqual(hc.hit_count, 0)
 
114
 
 
115
        ##self.assertEquals(len(hc._cache), 2)
 
116
        self.assertEquals(hc.get_sha1('foo'), sha1('g00dbye'))
 
117
        ##self.assertEquals(hc.hit_count, 1)
 
118
        ##self.assertEquals(hc.miss_count, 0)
 
119
        self.assertEquals(hc.get_sha1('foo2'), sha1('new content'))