~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/repository_implementations/test_statistics.py

Merge updated gather_stats to get repository wide info working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
class TestGatherStats(TestCaseWithRepository):
23
23
 
 
24
    def check_stats_has_size(self, stats):
 
25
        """Check that stats has a reasonable size entry."""
 
26
        # actual disk size varies from implementation to implementation,
 
27
        # but they should all provide it on their native transport.
 
28
        self.assertTrue('size' in stats)
 
29
        # and it should be a number
 
30
        self.assertIsInstance(stats['size'], (int, long))
 
31
        # and now remove it to make other assertions work without variation.
 
32
        del stats['size']
 
33
 
24
34
    def test_gather_stats(self):
25
35
        """First smoke test covering the refactoring into the Repository api."""
26
36
        tree = self.make_branch_and_memory_tree('.')
36
46
            timestamp=1172491381, timezone=0)
37
47
        tree.unlock()
38
48
        # now, in the same repository, asking for stats with/without the 
39
 
        # committers flag generates the same date information
 
49
        # committers flag generates the same date information.
40
50
        stats = tree.branch.repository.gather_stats(rev2, committers=False)
 
51
        self.check_stats_has_size(stats)
41
52
        self.assertEqual({
42
53
            'firstrev': (1170491381.0, 0),
43
 
            'latestrev': (1171491381.0, 0)},
 
54
            'latestrev': (1171491381.0, 0),
 
55
            'revisions': 3,
 
56
            },
44
57
            stats)
45
58
        stats = tree.branch.repository.gather_stats(rev2, committers=True)
 
59
        self.check_stats_has_size(stats)
46
60
        self.assertEqual({
47
61
            'committers': 2,
48
62
            'firstrev': (1170491381.0, 0),
49
 
            'latestrev': (1171491381.0, 0)},
 
63
            'latestrev': (1171491381.0, 0),
 
64
            'revisions': 3,
 
65
            },
 
66
            stats)
 
67
 
 
68
    def test_gather_stats_norevid_gets_size(self):
 
69
        """Without a revid, repository size is still gathered."""
 
70
        tree = self.make_branch_and_memory_tree('.')
 
71
        tree.lock_write()
 
72
        tree.add('')
 
73
        # put something in the repository, because zero-size is borink.
 
74
        rev1 = tree.commit('first post')
 
75
        tree.unlock()
 
76
        # now ask for global repository stats.
 
77
        stats = tree.branch.repository.gather_stats()
 
78
        self.check_stats_has_size(stats)
 
79
        self.assertEqual({
 
80
            'revisions': 1
 
81
            },
 
82
            stats)
 
83
 
 
84
    def test_gather_stats_empty_repo(self):
 
85
        """An empty repository still has size and revisions."""
 
86
        tree = self.make_branch_and_memory_tree('.')
 
87
        # now ask for global repository stats.
 
88
        stats = tree.branch.repository.gather_stats()
 
89
        self.check_stats_has_size(stats)
 
90
        self.assertEqual({
 
91
            'revisions': 0
 
92
            },
50
93
            stats)