Skip to content

showwin/hakari

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hakari

A Stress Test Tool for Web Application.
Easy to Install, Easy to Write Scenario.

Installation

OS X (homebrew)

$ brew tap showwin/hakari
$ brew install hakari

### How to Update ###
$ brew update
$ brew upgrade hakari

Others (Linux, Windows.)

Please download the compatible package from Releases.
If there is no compatible package you want, please let me know by issues.

Usage

$ hakari --help
Usage: hakari [option]
Options:
  -w N	           Run with N workers.   default: 2
  -c FILE          Config file.          default: ./config.yml
  -s FILE          Scenario file.        default: ./scenario.yml
  -m N             Run for N minutes.    default: 1

1. Write Scenario

hakari uses YAML file to write request scenario, as follows:

# scenario.yml
TopPage:
  method: "GET"
  url: "http://example.com/"
Login:
  method: "POST"
  url: "http://example.com/login"
  parameter:
    email: "user@example.com"
    password: "secret_password"
BuyProduct:
  method: "POST"
  url: "http://example.com/products/buy/1234"
MyPage:
  method: "GET"
  url: "http://example.com/users/5555"

method and url are required for each request.

2. Run hakari

$ hakari
2016/02/21 18:12:47  hakari Start!  Number of Workers: 2
2016/02/21 18:13:48  hakari Finish!
TopPage
	200: 125 req, 238.66 ms/req

Login
	200: 125 req, 255.11 ms/req

BuyProduct
  	200: 98 req, 247.68 ms/req
  	404: 1 req, 97.12 ms/req
  	500: 26 req, 143.82 ms/req

MyPage
	200: 124 req, 233.42 ms/req

(option) Customize HTTP Header

Require Header at top level. Write HTTP header fields freely.

# config.yml
Header:
  Accept: "*/*"
  Accept-Encoding: "gzip, deflate, sdch"
  Accept-Language: "ja,en-US;q=0.8,en;q=0.6"
  Cache-Control: "max-age=0"
  User-Agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.39 Safari/537.36"

LICENSE

MIT

About

Stress Test Tool for Web Application

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages