Changeset 82937 in vbox for trunk/src/VBox/ValidationKit/testmanager
- Timestamp:
- Jan 31, 2020 12:08:59 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135935
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py
r79087 r82937 122 122 def _doCopyTo(self, sTable, oZipFile, oDb, sSql, aoArgs = None): 123 123 """ Does one COPY TO job. """ 124 print 'Dumping %s...' % (sTable,);124 print('Dumping %s...' % (sTable,)); 125 125 126 126 if aoArgs is not None: … … 131 131 cRows = oDb.getRowCount(); 132 132 oFile.close(); 133 print '... %s rows.' % (cRows,);133 print('... %s rows.' % (cRows,)); 134 134 135 135 oZipFile.write(self.oConfig.sTempFile, sTable); … … 152 152 oDb.execute('SELECT CURRENT_TIMESTAMP - INTERVAL \'%s days\'' % (self.oConfig.cDays + 2,)); 153 153 tsEffectiveSafe = oDb.fetchOne()[0]; 154 print 'Going back to: %s (safe: %s)' % (tsEffective, tsEffectiveSafe);154 print('Going back to: %s (safe: %s)' % (tsEffective, tsEffectiveSafe)); 155 155 156 156 # We dump test boxes back to the safe timestamp because the test sets may … … 169 169 if oDb.getRowCount() > 0: 170 170 idFirstTestSet = oDb.fetchOne()[0]; 171 print 'First test set ID: %s' % (idFirstTestSet,);171 print('First test set ID: %s' % (idFirstTestSet,)); 172 172 173 173 oDb.execute('SELECT MAX(idTestSet) FROM TestSets WHERE tsCreated >= %s', (tsEffective, )); … … 175 175 if oDb.getRowCount() > 0: 176 176 idLastTestSet = oDb.fetchOne()[0]; 177 print 'Last test set ID: %s' % (idLastTestSet,);177 print('Last test set ID: %s' % (idLastTestSet,)); 178 178 179 179 oDb.execute('SELECT MAX(idTestResult) FROM TestResults WHERE tsCreated >= %s', (tsEffective, )); … … 181 181 if oDb.getRowCount() > 0: 182 182 idLastTestResult = oDb.fetchOne()[0]; 183 print 'Last test result ID: %s' % (idLastTestResult,);183 print('Last test result ID: %s' % (idLastTestResult,)); 184 184 185 185 … … 215 215 216 216 oZipFile.close(); 217 print "Done!";217 print('Done!'); 218 218 return 0; 219 219 … … 258 258 oDb.execute('SET CONSTRAINTS ALL DEFERRED;'); 259 259 260 print 'Checking if the database looks empty...\n'260 print('Checking if the database looks empty...\n'); 261 261 for sTable in asTablesInLoadOrder + [ 'TestBoxStatuses', 'GlobalResourceStatuses' ]: 262 262 oDb.execute('SELECT COUNT(*) FROM ' + sTable); … … 265 265 if sTable in [ 'SchedGroups', 'TestBoxStrTab', 'TestResultStrTab', 'Users' ]: cMaxRows = 1; 266 266 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!') 270 270 return 1; 271 271 272 print 'Dropping default table content...\n'272 print('Dropping default table content...\n'); 273 273 for sTable in [ 'SchedGroups', 'TestBoxStrTab', 'TestResultStrTab', 'Users']: 274 274 oDb.execute('DELETE FROM ' + sTable); … … 277 277 278 278 for sTable in asTablesInLoadOrder: 279 print 'Loading %s...' % (sTable,);279 print('Loading %s...' % (sTable,)); 280 280 oFile = oZipFile.open(sTable); 281 281 oDb.copyExpert('COPY ' + sTable + ' FROM STDIN WITH (FORMAT TEXT)', oFile); 282 282 cRows = oDb.getRowCount(); 283 print '... %s rows.' % (cRows,);283 print('... %s rows.' % (cRows,)); 284 284 285 285 oDb.execute('ALTER TABLE TestSets ADD FOREIGN KEY (idTestResult) REFERENCES TestResults(idTestResult)'); … … 316 316 oDb.execute('SELECT MAX(%s) FROM %s' % (sCol, sTab,)); 317 317 idMax = oDb.fetchOne()[0]; 318 print '%s: idMax=%s' % (sSeq, idMax);318 print('%s: idMax=%s' % (sSeq, idMax)); 319 319 if idMax is not None: 320 320 oDb.execute('SELECT setval(\'%s\', %s)' % (sSeq, idMax)); 321 321 322 322 # Last step. 323 print 'Analyzing...'323 print('Analyzing...'); 324 324 oDb.execute('ANALYZE'); 325 325 oDb.commit(); 326 326 327 print 'Done!'327 print('Done!'); 328 328 return 0; 329 329
Note:
See TracChangeset
for help on using the changeset viewer.