~launchpad-pqm/launchpad/devel

3944.1.1 by Francis J. Lacoste
Use system version python2.4 for scripts.
1
#!/usr/bin/python2.4
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
2
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
3
# This module uses relative imports.
5855.5.1 by Curtis Hovey
Migrate db configuration to lazr.config.
4
# pylint: disable-msg=W0403
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
5
5883.1.2 by Curtis Hovey
Merge from RF. Resolved conflicts in confs.
6
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
7
"""
8
Gina launcher script. Handles commandline options and makes the proper
9
calls to the other classes and instances.
10
11
The callstack is essentially:
12
    main -> run_gina 
13
                -> import_sourcepackages -> do_one_sourcepackage
14
                -> import_binarypackages -> do_one_binarypackage
15
"""
16
5855.5.1 by Curtis Hovey
Migrate db configuration to lazr.config.
17
18
__metaclass__ = type
19
20
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
21
# Set to non-zero if you'd like to be warned every so often
22
COUNTDOWN = 0
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
23
24
import _pythonpath
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
25
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
26
from optparse import OptionParser
2670 by Canonical.com Patch Queue Manager
[trivial] Gina love
27
import os
5821.10.4 by Celso Providelo
fixing gina tests.
28
import psycopg2
2670 by Canonical.com Patch Queue Manager
[trivial] Gina love
29
import sys
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
30
import time
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
31
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
32
from zope.component import getUtility
33
3691.348.2 by kiko
Only catch LockAlreadyAcquired, which is really what we are checking for in scripts.
34
from contrib.glock import GlobalLock, LockAlreadyAcquired
3691.348.1 by kiko
Remove the original lockfile class and use our contributed GlobalLock everywhere to avoid stale locks making our scripts stop to run. Update a bunch of scripts to use it. Hopefully backwards-compatible enough to survive tests.
35
5028.1.6 by David Murphy
Removed PackagePublishingPriority, PackagePublishingStatus, PackagePublishingPocket, PackageUploadStatus, & PackageUploadCustomFormat from canonical.lp.dbschema.
36
from canonical.lp import initZopeless
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
37
from canonical.config import config
5028.1.6 by David Murphy
Removed PackagePublishingPriority, PackagePublishingStatus, PackagePublishingPocket, PackageUploadStatus, & PackageUploadCustomFormat from canonical.lp.dbschema.
38
from canonical.launchpad.interfaces import (
39
    IComponentSet, PackagePublishingPocket)
3691.164.16 by Guilherme Salgado
Lots of fixes and tests suggested by Bjorn
40
from canonical.launchpad.scripts import (
41
    execute_zcml_for_scripts, logger_options, log)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
42
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
43
from canonical.launchpad.scripts.gina import ExecutionError
1716.1.213 by Christian Reis
Fix scripts/gina.py to cope with katie.py rename
44
from canonical.launchpad.scripts.gina.katie import Katie
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
45
from canonical.launchpad.scripts.gina.archive import (ArchiveComponentItems,
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
46
    PackagesMap, MangledArchiveError)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
47
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
48
from canonical.launchpad.scripts.gina.handlers import (ImporterHandler,
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
49
    MultiplePackageReleaseError, NoSourcePackageError, DataSetupError)
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
50
from canonical.launchpad.scripts.gina.packages import (SourcePackageData,
1716.1.229 by Christian Reis
Move encoding of person's displayname into packages. Add tests for version numbers for gcc-defaults, clean up code slightly. What remains: validating ensureBuild and _getBinary, and testing with multiple components, pockets and architectures
51
    BinaryPackageData, MissingRequiredArguments, DisplayNameDecodingError,
1716.1.239 by Christian Reis
Really fix get_dsc_path to properly grok archive paths (and sanitize callsites and a certain place where we were generating a filename without the string pool attached to it). Remove PackageFileProcessError, which was dead anyway, and update for it. Rename anything that was an archive_root to the right term. All tests now pass
52
    PoolFileNotFound, InvalidVersionError)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
53
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
54
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
55
def _get_keyring(keyrings_root):
4664.1.1 by Curtis Hovey
Normalized comments for bug 3732.
56
    # XXX kiko 2005-10-23: untested
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
57
    keyrings = ""
58
    for keyring in os.listdir(keyrings_root):
59
        path = os.path.join(keyrings_root, keyring)
60
        keyrings += " --keyring=%s" % path
61
    if not keyrings:
62
        raise AttributeError("Keyrings not found in ./keyrings/")
63
    return keyrings
64
65
66
def main():
3691.164.16 by Guilherme Salgado
Lots of fixes and tests suggested by Bjorn
67
    execute_zcml_for_scripts()
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
68
    parser = OptionParser("Usage: %prog [OPTIONS] [target ...]")
69
    logger_options(parser)
70
71
    parser.add_option("-n", "--dry-run", action="store_true",
72
            help="Don't commit changes to the database",
73
            dest="dry_run", default=False)
74
75
    parser.add_option("-a", "--all", action="store_true",
76
            help="Run all sections defined in launchpad.conf (in order)",
77
            dest="all", default=False)
78
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
79
    parser.add_option( "-l", "--lockfile",
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
80
            default="/var/lock/launchpad-gina.lock",
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
81
            help="Ensure only one process is running that locks LOCKFILE",
82
            metavar="LOCKFILE"
83
            )
84
85
    (options, targets) = parser.parse_args()
86
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
87
    possible_targets = [target.category_and_section_names[1]
88
                        for target in config.getByCategory('gina_target')]
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
89
90
    if options.all:
91
        targets = possible_targets[:]
92
    else:
93
        if not targets:
94
            parser.error("Must specify at least one target to run, or --all")
95
96
        for target in targets:
97
            if target not in possible_targets:
98
                parser.error("No Gina target %s in config file" % target)
99
3691.348.1 by kiko
Remove the original lockfile class and use our contributed GlobalLock everywhere to avoid stale locks making our scripts stop to run. Update a bunch of scripts to use it. Hopefully backwards-compatible enough to survive tests.
100
    lockfile = GlobalLock(options.lockfile, logger=log)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
101
    try:
102
        lockfile.acquire()
3691.348.2 by kiko
Only catch LockAlreadyAcquired, which is really what we are checking for in scripts.
103
    except LockAlreadyAcquired:
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
104
        log.info('Lockfile %s already locked. Exiting.', options.lockfile)
105
        sys.exit(1)
106
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
107
    ztm = initZopeless(dbuser=config.gina.dbuser)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
108
    try:
109
        for target in targets:
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
110
            target_section = config['gina_target.%s' % target]
111
            run_gina(options, ztm, target_section)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
112
    finally:
113
        lockfile.release()
114
115
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
116
def run_gina(options, ztm, target_section):
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
117
    package_root = target_section.root
118
    keyrings_root = target_section.keyrings
119
    distro = target_section.distro
5121.2.7 by Stuart Bishop
More required code changes
120
    # XXX kiko 2005-10-23: I honestly think having a separate distroseries
121
    # bit silly. Can't we construct this based on `distroseries-pocket`?
122
    pocket_distroseries = target_section.pocketrelease
123
    distroseries = target_section.distroseries
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
124
    components = [c.strip() for c in target_section.components.split(",")]
125
    archs = [a.strip() for a in target_section.architectures.split(",")]
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
126
    pocket = target_section.pocket
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
127
    component_override = target_section.componentoverride
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
128
    source_only = target_section.source_only
129
    spnames_only = target_section.sourcepackagenames_only
130
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
131
    dry_run = options.dry_run
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
132
5855.5.1 by Curtis Hovey
Migrate db configuration to lazr.config.
133
    LPDB = config.database.dbname
134
    LPDB_HOST = config.database.dbhost
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
135
    LPDB_USER = config.gina.dbuser
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
136
    KTDB = target_section.katie_dbname
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
137
138
    LIBRHOST = config.librarian.upload_host
139
    LIBRPORT = config.librarian.upload_port
1716.1.211 by Christian Reis
De-lintify and add better exceptions to gina.py
140
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
141
    log.info("")
5121.2.7 by Stuart Bishop
More required code changes
142
    log.info("=== Processing %s/%s/%s ===" % (distro, distroseries, pocket))
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
143
    log.debug("Packages read from: %s" % package_root)
144
    log.debug("Keyrings read from: %s" % keyrings_root)
145
    log.info("Components to import: %s" % ", ".join(components))
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
146
    if component_override is not None:
147
        log.info("Override components to: %s" % component_override)
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
148
    log.info("Architectures to import: %s" % ", ".join(archs))
149
    log.debug("Launchpad database: %s" % LPDB)
150
    log.debug("Launchpad database host: %s" % LPDB_HOST)
151
    log.debug("Launchpad database user: %s" % LPDB_USER)
152
    log.info("Katie database: %s" % KTDB)
1716.1.211 by Christian Reis
De-lintify and add better exceptions to gina.py
153
    log.info("SourcePackage Only: %s" % source_only)
154
    log.info("SourcePackageName Only: %s" % spnames_only)
155
    log.debug("Librarian: %s:%s" % (LIBRHOST, LIBRPORT))
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
156
    log.info("Dry run: %s" % (dry_run))
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
157
    log.info("")
1716.1.211 by Christian Reis
De-lintify and add better exceptions to gina.py
158
5028.1.6 by David Murphy
Removed PackagePublishingPriority, PackagePublishingStatus, PackagePublishingPocket, PackageUploadStatus, & PackageUploadCustomFormat from canonical.lp.dbschema.
159
    if hasattr(PackagePublishingPocket, pocket.upper()):
160
        pocket = getattr(PackagePublishingPocket, pocket.upper())
1716.1.232 by Christian Reis
Set up an initial (empty) multiple-arch-component-pocket run, with a basic test. Also fix up my librarian query to not use selectOneBy. But I had to comment out the check, because staging and production are already polluted :-(
161
    else:
162
        log.error("Could not find a pocket schema for %s" % pocket)
163
        sys.exit(1)
164
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
165
    if component_override:
4753.4.2 by Julian Edwards
PEP-8 drives me NUTS.
166
        valid_components = [
167
            component.name for component in getUtility(IComponentSet)]
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
168
        if component_override not in valid_components:
169
            log.error("Could not find component %s" % component_override)
170
            sys.exit(1)
171
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
172
    kdb = None
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
173
    keyrings = None
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
174
    if KTDB:
5121.2.7 by Stuart Bishop
More required code changes
175
        kdb = Katie(KTDB, distroseries, dry_run)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
176
        keyrings = _get_keyring(keyrings_root)
177
178
    try:
6527.11.1 by Celso Providelo
go, gina, go ...
179
        arch_component_items = ArchiveComponentItems(
180
            package_root, pocket_distroseries, components, archs,
181
            source_only)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
182
    except MangledArchiveError:
5855.5.1 by Curtis Hovey
Migrate db configuration to lazr.config.
183
        log.exception(
184
            "Failed to analyze archive for %s" % pocket_distroseries)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
185
        sys.exit(1)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
186
187
    packages_map = PackagesMap(arch_component_items)
5121.2.7 by Stuart Bishop
More required code changes
188
    importer_handler = ImporterHandler(ztm, distro, distroseries,
2501 by Canonical.com Patch Queue Manager
Bring failed binary imports down from 472 to 6 by finding sources more aggressively. r=spiv
189
                                       dry_run, kdb, package_root, keyrings,
4753.4.1 by Julian Edwards
Allow gina to override the component (and thus the archive) when importing
190
                                       pocket, component_override)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
191
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
192
    if spnames_only:
193
        log.info('Running in SourcePackageName-only mode...')
194
        for source in packages_map.src_map.itervalues():
195
            log.info('Ensuring %s name' % source['Package'])
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
196
            importer_handler.ensure_sourcepackagename(source['Package'])
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
197
        log.info('done')
198
        sys.exit(0)
199
200
    import_sourcepackages(packages_map, kdb, package_root, keyrings,
201
                          importer_handler)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
202
    importer_handler.commit()
203
204
    if source_only:
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
205
        log.info('Source only mode... done')
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
206
        sys.exit(0)
207
6527.11.1 by Celso Providelo
go, gina, go ...
208
    for archtag in archs:
209
        try:
210
            importer_handler.ensure_archinfo(archtag)
211
        except DataSetupError:
212
            log.exception("Database setup required for run on %s" % archtag)
213
            sys.exit(1)
214
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
215
    import_binarypackages(packages_map, kdb, package_root, keyrings,
216
                          importer_handler)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
217
    importer_handler.commit()
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
218
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
219
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
220
def import_sourcepackages(packages_map, kdb, package_root,
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
221
                          keyrings, importer_handler):
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
222
    # Goes over src_map importing the sourcepackages packages.
223
    count = 0
224
    npacks = len(packages_map.src_map)
1716.1.217 by Christian Reis
Fix up remaining SQL issues (manually tested by hacking up gina.py, improve gina.py logging and error output, some added language consistency
225
    log.info('%i Source Packages to be imported' % npacks)
1716.1.211 by Christian Reis
De-lintify and add better exceptions to gina.py
226
1716.1.227 by Christian Reis
Order packages by name when processing them, to obtain stable test output. Add a host of binary packages to hoary to ensure I have enough to test with. Check before importing binary packages that they already exist (as we do for source packages) to optimize processing time and output. Reorganize tests to be a bit more self-contained.
227
    for source in sorted(packages_map.src_map.values(),
228
                         key=lambda x: x.get("Package")):
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
229
        count += 1
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
230
        package_name = source.get("Package", "unknown")
231
        try:
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
232
            try:
233
                do_one_sourcepackage(source, kdb, package_root, keyrings,
234
                                     importer_handler)
5821.10.4 by Celso Providelo
fixing gina tests.
235
            except psycopg2.Error:
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
236
                log.exception("Database error: unable to create "
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
237
                              "SourcePackage for %s. Retrying once.."
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
238
                              % package_name)
239
                importer_handler.abort()
240
                time.sleep(15)
241
                do_one_sourcepackage(source, kdb, package_root, keyrings,
242
                                     importer_handler)
1716.1.229 by Christian Reis
Move encoding of person's displayname into packages. Add tests for version numbers for gcc-defaults, clean up code slightly. What remains: validating ensureBuild and _getBinary, and testing with multiple components, pockets and architectures
243
        except (InvalidVersionError, MissingRequiredArguments,
244
                DisplayNameDecodingError):
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
245
            log.exception("Unable to create SourcePackageData for %s" %
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
246
                          package_name)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
247
            continue
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
248
        except (PoolFileNotFound, ExecutionError):
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
249
            # Problems with katie db stuff of opening files
250
            log.exception("Error processing package files for %s" %
251
                          package_name)
252
            continue
5821.10.4 by Celso Providelo
fixing gina tests.
253
        except psycopg2.Error:
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
254
            log.exception("Database errors made me give up: unable to create "
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
255
                          "SourcePackage for %s" % package_name)
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
256
            importer_handler.abort()
257
            continue
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
258
        except MultiplePackageReleaseError:
259
            log.exception("Database duplication processing %s" %
260
                          package_name)
261
            continue
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
262
263
        if COUNTDOWN and count % COUNTDOWN == 0:
264
            log.warn('%i/%i sourcepackages processed' % (count, npacks))
1716.1.217 by Christian Reis
Fix up remaining SQL issues (manually tested by hacking up gina.py, improve gina.py logging and error output, some added language consistency
265
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
266
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
267
def do_one_sourcepackage(source, kdb, package_root, keyrings,
268
                         importer_handler):
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
269
    source_data = SourcePackageData(**source)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
270
    if importer_handler.preimport_sourcecheck(source_data):
271
        # Don't bother reading package information if the source package
272
        # already exists in the database
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
273
        log.info('%s already exists in the archive' % source_data.package)
274
        return
275
    source_data.process_package(kdb, package_root, keyrings)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
276
    source_data.ensure_complete(kdb)
277
    importer_handler.import_sourcepackage(source_data)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
278
    importer_handler.commit()
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
279
280
1716.1.223 by Christian Reis
Checkpoint gina: the sourcepackage side is implemented and well-tested, over two releases, and over two runs of gina
281
def import_binarypackages(packages_map, kdb, package_root, keyrings,
282
                          importer_handler):
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
283
    nosource = []
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
284
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
285
    # Run over all the architectures we have
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
286
    for archtag in packages_map.bin_map.keys():
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
287
        count = 0
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
288
        npacks = len(packages_map.bin_map[archtag])
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
289
        log.info('%i Binary Packages to be imported for %s' %
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
290
                 (npacks, archtag))
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
291
        # Go over binarypackages importing them for this architecture
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
292
        for binary in sorted(packages_map.bin_map[archtag].values(),
1716.1.227 by Christian Reis
Order packages by name when processing them, to obtain stable test output. Add a host of binary packages to hoary to ensure I have enough to test with. Check before importing binary packages that they already exist (as we do for source packages) to optimize processing time and output. Reorganize tests to be a bit more self-contained.
293
                             key=lambda x: x.get("Package")):
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
294
            count += 1
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
295
            package_name = binary.get("Package", "unknown")
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
296
            try:
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
297
                try:
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
298
                    do_one_binarypackage(binary, archtag, kdb, package_root,
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
299
                                         keyrings, importer_handler)
5821.10.4 by Celso Providelo
fixing gina tests.
300
                except psycopg2.Error:
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
301
                    log.exception("Database errors when importing a "
302
                                  "BinaryPackage for %s. Retrying once.."
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
303
                                  % package_name)
304
                    importer_handler.abort()
305
                    time.sleep(15)
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
306
                    do_one_binarypackage(binary, archtag, kdb, package_root,
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
307
                                         keyrings, importer_handler)
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
308
            except (InvalidVersionError, MissingRequiredArguments):
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
309
                log.exception("Unable to create BinaryPackageData for %s" %
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
310
                              package_name)
311
                continue
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
312
            except (PoolFileNotFound, ExecutionError):
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
313
                # Problems with katie db stuff of opening files
314
                log.exception("Error processing package files for %s" %
315
                              package_name)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
316
                continue
1716.1.226 by Christian Reis
Moving verification and parsing code over to packages.py, simplifying handlers.py. Also improved the way check_not_in_librarian communicates failures. Added some important XXXs that are a consequence of the use of Teri on the archive. All tests still pass
317
            except MultiplePackageReleaseError:
318
                log.exception("Database duplication processing %s" %
319
                              package_name)
320
                continue
5821.10.4 by Celso Providelo
fixing gina tests.
321
            except psycopg2.Error:
1716.1.255 by Christian Reis
Cope with intermittent postgres isolation errors when importing packages (caused one package to fail in breezy, growl). Also stop lowercasing package and version numbers, since they should be compared case-sensitively (right?)
322
                log.exception("Database errors made me give up: unable to "
1716.2.14 by Christian Reis
Cope better with source packages whose DSC refers to files not in the pool
323
                              "create BinaryPackage for %s" % package_name)
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
324
                importer_handler.abort()
325
                continue
326
            except NoSourcePackageError:
5883.1.1 by Curtis Hovey
Added gina_target and buildsequence_job to lazr schema.
327
                log.exception("Failed to create Binary Package for %s" %
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
328
                              package_name)
329
                nosource.append(binary)
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
330
                continue
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
331
332
            if COUNTDOWN and count % COUNTDOWN == 0:
4664.1.1 by Curtis Hovey
Normalized comments for bug 3732.
333
                # XXX kiko 2005-10-23: untested
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
334
                log.warn('%i/%i binary packages processed' % (count, npacks))
335
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
336
        if nosource:
4664.1.1 by Curtis Hovey
Normalized comments for bug 3732.
337
            # XXX kiko 2005-10-23: untested
1716.1.241 by Christian Reis
Add support for locating license files that are prefixed with the binary package name (and add a package to test the feature with). Clean up changelog handling of package and version. Deal with the fact that selectOne* can raise an exception when encountering database corruption. Explicitly set SourcePackageRelease.format, and reorder the SPR attributes to check we are indeed sending in everything we should. Added a test for an invalid version. Refactor dsc and license handling so we don't do any more than we should in each of the calls to read_*.
338
            log.warn('%i source packages not found' % len(nosource))
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
339
            for pkg in nosource:
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
340
                log.warn(pkg)
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
341
342
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
343
def do_one_binarypackage(binary, archtag, kdb, package_root, keyrings,
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
344
                         importer_handler):
1716.1.219 by Christian Reis
One more step in the direction of gina testing: test the processing of a second distro release. Verify that no duplicate source packages are added. Check for mangled tagfile stanzas. Reorder classes in handlers.py to be more naturally sequenced. Centralize error checking in gina.py so that do_one_*package is what's tested for error raising. Add support files for testing Breezy. More test clauses. I'd estimate I'm 30% done
345
    binary_data = BinaryPackageData(**binary)
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
346
    if importer_handler.preimport_binarycheck(archtag, binary_data):
1716.1.227 by Christian Reis
Order packages by name when processing them, to obtain stable test output. Add a host of binary packages to hoary to ensure I have enough to test with. Check before importing binary packages that they already exist (as we do for source packages) to optimize processing time and output. Reorganize tests to be a bit more self-contained.
347
        log.info('%s already exists in the archive' % binary_data.package)
348
        return
1716.1.225 by Christian Reis
First part of really testing binary packages. Add 14 binary package entries for hoary main. Change the librarian check to be a function so it can be unified between sources and binaries. Bulletproof the test to run under weird filesystem conditions. Make the config a bit less daft. Deal better with corrupt packages files (and entries). Fetch the licence for binary packages properly (the hard way). Clean up the creation of BinaryPackageData. Removed the catch-all except:s which only make my life harder (for now, at least).
349
    binary_data.process_package(kdb, package_root, keyrings)
1716.2.6 by Christian Reis
Move the check for processor to the start of run_gina so we ensure that all processors required are already preseeded in the database before doing /anything/. Clarifies issue in production where a processor for ia64 was missing
350
    importer_handler.import_binarypackage(archtag, binary_data)
1964 by Canonical.com Patch Queue Manager
[r=spiv] full gina refactor
351
    importer_handler.commit()
352
353
354
if __name__ == "__main__":
1716.1.218 by Christian Reis
Add more package data and update the gina doctest. Seriously whack packages.py and gina.py, with some trickle into handlers.py. The creation of source packages for Hoary is now minimally tested, with most important codepaths and error conditions being checked. Did work on validation and ensuring the source and binary package data we have is consistent. Added a ton of packages to the gina test archive so we can use them in our tests -- welcome them into rocketfuel :-)
355
    main()
2168 by Canonical.com Patch Queue Manager
[r=BjornT] More gina improvements.
356