Can we upload a video file using jmeter? - jmeter

I need to test load on video files uploaded using jmeter.
Can we upload a video file in jmeter ?
If so can any one guide me with actual steps.
Thanks,
joe

You can mimic uploading of any file using JMeter, just mind the following:
In the HTTP Request sampler switch to "Files Upload" tab and provide the following:
Relative or full path to your video
Parameter name (HTML input of "file" type name attribute)
Video file MIME type
Make sure you select "POST" from the "Method" dropdown and tick Use multipart/form-data for POST box
The easiest way is just recording your file upload scenario with HTTP(S) Test Script Recorder, just remember to put the file you're trying to upload into JMeter's "bin" folder.

Related

Multipart/related API request using JMeter

How to copy a pdf file content into a variable and then upload it as a multipart/related API request using JMeter??
In order to read the file inline or save it into a JMeter Variable people normally use __FileToString() function however it might not work for PDF files because they're binary so you might want to additionally convert it into Base64, the __base64Encode() can be found in Custom JMeter Functions bundle which in its turn can be installed using JMeter Plugins Manager
In general I would suggest recording your file upload request using JMeter's HTTP(S) Test Script Recorder, just remember to copy the PDF file you will be uploading to "bin" folder of your JMeter installation otherwise JMeter will fail to capture the request properly.

Jmeter File upload - How to give path in jmeter to upload file

Im trying to upload file and sending few parameters in the request but it looks it is not taking file path
-- payload
{"id":70,"student_id":24,"uploaded_by": "dbhadauria#concertai.com","document_name":"test","document_type":".png","files":
"CG.png"}
I m trying to give exact path also like C:/Files?CG.png but it is not working.
Normally you need to provide the file path and its MIME type under Files Upload tab of the HTTP Request sampler
If you're uncertain regarding how to properly build the file upload request you can just record it using JMeter's HTTP(S) Test Script Recorder, just make sure to copy the file(s) you will be uploading to "bin" folder of your JMeter installation, this way JMeter will be able to properly capture the request and generate the HTTP Request sampler.
More information: Recording File Uploads with JMeter

Jmeter Image uploading script

I need to do load test on a web application where images will be uploaded(Similar to the site https://imgbb.com/). I am unable to perform this. Can anyone help me out with this.
I have tried working it out but no luck. Please find the below screenshots for reference. Firstly after recording the script i have enhanced the script with correlation and have executed, then I have received the following error.
After doing some R&D, I have made certain changes(Implementation from default to HttpClient4, and Request parameters to Body Data) and executed again, still no luck.
Changes Made
Result
Can someone please suggest now
You're doing something very weird. The easiest way to create a file upload request using JMeter is just recording it using JMeter's HTTP(S) Test Script Recorder
Start JMeter's HTTP(S) Test Script Recorder
Import ApacheJMeterTemporaryRootCA.crt file into your browser (it is required as imgbb.com is using HTTPS protocol and JMeter will need MITM certificate in order to be able to decrypt and record secure traffic)
Copy the file you'll be uploading into "bin" folder of your JMeter installation (otherwise JMeter will not be able to find it)
Perform upload request in the browser - JMeter will capture it under Recording Controller
See Recording File Uploads with JMeter article for more details.
Just in case if you want or need to build the request manually the relevant HTTP Request sampler configuration should look like:
Parameters tab:
Files Upload tab
You should see the following output in the View Results Tree listener:
To upload files from JMeter Http sampler you have to add file path to http sample and corresponding mime type..
Open Files to upload tab in the HTTP sampler enter the file path ..
If the file is in JMeter's bin directory you can give relative path , if the file resides somewhere on the disk give absolute path and enter corresponding mime type
You can find mime type here.
For more information on load testing with JMeter please follow the link

How to send audio file with http request sampler Jmeter?

I am searching for an option so that I can send audio file with http request sampler without pasting content from audio file(makes script heavy).
If you switch to "File Upload" tab of the HTTP Request sampler you will be able to provide path to the file for uploading along with its MIME type and associated parameter name.
This way your test plan will contain only path to the file, not its content so the size of .jmx script will not be increased.
The easiest approach to build the file upload request is just recording it using JMeter's HTTP(S) Test Script Recorder, just make sure you copy the file(s) to "bin" folder of your JMeter installation so JMeter could capture the request and build the relevant HTTP Request sampler configuration. See Recording File Uploads with JMeter article for more details.
__FileToString()
We can do so by using __FileToString(File_path,Encoding_type) method.

JMeter Scripting: Not getting the dynamic value from response code

I am experienced in HP Loadrunner but new in Jmeter.
I recently recorded a script in Jmeter 3.0 where one of the step is to upload a .pdf file. it is a 2 step process:
Step 1> on the upload window click Browse to locate the pdf file from local drive. Once this is done the server puts the file in a temporary directory in the backend and creates a metadata (dynamic value) for it
FYI: I placed the PDF file in the local folder: "Documents\apache-jmeter-3.0\bin\"
Step 2> Once the local file path has been specified (above step) and the button "Upload File" is clicked the file actually gets uploaded to the server and it gets stored permanently.
At this step I need to provide that dynamic value (metadata) to successfully submit the request.
The problem I am having is Jmeter is not returning the metadata (or dynamic value) on the Step-1 of the upload process-
Screenshot: Request/Response details from Jmeter (Step-1)
I recorded the same steps in Vugen 12.53 and it is returning the dynamic value fine for the Step-1-
Screenshot: Request/Response details from Vugen (Step-1)
Can anyone please help?
Thanks!
I can see LoadRunner and JMeter configuration mismatch when it comes to file upload block, I believe you should amend Files Upload section configuration like:
File Path: full path to your PDF file. If you placed in into JMeter's "bin" folder it may be just PerfTest_file_1.pdf
Parameter Name: this guy is the MOST important and this is where you seem to be having clash. Looking into LoadRunner screenshot you name
"Name=file", "Value=blob\\PerfTest_file_1.pdf", "File=Yes", ENDITEM,
and in JMeter for some reason you set this "Name" bit to "blob". I guess correct setting would be "file":
Other settings seem to be fine.
Going forward in order to avoid such situations you can just record your test scenarios. You need to have files you will be uploading in JMeter's "bin" folder so it could locate it while capturing file upload requests.
References:
HTTP(S) Test Script Recorder
JMeter Proxy Step by Step
Performance Testing: Upload and Download Scenarios with Apache JMeter
Just in case, this is how the request header looks like in JMeter-
Screenshot: JMeter Request Header
SOLUTION:
Simply selecting "Implementation" to either "Java" or "HttpClient3.1" solved the problem.
*Points to be noted:
In the "File Path" field either you need to provide the full path of the file location in local drive ("C:/user/Documents/...PerfTest_file_1.pdf") or place the PDF file in the "bin" folder of the Jmeter application folder and just provide the file name (PerfTest_file_1.pdf) as the path
Parameter value for "File" (in my case "blob") should be same as the "Parameter Name" for the file to be attached*

Resources