Submitted Questions

  • Write the test cases for File Transfer ?

    Star Read Best Answer

    Editorial / Best Answer

    kurtz182  

    • Member Since Nov-2009 | Dec 26th, 2009


    TEST CASES

    FUNCTIONAL
    1) Transfer an empty file
    2) Transfer a file with one character
    3) Transfer a file with maximum number of characters
    4) Transfer a file that exceeds maximum number of characters by 1 (max+1)
    5) Transfer a file that is less than maximum number of characters by 1 (max-1)
    6) Transfer a file that contains the entire ASCII character set
    7) Transfer a file that contains the entire UTF-8 character set
    8) Transfer a file that contains the entire Unicode character set
    9) Transfer a file that contains the entire Unicode big endian character set

    PERFORMANCE
    Verify speed of file transfer meets specification

    STEPS
    1) send file
    2) navigate to the file destination,
    3) verify the file is transferred to proper target destination,
    4) verify the filename has not changed,
    5) verify the file's size has not changed,
    6) open the file and
    7) verify that the contents had been transferred without changes.  

    mithr17

    • Nov 30th, 2011

    Adding to Kurtz answer.. Functional: Every file transfer mode can handle a specified limit of files at a time. Keeping this requirements in mind, check the behavior for - Upload files exceeding the ...

    kurtz182

    • Dec 26th, 2009

    TEST CASESFUNCTIONAL1) Transfer an empty file 2) Transfer a file with one character3) Transfer a file with maximum number of characters4) Transfer a file that exceeds maximum number of characters by 1...