Get Knowledge from Video instead of Content:

Monday 30 January 2017

JMeter - Config Element - "FTP Request"

Apart from HTTP and HTTPS protocols, Apache JMeter also supports FTP protocol. Today I will show you how can you create a script using FTP, FTPS and SFTP test plans using JMeter.

Why FTP testing is important?
Load testing of FTP servers is important for determining their capacity, measuring throughput, checking the impact of the severe load for a prolonged time while transferring the small, medium and bulky file.

How to create FTP script in Apache JMeter?
Click here to know......

How to add "FTP Request" element?
You can follow below steps:
1. Select "Test Plan" node
2. Right click on "Test Plan" node
3. Mouse hovers "Add"
4. Mouse hovers "Thread Group (Users)"
5. Click "Thread Group"
6. Right click on "Thread Group"
7. Mouse hovers "Add"
8. Mouse hovers "Sampler"
9. Click "FTP Request"


How to remove "FTP Request" element?
You can follow below steps:
1. Select "FTP Request" node
2. Right click on "FTP Request" node
3. Click "Remove" (Mouse) or "Delete" button from the keyboard
4. Click "Yes"

What are the attributes of "FTP Request" element?
"FTP Request" has below attributes:
a. Name: To provide element name
b. Comments: To provide arbitrary comments (if any)
c.  Server Name or IP: FTP server hostname or IP address. This is the server from/to where you need to get/put the file. No need to provide again if you have already provided in FTP Request Default element.
d. Port Number: FTP server port number. Default FTP server port is 21 unless configured on the different port. No need to provide again if you have already provided in FTP Request Default element.
e. Remote File: The path to the file on the FTP server, which will be downloaded or used as a destination path for a file upload. 
f.  Local FileThe path to the file on the local file system (where JMeter is running), which will be uploaded to the FTP server or to where the remote file is stored locally. 
g. Local File Contents: The source file content can be provided using this input when the file is uploaded.
h. get(RETR): Choose to download the file from the FTP server.
i.  put(STOR)Choose to upload the file to the FTP server. 
j. Use Binary mode: whether to use “binary” mode for file transfers. If you are uploading/downloading plain text files, then unchecked this box otherwise keep this checked in all cases
k. Login Configuration: FTP server credentials need to be provided here.

Some important Tips:
  • Use FTP Request under Thread Group
  • Add FTP Request Default element under Test Plan where FTP server name or IP is provided
  • Provide Remote file and Local file value in "FTP Request" instead of "FTP Request Default"
  • Some common error: HTTP 530 (Invalid Credential), HTTP 550 (Invalid File Path)
Related Topics:

No comments :

Post a Comment