Jmeter and Butbucket Server Load Testing

I am new to Jmeter. I hosted the Bitbucket server locally. Sometimes when the Bamboo plan runs parallel git clone operations, it found that the Bitbucket servers were slow or unresponsive and I had to restart the service. I want to stimulate this behavior by running a jmeter test against a locally created other Bitbucket server.

I would like to download the below script test using Jmeter server and bitbucket.

  • Download test git clone and git update operations from bitbucket server via Jmeter.
  • Initially 20 users will be making clone requests and 20 will be running git update requests for the Bitbucket server.
  • Multiple git repository and multiple users configured in jmeter for testing.

Since these are not browser operations (git clone operation), I'm not sure how to extract the exact url that hits the bitbucket server.

thank

+3


source to share


1 answer


I would recommend using the Git Java Client library, i.e. JGit to mimic the required operations with JMeter. Just add JGit and dependencies to the JMeter Classpath , restart JMeter, and you can use the JGit API from JSR223 Test Elements :

JMeter JSR223 Git



Literature:

+2


source







All Articles