~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/factory.py

Merged test refactoring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
from lp.soyuz.interfaces.queue import IPackageUploadSet
286
286
from lp.soyuz.interfaces.section import ISectionSet
287
287
from lp.soyuz.model.component import ComponentSelection
 
288
from lp.soyuz.model.distributionsourcepackagecache import (
 
289
    DistributionSourcePackageCache,
 
290
    )
288
291
from lp.soyuz.model.files import (
289
292
    BinaryPackageFile,
290
293
    SourcePackageReleaseFile,
304
307
    time_counter,
305
308
    with_celebrity_logged_in,
306
309
    )
 
310
from lp.testing.dbuser import dbuser
307
311
from lp.translations.enums import (
308
312
    LanguagePackType,
309
313
    RosettaImportStatus,
4044
4048
                distribution, sourcepackagename, False)
4045
4049
        return package
4046
4050
 
 
4051
    def makeDSPCache(self, distro_name, package_name, make_distro=True,
 
4052
                     official=True, binary_names=None, archive=None):
 
4053
        if make_distro:
 
4054
            distribution = self.makeDistribution(name=distro_name)
 
4055
        else:
 
4056
            distribution = getUtility(IDistributionSet).getByName(distro_name)
 
4057
        dsp = self.makeDistributionSourcePackage(
 
4058
            distribution=distribution, sourcepackagename=package_name,
 
4059
            with_db=official)
 
4060
        if archive is None:
 
4061
            archive = dsp.distribution.main_archive
 
4062
        else:
 
4063
            archive = self.makeArchive(
 
4064
                distribution=distribution, purpose=archive)
 
4065
        if official:
 
4066
            self.makeSourcePackagePublishingHistory(
 
4067
                distroseries=distribution.currentseries,
 
4068
                sourcepackagename=dsp.sourcepackagename,
 
4069
                archive=archive)
 
4070
        with dbuser('statistician'):
 
4071
            DistributionSourcePackageCache(
 
4072
                distribution=dsp.distribution,
 
4073
                sourcepackagename=dsp.sourcepackagename,
 
4074
                archive=archive,
 
4075
                name=package_name,
 
4076
                binpkgnames=binary_names)
 
4077
        return distribution, dsp
 
4078
 
4047
4079
    def makeEmailMessage(self, body=None, sender=None, to=None,
4048
4080
                         attachments=None, encode_attachments=False):
4049
4081
        """Make an email message with possible attachments.