EmidioStani / confluence-jmeter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

confluence-jmeter

The original files are available on Atlassian web site.

I updated the script, based on version 4.2.2, by fixing some issue and adding new features.

The script needs some fixes:

  1. it doesn't save the session on the Remote API and then operations like Create Personal Space and Grant View on Personal Space fail to connect because of the rpc token
  2. the labels used as tags in Confluence are not the same (we used demonstration and sales)
  3. the Browse User Status operation has an incomplete Response Assertion
  4. When deleting the space, operation that can take some time, the script doesn't wait in a loop so it can't remove some users and also when deleting a space Confluence doesn't go back to the Dashboard but instead stays on the page

Further I improved the script giving the possibility:

  1. to create users from Crowd, using a new command line parameter -Jenable.sso=true, which is false by default
  2. to use https in case Confluence is setup with https instead of http, using a new command like parameter -Jconfluence.protocol=https, which is http by default

Therefore after you download the script (with the resources) just remember to adapt the Crowd configuration (parameter -Jcrowd.host), that the operation Create User from Crowd expect to have Crowd under the same ip address of Confluence (you can of course change it) and be careful when modifying (from Read Only to Ready Write) the connection to Crowd.

The script has been executed on Confluence 4.3.1 with Jmeter 2.7 and Confluence 5.0.2/3 with Jmeter 2.9

Setup:

jmeter.bat -t ..\..\confluence-jmeter-master\jmeter-test-setup.jmx -Jspace.zip=..\..\confluence-jmeter-master\demo-site.zip -Jadmin.user=ADMINUSER -Jadmin.pass=ADMINPASSWORD -Jconfluence.host=HOSTNAME -Jconfluence.port=443 -Jconfluence.context=/confluence -Jenable.sso=true -Jconfluence.protocol=https

Execution:

jmeter.bat -t ..\..\confluence-jmeter-master\jmeter-test-fixedload.jmx -Jadmin.user=ADMINUSER -Jadmin.pass=aDMINPASSWORD -Jconfluence.host=HOSTNAME -Jconfluence.port=443 -Jconfluence.context=/confluence -Jconfluence.protocol=https

Deletion:

jmeter.bat -t ..\..\confluence-jmeter-master\jmeter-test-setup.jmx -Jremove.data=true -Jadmin.user=ADMINUSER -Jadmin.pass=ADMINPASSWORD -Jconfluence.host=HOSTNAME -Jconfluence.port=443 -Jconfluence.context=/confluence -Jconfluence.protocol=https

About