load-testing

How to make load testing for web application that based on Webrtc [closed]

落爺英雄遲暮 提交于 2019-12-17 19:49:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Im trying to make load testing for web application that based on Webrtc, does someone knows with whitch tool can I test that application. also I`d like to know if i can use Jmeter and if so , how can i use it ? thanks a head 回答1: When it comes to load testing, WebRTC is different. And that's because WebRTC is

Locust.io: Controlling the request per second parameter

。_饼干妹妹 提交于 2019-12-17 18:59:01
问题 I have been trying to load test my API server using Locust.io on EC2 compute optimized instances. It provides an easy-to-configure option for setting the consecutive request wait time and number of concurrent users . In theory, rps = wait time X #_users . However while testing, this rule breaks down for very low thresholds of #_users (in my experiment, around 1200 users). The variables hatch_rate , #_of_slaves , including in a distributed test setting had little to no effect on the rps .

Selenium testing without browser

假如想象 提交于 2019-12-17 15:30:00
问题 I use Selenium RC for testing. Now to perform a load test, I want to run parallel test cases. Is there any way to run them without opening a browser? 回答1: To set up on Centos (do all installation as root) Install pip Download https://bootstrap.pypa.io/get-pip.py python get-pip.py Installing selenium If you have pip on your system, you can simply install or upgrade the Python bindings: pip install -U selenium Alternately, you can download the source distribution from PyPI (e.g. selenium-2.53.1

JMeter : How to record HTTPS traffic?

做~自己de王妃 提交于 2019-12-17 05:11:51
问题 I'm using Apache JMeter 2.3, which now supports "attempt HTTPS spoofing" under the Proxy Server element. I've tried this on several different servers, and have had no success. Has anyone been able to successfully record from an HTTPS source with this setting? Or barring successfully recording, can anyone share a work-around? When available, I simply have HTTPS turned off at the server level, but this is not always feasible. Thoughts? 回答1: Starting from JMeter 3.0 default port for the HTTP(S)

How to put 25k record to kinesis stream and Test tool to acknowledge it

拟墨画扇 提交于 2019-12-13 14:10:07
问题 I have developed a piece of software which writes record to Amazon kinesis Stream web service. i am trying to understand do we have any software tool which will allow me to measure what maximum throughput my code is generating to Kinesis Stream for 1 Shard in one second. Yes i do agree it depends on hardware configurations too. But for start i want o know for general purpose machine then might be i will able to see horizontal scalability With this i am trying to achieve 25k records per second

How much memory for k6 VU (Virtual User)? [closed]

偶尔善良 提交于 2019-12-13 09:42:20
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 11 months ago . How much memory is used by a VU (Virtual User) in k6? Does memory usage for VUs scale linearly, i.e. if 1 VU uses X kilobytes, do 100 VUs use 100 * X kilobytes? 回答1: How much memory a VU takes is highly dependent on what your script does and (usually more importantly) how many

Visual studio web test for api request failure 'Invalid HTTP header characters'

别等时光非礼了梦想. 提交于 2019-12-13 07:10:37
问题 I'm trying to hit a Oauth2 secure Web API from a visual studio web test. I'm using a custom WebTestPlugin and custom WebTestRequestPlugin. The web test plugin simply gets the token from azure active directory and shoves into the request. That seems to be working just fine. I can see the outgoing request for the token comes back in fiddler. I use a web test request plugin to generate a json string string for the outgoing POST request to the API. I can't see that request getting fired off. I

Could not handle View/state and Event validation in Jmeter Load testing

混江龙づ霸主 提交于 2019-12-13 06:18:25
问题 I am currently load testing a .Net web application. In which scenario is like, user will login and will do certain steps of navigation then he/she will fill one evaluation form, submit it and then logout from the application. So for this scenario there are many GET and POST request are there. And as its a .Net application server will do some authentication using view-State and _Event-Validation. But to handle that thing I am not sure from which request I need to fetch those 2 Parameter and

JMeter: Result/Report Emailing?

我怕爱的太早我们不能终老 提交于 2019-12-13 04:49:53
问题 I am trying to get JMeter to email me the results after it runs a test plan which is intended to be run daily with success or fail and the test cases. In the documentation it state "JMeter has extensive Email capabilities. It can send email based on test results"[1], But I cant find anything. After some research there is possibility popping up in writing a script in bean script(but grabbing the actual results is difficult again) to email or running a batch file on a cron. The Question: Is

LocustIO: min_wait and max_wait not being applied

感情迁移 提交于 2019-12-13 03:47:01
问题 I am playing around LocustIO. I have a single self.client.get() task with my min_wait and max_wait were set to be 1 millisecond each. class App_User(HttpLocust): ... min_wait = 1 max_wait = 1 I was using logging to see the response. I am expecting in console that timestamps of the task logs will be within the same second given a max_wait of 1 millisecond but it seems that the task runs every 1 second still. Is it wrong to expect a 1000 GET responses within a 1 second load test period given 1