1. 程式人生 > >ab傳送cookie和post請求的方法

ab傳送cookie和post請求的方法

ab是apache自帶的壓力測試工具,近期需要壓測一個介面,涉及使用post請求,並在其中帶cookie。方法總結如下:

1. 傳送cookie

方法1

-C key1=value1;key2=value2...

例:

ab -n 1 -C "name=ball;age=99;sex=male" "http://wc.sogou.com/worldcup2018/test.php"

服務端可拿到name, age, sex三個cookie值

方法2

-H "Cookie: key1=value1;key2=value2..."

例:

ab -n 1 -H "Cookie: name=ball;age=36"
"http://wc.sogou.com/worldcup2018/test.php"

2. 傳送post請求

方法

-T 'application/x-www-form-urlencoded' -p postfile

說明:
1. -T引數指明post資料編碼,無需變化。
2. postfile是檔名,裡面存放了所要傳送的post資料。資料格式如下:

key1=value1&key2=value2...

如果value包含&等特殊符號,則需要對value進行urlencode編碼。當然,保險起見,也可以選擇在任何情況下都對value進行urlencode。

例1:
postfile內容如下:

age=99&name=ball

傳送

ab -n 1 -T 'application/x-www-form-urlencoded' -p post.data "http://wc.sogou.com/worldcup2018/test.php"

服務端收到age, name兩個post資料。

例2,一個json的demo
postfile內容如下:

jsondemo=[{"mid":1,"price":10,"guess":3},{"mid":2,"price":20,"guess":3}]&name=ball

傳送方式同上。
服務端收到jsondemo為[{“mid”:1,”price”:10,”guess”:3},{“mid”:2,”price”:20,”guess”:3}], json_decode後得到php陣列。

postfile也可以是如下形式(將上文中的jsondemo進行urlencode得到):

jsondemo=%5B%7B%22mid%22%3A1%2C%22price%22%3A10%2C%22guess%22%3A3%7D%2C%7B%22mid%22%3A2%2C%22price%22%3A20%2C%22guess%22%3A3%7D%5D&name=ball