Home > Mobile >  xtext web Load Testing
xtext web Load Testing

Time:12-07

Good day...

I have developed a DSL in xtext web using eclipse. It has a login page and multiple users can login from anywhere...

Now my requirement is to test the load of this web DSL. I need to test:

  1. "certain number of users in parallel"
  2. how conflicts are avoided/managed"
  3. "the perceived latency experienced by the users (the lower the better)"

Please guide me how to perform this load and stress test on Jetty server.

Thanks,

CodePudding user response:

If you're talking about xtext-web it's just a matter of sending proper HTTP requests simulating your users accessing the endpoint.

Just choose a load testing tool which supports HTTP protocol (the vast majority of them does) and implement your test scenario steps. If you're looking for a Java-based one there are Apache JMeter and Gatling.

  • Related