VirtualBox

Ignore:
Timestamp:
Jan 21, 2018 4:18:58 PM (7 years ago)
Author:
vboxsync
Message:

ValidationKit: Python 3 and pylint 1.8.1 adjustments/fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py

    r70521 r70660  
    31683168            curTest = aTest[0]; # tdTestFileReadWrite, use an index, later.
    31693169            curRes  = aTest[1]; # tdTestResult
    3170             reporter.log('Testing #%d, sFile="%s", cbToReadWrite=%d, sOpenMode="%s", sDisposition="%s", cbOffset=%d ...' % \
     3170            reporter.log('Testing #%d, sFile="%s", cbToReadWrite=%d, sOpenMode="%s", sDisposition="%s", cbOffset=%d ...' %
    31713171                         (i, curTest.sFile, curTest.cbToReadWrite, curTest.sOpenMode, curTest.sDisposition, curTest.cbOffset));
    31723172            curTest.setEnvironment(oSession, oTxsSession, oTestVm);
     
    31753175                reporter.error('Test #%d failed: Could not create session' % (i,));
    31763176                break;
     3177
    31773178            try:
    31783179                if curTest.cbOffset > 0: # The offset parameter is gone.
     
    31823183                        curFile.seek(curTest.cbOffset, vboxcon.FileSeekOrigin_Begin);
    31833184                    else:
    3184                         curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \
     3185                        curFile = curGuestSession.fileOpenEx(curTest.sFile, curTest.sOpenMode, curTest.sDisposition,
    31853186                                                             curTest.sSharingMode, curTest.lCreationMode, curTest.cbOffset);
    31863187                    curOffset = long(curFile.offset);
    31873188                    resOffset = long(curTest.cbOffset);
    31883189                    if curOffset != resOffset:
    3189                         reporter.error('Test #%d failed: Initial offset on open does not match: Got %d, expected %d' \
     3190                        reporter.error('Test #%d failed: Initial offset on open does not match: Got %d, expected %d'
    31903191                                       % (i, curOffset, resOffset));
    31913192                        fRc = False;
     
    31953196                                                           curTest.lCreationMode);
    31963197                    else:
    3197                         curFile = curGuestSession.fileOpen(curTest.sFile, curTest.sOpenMode, curTest.sDisposition, \
     3198                        curFile = curGuestSession.fileOpen(curTest.sFile, curTest.sOpenMode, curTest.sDisposition,
    31983199                                                           curTest.lCreationMode);
    3199                 if  fRc \
    3200                 and curTest.cbToReadWrite > 0:
     3200                if fRc and curTest.cbToReadWrite > 0:
    32013201                    ## @todo Split this up in 64K writes. Later.
    32023202                    ## @todo Test timeouts.
    32033203                    cBytesWritten = curFile.write(curTest.aBuf, 30 * 1000);
    3204                     if  curRes.cbProcessed > 0 \
    3205                     and curRes.cbProcessed != cBytesWritten:
    3206                         reporter.error('Test #%d failed: Written buffer length does not match: Got %d, expected %d' \
     3204                    if    curRes.cbProcessed > 0 \
     3205                      and curRes.cbProcessed != cBytesWritten:
     3206                        reporter.error('Test #%d failed: Written buffer length does not match: Got %d, expected %d'
    32073207                                       % (i, cBytesWritten, curRes.cbProcessed));
    32083208                        fRc = False;
     
    32183218                            reporter.logXcpt('Seeking back to initial write position failed:');
    32193219                            fRc = False;
    3220                         if  fRc \
    3221                         and long(curFile.offset) != curTest.cbOffset:
    3222                             reporter.error('Test #%d failed: Initial write position does not match current position, \
    3223                                            got %d, expected %d' \
    3224                                            % (i, long(curFile.offset), curTest.cbOffset));
     3220                        if fRc and long(curFile.offset) != curTest.cbOffset:
     3221                            reporter.error('Test #%d failed: Initial write position does not match current position, '
     3222                                           'got %d, expected %d' % (i, long(curFile.offset), curTest.cbOffset));
    32253223                            fRc = False;
    32263224                    if fRc:
    32273225                        aBufRead = curFile.read(curTest.cbToReadWrite, 30 * 1000);
    32283226                        if len(aBufRead) != curTest.cbToReadWrite:
    3229                             reporter.error('Test #%d failed: Got buffer length %d, expected %d' \
     3227                            reporter.error('Test #%d failed: Got buffer length %d, expected %d'
    32303228                                           % (i, len(aBufRead), curTest.cbToReadWrite));
    32313229                            fRc = False;
    3232                         if  fRc \
    3233                         and curRes.aBuf is not None \
    3234                         and buffer(curRes.aBuf) != aBufRead:
    3235                             reporter.error('Test #%d failed: Got buffer\n%s, expected\n%s' \
     3230                        if    fRc \
     3231                          and curRes.aBuf is not None \
     3232                          and curRes.aBuf != aBufRead:
     3233                            reporter.error('Test #%d failed: Got buffer\n%s, expected\n%s'
    32363234                                           % (i, aBufRead, curRes.aBuf));
    32373235                            fRc = False;
     
    32403238                resOffset = long(curRes.cbOffset);
    32413239                if curOffset != resOffset:
    3242                     reporter.error('Test #%d failed: Final offset does not match: Got %d, expected %d' \
     3240                    reporter.error('Test #%d failed: Final offset does not match: Got %d, expected %d'
    32433241                                   % (i, curOffset, resOffset));
    32443242                    fRc = False;
Note: See TracChangeset for help on using the changeset viewer.

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