Write the test cases for File Transfer ?

Questions by Meenakshi Dubey

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.  

Showing Answers 1 - 6 of 6 Answers

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 file transfer limit (max +1)
- Upload files just meeting the file transfer limit (max)
- upload files just under the file transfer limit (max -1)

Stess:
- Upload files exceeding transfer limits and check if it crashes.

Performance:
- Upload files exceeding transfer limits and check time taken to complete uploading all of them
- Upload empty files exceeding transfer limits and check the performance

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions