-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
149 lines (121 loc) · 2.88 KB
/
main_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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package main
import (
"bufio"
"context"
"log"
"net"
"sync"
"testing"
"time"
"github.com/influx6/wordies/internal"
"github.com/influx6/wordies/service"
)
var (
ending = []byte("\r\n")
basicSentence = "Miss. Greg left with me and we met at the cafe and went home. After which I got me some coffee; but Miss. Greg appeared and kissed me before I knew we were married"
)
func BenchmarkTCPServiceWithWorkerPool(b *testing.B) {
b.StopTimer()
b.ReportAllocs()
letters := service.NewLetterCounter()
words := service.NewWordCounter()
var addr = "localhost:3640"
ctx, cancel := context.WithCancel(context.Background())
jobs := make(chan chan string, 0)
var waiter sync.WaitGroup
pool := internal.NewWorkerPool(300, 30*time.Second)
defer pool.Stop()
waiter.Add(1)
go func() {
defer waiter.Done()
service.TCPService(ctx, false, addr, jobs)
}()
// drain channel
waiter.Add(1)
go func() {
defer waiter.Done()
for job := range jobs {
func(incoming chan string) {
pool.Add(func() {
for word := range incoming {
letters.Compute(word)
words.Compute(word)
}
})
}(job)
}
}()
conn, err := net.DialTimeout("tcp", addr, 2*time.Second)
if err != nil {
log.Fatal(err)
}
writer := bufio.NewWriterSize(conn, len(basicSentence)+2)
b.SetBytes(int64(len(basicSentence) + 2))
b.StartTimer()
for i := 0; i < b.N; i++ {
writer.WriteString(basicSentence)
writer.Write(ending)
}
writer.Flush()
b.StopTimer()
conn.Close()
cancel()
waiter.Wait()
}
func BenchmarkTCPServiceWithUpdatesWithWorkerPool(b *testing.B) {
b.StopTimer()
b.ReportAllocs()
letters := service.NewLetterCounter()
words := service.NewWordCounter()
top5 := new(service.Top5WordLetterStat)
var addr = "localhost:5670"
ctx, cancel := context.WithCancel(context.Background())
jobs := make(chan chan string, 0)
var waiter sync.WaitGroup
pool := internal.NewWorkerPool(300, 30*time.Second)
defer pool.Stop()
waiter.Add(1)
go func() {
defer waiter.Done()
service.TCPService(ctx, false, addr, jobs)
}()
// drain channel
waiter.Add(1)
go func() {
defer waiter.Done()
for job := range jobs {
func(incoming chan string) {
pool.Add(func() {
for word := range incoming {
letters.Compute(word)
words.Compute(word)
}
ltstat, lttotal := letters.Stat()
wdstat, wdtotal := words.Stat()
top5.Update(service.FreshStat{
Words: wdstat,
Letters: ltstat,
TotalWords: wdtotal,
TotalLetters: lttotal,
})
})
}(job)
}
}()
conn, err := net.DialTimeout("tcp", addr, 2*time.Second)
if err != nil {
log.Fatal(err)
}
writer := bufio.NewWriterSize(conn, len(basicSentence)+2)
b.SetBytes(int64(len(basicSentence) + 2))
b.StartTimer()
for i := 0; i < b.N; i++ {
writer.WriteString(basicSentence)
writer.Write(ending)
}
writer.Flush()
b.StopTimer()
conn.Close()
cancel()
waiter.Wait()
}