Last active
July 5, 2023 17:02
-
-
Save seyhunak/70b47d5c7bd40f179e14 to your computer and use it in GitHub Desktop.
Rails - Apache Bench - Load Testing (if Devise Sign-in Required)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. | |
LOGIN_PAGE=http://localhost/users/sign_in | |
curl --cookie-jar cookie_file $LOGIN_PAGE | grep csrf-token | |
2. | |
<meta content="csrf-token" name="csrf-token" /> | |
TOKEN=csrf-token | |
3. | |
[email protected] | |
PASSWORD=yourpass | |
curl --cookie cookie_file \ | |
--cookie-jar cookie_file \ | |
--data "user[email]=$EMAIL&user[password]=$PASSWORD" \ | |
--data-urlencode authenticity_token=$TOKEN \ | |
$LOGIN_PAGE | |
4. | |
INTERNAL_PAGE="http://localhost/activities/feed?locale=en&venue=1" | |
curl --cookie cookie_file $INTERNAL_PAGE | |
5. | |
cat cookie_file | |
# Netscape HTTP Cookie File | |
# http://curl.haxx.se/docs/http-cookies.html | |
# This file was generated by libcurl! Edit at your own risk. | |
lvh.me FALSE / FALSE 0 request_method POST | |
#HttpOnly_lvh.me FALSE / FALSE 0 _app_session cookie_value | |
6. | |
COOKIE="_app_session=cookie_value" | |
7. | |
TRIALS=100 | |
CONCURRENCY=10 | |
ab -n $TRIALS -c $CONCURRENCY -C $COOKIE $INTERNAL_PAGE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment