VirtualBox

Ignore:
Timestamp:
Jan 31, 2020 12:08:59 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
135935
Message:

TestManager/partial-db-dump.py: Python 3 fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py

    r79087 r82937  
    122122    def _doCopyTo(self, sTable, oZipFile, oDb, sSql, aoArgs = None):
    123123        """ Does one COPY TO job. """
    124         print 'Dumping %s...' % (sTable,);
     124        print('Dumping %s...' % (sTable,));
    125125
    126126        if aoArgs is not None:
     
    131131        cRows = oDb.getRowCount();
    132132        oFile.close();
    133         print '... %s rows.' % (cRows,);
     133        print('... %s rows.' % (cRows,));
    134134
    135135        oZipFile.write(self.oConfig.sTempFile, sTable);
     
    152152        oDb.execute('SELECT CURRENT_TIMESTAMP - INTERVAL \'%s days\'' % (self.oConfig.cDays + 2,));
    153153        tsEffectiveSafe = oDb.fetchOne()[0];
    154         print 'Going back to:     %s (safe: %s)' % (tsEffective, tsEffectiveSafe);
     154        print('Going back to:     %s (safe: %s)' % (tsEffective, tsEffectiveSafe));
    155155
    156156        # We dump test boxes back to the safe timestamp because the test sets may
     
    169169        if oDb.getRowCount() > 0:
    170170            idFirstTestSet = oDb.fetchOne()[0];
    171         print 'First test set ID: %s' % (idFirstTestSet,);
     171        print('First test set ID: %s' % (idFirstTestSet,));
    172172
    173173        oDb.execute('SELECT MAX(idTestSet) FROM TestSets WHERE tsCreated >= %s', (tsEffective, ));
     
    175175        if oDb.getRowCount() > 0:
    176176            idLastTestSet = oDb.fetchOne()[0];
    177         print 'Last test set ID: %s' % (idLastTestSet,);
     177        print('Last test set ID: %s' % (idLastTestSet,));
    178178
    179179        oDb.execute('SELECT MAX(idTestResult) FROM TestResults WHERE tsCreated >= %s', (tsEffective, ));
     
    181181        if oDb.getRowCount() > 0:
    182182            idLastTestResult = oDb.fetchOne()[0];
    183         print 'Last test result ID: %s' % (idLastTestResult,);
     183        print('Last test result ID: %s' % (idLastTestResult,));
    184184
    185185
     
    215215
    216216        oZipFile.close();
    217         print "Done!";
     217        print('Done!');
    218218        return 0;
    219219
     
    258258        oDb.execute('SET CONSTRAINTS ALL DEFERRED;');
    259259
    260         print 'Checking if the database looks empty...\n'
     260        print('Checking if the database looks empty...\n');
    261261        for sTable in asTablesInLoadOrder + [ 'TestBoxStatuses', 'GlobalResourceStatuses' ]:
    262262            oDb.execute('SELECT COUNT(*) FROM ' + sTable);
     
    265265            if sTable in [ 'SchedGroups', 'TestBoxStrTab', 'TestResultStrTab', 'Users' ]:    cMaxRows =  1;
    266266            if cRows > cMaxRows:
    267                 print 'error: Table %s has %u rows which is more than %u - refusing to delete and load.' \
    268                     % (sTable, cRows, cMaxRows,);
    269                 print 'info:  Please drop and recreate the database before loading!'
     267                print('error: Table %s has %u rows which is more than %u - refusing to delete and load.'
     268                      % (sTable, cRows, cMaxRows,));
     269                print('info:  Please drop and recreate the database before loading!')
    270270                return 1;
    271271
    272         print 'Dropping default table content...\n'
     272        print('Dropping default table content...\n');
    273273        for sTable in [ 'SchedGroups', 'TestBoxStrTab', 'TestResultStrTab', 'Users']:
    274274            oDb.execute('DELETE FROM ' + sTable);
     
    277277
    278278        for sTable in asTablesInLoadOrder:
    279             print 'Loading %s...' % (sTable,);
     279            print('Loading %s...' % (sTable,));
    280280            oFile = oZipFile.open(sTable);
    281281            oDb.copyExpert('COPY ' + sTable + ' FROM STDIN WITH (FORMAT TEXT)', oFile);
    282282            cRows = oDb.getRowCount();
    283             print '... %s rows.' % (cRows,);
     283            print('... %s rows.' % (cRows,));
    284284
    285285        oDb.execute('ALTER TABLE TestSets ADD FOREIGN KEY (idTestResult) REFERENCES TestResults(idTestResult)');
     
    316316            oDb.execute('SELECT MAX(%s) FROM %s' % (sCol, sTab,));
    317317            idMax = oDb.fetchOne()[0];
    318             print '%s: idMax=%s' % (sSeq, idMax);
     318            print('%s: idMax=%s' % (sSeq, idMax));
    319319            if idMax is not None:
    320320                oDb.execute('SELECT setval(\'%s\', %s)' % (sSeq, idMax));
    321321
    322322        # Last step.
    323         print 'Analyzing...'
     323        print('Analyzing...');
    324324        oDb.execute('ANALYZE');
    325325        oDb.commit();
    326326
    327         print 'Done!'
     327        print('Done!');
    328328        return 0;
    329329
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette