-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgunfish_test.go
66 lines (58 loc) · 1.22 KB
/
gunfish_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package gunfish_test
import (
"bytes"
"fmt"
"net/http"
"net/url"
"os"
"runtime/pprof"
"testing"
"time"
gunfish "github.com/kayac/Gunfish"
)
func BenchmarkGunfish(b *testing.B) {
myprof := "mybench.prof"
f, err := os.Create(myprof)
if err != nil {
b.Fatal(err)
}
b.StopTimer()
go func() {
gunfish.StartServer(conf, gunfish.Test)
}()
time.Sleep(time.Second * 1)
oj := `{"token":"token-x","payload":{"aps":{"alert":{"body":"message","title":"bench test"},"sound":"default"},"suboption":"test"}}`
jsons := bytes.NewBufferString("[")
jsons.WriteString(oj)
for i := 0; i < 2500; i++ {
jsons.WriteString("," + oj)
}
jsons.WriteString("]")
b.StartTimer()
for i := 0; i < b.N; i++ {
err := do(jsons)
if err != nil {
b.Fatal(err)
}
}
pprof.WriteHeapProfile(f)
defer f.Close()
}
func do(jsons *bytes.Buffer) error {
u, err := url.Parse(fmt.Sprintf("http://localhost:%d/push/apns", conf.Provider.Port))
if err != nil {
return err
}
client := &http.Client{}
nreq, err := http.NewRequest("POST", u.String(), jsons)
nreq.Header.Set("Content-Type", gunfish.ApplicationJSON)
if err != nil {
return err
}
resp, err := client.Do(nreq)
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}