~launchpad-pqm/launchpad/devel

14538.1.3 by Curtis Hovey
Updated copyright.
1
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
8687.15.17 by Karl Fogel
Add the copyright header block to the rest of the files under lib/lp/.
2
# GNU Affero General Public License version 3 (see the file LICENSE).
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
3
4
"""Tests for the cron script that updates revision karma."""
5
6
__metaclass__ = type
7
8
from storm.store import Store
9
import transaction
10
11
from canonical.config import config
14538.1.2 by Curtis Hovey
Moved account and email address to lp.services.identity.
12
from lp.services.identity.model.emailaddress import EmailAddressSet
11703.1.1 by Tim Penhey
Move the garbo script into lp.scripts.
13
from lp.scripts.garbo import RevisionAuthorEmailLinker
11666.3.5 by Curtis Hovey
Import layers from canonical.testing.layers.
14
from canonical.testing.layers import LaunchpadZopelessLayer
8225.3.2 by Tim Penhey
Sort the imports.
15
from lp.code.model.revision import RevisionSet
16
from lp.code.scripts.revisionkarma import RevisionKarmaAllocator
17
from lp.registry.model.karma import Karma
12070.1.19 by Tim Penhey
Replace MockLogger with DevNullLogger.
18
from lp.services.log.logger import DevNullLogger
11117.1.1 by Tim Penhey
Move MockLogger from canonical.launchpad.ftests.logger to lp.testing.logger.
19
from lp.testing import TestCaseWithFactory
8225.3.2 by Tim Penhey
Sort the imports.
20
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
21
22
class TestRevisionKarma(TestCaseWithFactory):
23
    """Test the `getBranch` method of the revision."""
24
6623.4.22 by Tim Penhey
Got the tests passing cleanly.
25
    layer = LaunchpadZopelessLayer
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
26
27
    def setUp(self):
28
        # Use an administrator for the factory
29
        TestCaseWithFactory.setUp(self, 'admin@canonical.com')
30
6950.1.3 by Tim Penhey
Updates following review.
31
    def assertOneKarmaEvent(self, person, product):
6950.1.1 by Tim Penhey
Make sure that revision karma doesn't create a future karma event.
32
        # Make sure there is one and only one karma event for the person and
33
        # product.
6950.1.2 by Tim Penhey
Lint fixes.
34
        result = Store.of(person).find(
6950.1.1 by Tim Penhey
Make sure that revision karma doesn't create a future karma event.
35
            Karma,
36
            Karma.person == person,
37
            Karma.product == product)
6950.1.2 by Tim Penhey
Lint fixes.
38
        self.assertEqual(1, result.count())
6950.1.1 by Tim Penhey
Make sure that revision karma doesn't create a future karma event.
39
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
40
    def test_junkBranchMoved(self):
41
        # When a junk branch is moved to a product, the revision author will
42
        # get karma on the product.
43
        author = self.factory.makePerson()
44
        rev = self.factory.makeRevision(
45
            author=author.preferredemail.email)
7362.12.24 by Jonathan Lange
Restore change that somehow got lost.
46
        branch = self.factory.makePersonalBranch()
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
47
        branch.createBranchRevision(1, rev)
48
        # Once the branch is connected to the revision, we now specify
49
        # a product for the branch.
8971.24.27 by Tim Penhey
Updates following review. Just some more tests for error conditions to go.
50
        project = self.factory.makeProduct()
8971.24.19 by Tim Penhey
More tests that move branches updated.
51
        branch.setTarget(user=branch.owner, project=project)
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
52
        # Commit and switch to the script db user.
53
        transaction.commit()
6623.4.22 by Tim Penhey
Got the tests passing cleanly.
54
        LaunchpadZopelessLayer.switchDbUser(config.revisionkarma.dbuser)
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
55
        script = RevisionKarmaAllocator(
6623.4.22 by Tim Penhey
Got the tests passing cleanly.
56
            'test', config.revisionkarma.dbuser, ['-q'])
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
57
        script.main()
6950.1.3 by Tim Penhey
Updates following review.
58
        self.assertOneKarmaEvent(author, branch.product)
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
59
60
    def test_newRevisionAuthor(self):
61
        # When a user validates an email address that is part of a revision
62
        # author, and that author has revisions associated with a product, we
63
        # give the karma to the user.
64
        email = self.factory.getUniqueEmailAddress()
65
        rev = self.factory.makeRevision(author=email)
7362.12.24 by Jonathan Lange
Restore change that somehow got lost.
66
        branch = self.factory.makeAnyBranch()
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
67
        branch.createBranchRevision(1, rev)
7675.85.2 by Jonathan Lange
Undo revision generated by step 2 of process.
68
        transaction.commit()
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
69
        self.failIf(rev.karma_allocated)
70
        # Since the revision author is not known, the revisions do not at this
71
        # stage need karma allocated.
72
        self.assertEqual(
73
            [], list(RevisionSet.getRevisionsNeedingKarmaAllocated()))
74
        # The person registers with Launchpad.
75
        author = self.factory.makePerson(email=email)
76
        transaction.commit()
8303.10.5 by James Henstridge
Update tests that expect RevisionAuthors or HWSubmissions to be linked
77
        # Run the RevisionAuthorEmailLinker garbo job.
12070.1.19 by Tim Penhey
Replace MockLogger with DevNullLogger.
78
        RevisionAuthorEmailLinker(log=DevNullLogger()).run()
6623.4.22 by Tim Penhey
Got the tests passing cleanly.
79
        LaunchpadZopelessLayer.switchDbUser(config.revisionkarma.dbuser)
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
80
        script = RevisionKarmaAllocator(
6623.4.22 by Tim Penhey
Got the tests passing cleanly.
81
            'test', config.revisionkarma.dbuser, ['-q'])
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
82
        script.main()
6950.1.3 by Tim Penhey
Updates following review.
83
        self.assertOneKarmaEvent(author, branch.product)
6623.4.20 by Tim Penhey
Testing the guts of the cron script and creating a dedicated db user.
84
6623.4.26 by Tim Penhey
Extra somewhat verbose test case for karma allocation.
85
    def test_ownerJunkBranchWithAnotherProductBranch(self):
86
        # If the revision author has the revision in a junk branch but someone
87
        # else has the revision in the ancestry of a branch associated with a
88
        # product, then we use the branch with the product rather than the
89
        # junk branch owned by the revision author.
90
        author = self.factory.makePerson()
91
        email = self.factory.getUniqueEmailAddress()
92
        rev = self.factory.makeRevision(author=email)
7362.12.24 by Jonathan Lange
Restore change that somehow got lost.
93
        branch = self.factory.makePersonalBranch(owner=author)
6623.4.26 by Tim Penhey
Extra somewhat verbose test case for karma allocation.
94
        branch.createBranchRevision(1, rev)
95
        self.failIf(rev.karma_allocated)
96
        # Now we have a junk branch which has a revision with an email address
97
        # that is not yet claimed by the author.
98
99
        # Now create a non junk branch owned by someone else that has the
100
        # revision.
7362.12.24 by Jonathan Lange
Restore change that somehow got lost.
101
        b2 = self.factory.makeProductBranch()
6623.4.26 by Tim Penhey
Extra somewhat verbose test case for karma allocation.
102
        # Put the author's revision in the ancestry.
103
        b2.createBranchRevision(None, rev)
104
105
        # Now link the revision author to the author.
106
        author.validateAndEnsurePreferredEmail(
8137.17.24 by Barry Warsaw
thread merge
107
            EmailAddressSet().new(email, author, account=author.account))
7675.85.2 by Jonathan Lange
Undo revision generated by step 2 of process.
108
        transaction.commit()
8303.10.5 by James Henstridge
Update tests that expect RevisionAuthors or HWSubmissions to be linked
109
        # Run the RevisionAuthorEmailLinker garbo job.
12070.1.19 by Tim Penhey
Replace MockLogger with DevNullLogger.
110
        RevisionAuthorEmailLinker(log=DevNullLogger()).run()
8303.10.5 by James Henstridge
Update tests that expect RevisionAuthors or HWSubmissions to be linked
111
6623.4.27 by Tim Penhey
Slight fixes following review.
112
        # Now that the revision author is linked to the person, the revision
113
        # needs karma allocated.
114
        self.assertEqual(
115
            [rev], list(RevisionSet.getRevisionsNeedingKarmaAllocated()))
116
6623.4.26 by Tim Penhey
Extra somewhat verbose test case for karma allocation.
117
        # Commit and switch to the script db user.
118
        transaction.commit()
119
        LaunchpadZopelessLayer.switchDbUser(config.revisionkarma.dbuser)
120
        script = RevisionKarmaAllocator(
121
            'test', config.revisionkarma.dbuser, ['-q'])
122
        script.main()
6950.1.3 by Tim Penhey
Updates following review.
123
        self.assertOneKarmaEvent(author, b2.product)