|
|
@ -2,9 +2,12 @@ package utils |
|
|
|
|
|
|
|
import ( |
|
|
|
"fmt" |
|
|
|
"github.com/kirinlabs/HttpRequest" |
|
|
|
"github.com/shopspring/decimal" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
|
|
"go.uber.org/atomic" |
|
|
|
"testing" |
|
|
|
"time" |
|
|
|
) |
|
|
|
|
|
|
|
func TestQrcode2Base64(t *testing.T) { |
|
|
@ -75,3 +78,48 @@ func TestCountDownFormat(t *testing.T) { |
|
|
|
fmt.Println(a.Float64()) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func login() string { |
|
|
|
loginUrl := "https://api.ouxuanhudong.com/PcClient/Client/UserCtl/entryLogin?activity_id=410&account=18926327519&password=123456" |
|
|
|
resp, _ := HttpRequest.NewRequest().Get(loginUrl) |
|
|
|
var body = make(map[string]interface{}, 0) |
|
|
|
resp.Json(&body) |
|
|
|
token := "" |
|
|
|
if data, ok := body["data"].(map[string]interface{}); ok { |
|
|
|
if people, ok := data["people"].(map[string]interface{}); ok { |
|
|
|
token = people["token"].(string) |
|
|
|
} |
|
|
|
} |
|
|
|
//fmt.Println(token)
|
|
|
|
return token |
|
|
|
} |
|
|
|
|
|
|
|
var incr = new(atomic.Int32) |
|
|
|
|
|
|
|
func order(token string) { |
|
|
|
orderUrl := "https://api.ouxuanhudong.com/PcClient/Client/OrderEntryCtl/manualOrder" |
|
|
|
resp, _ := HttpRequest.NewRequest().Post(orderUrl, map[string]interface{}{ |
|
|
|
"name": "1222", |
|
|
|
"phone": "22222222", |
|
|
|
"goods": `[{"good_id":92,"good_num":1}]`, |
|
|
|
"token": token, |
|
|
|
}) |
|
|
|
var data = make(map[string]interface{}) |
|
|
|
resp.Json(&data) |
|
|
|
//fmt.Println(data)
|
|
|
|
incr.Add(1) |
|
|
|
} |
|
|
|
|
|
|
|
func TestRequest(t *testing.T) { |
|
|
|
var now = time.Now() |
|
|
|
tr := time.NewTicker(1 * time.Second) |
|
|
|
for { |
|
|
|
select { |
|
|
|
case <-tr.C: |
|
|
|
fmt.Println(incr) |
|
|
|
fmt.Println(time.Now().Sub(now).Seconds()) |
|
|
|
default: |
|
|
|
go order(login()) |
|
|
|
} |
|
|
|
} |
|
|
|
} |