-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpool_worker_test.go
108 lines (95 loc) · 2.5 KB
/
pool_worker_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
package main
import (
"io/ioutil"
"log"
"testing"
"time"
"sync"
"fmt"
)
func TestWorkerUploadFileToDropBox(t *testing.T) {
fmt.Println(" Start with test TestWorkerUploadFileToDropBox ")
dataFile, err := ioutil.ReadFile("WorldCup.jpg")
if (err != nil) {
log.Println(err)
}
responseChan := make(chan ResponseInfo)
upload := UploadInfoAsyn{
info: UploadInfo{
data: dataFile,
token: "zWnEITOt3sAAAAAAAAAAEYDxegNY7vq2usYt4dJcd-UZ6JTfPCNEh1QMeUYaeMnm",
fullPath: "/" + GetTimeStamp() + "_WorldCup.jpg" ,
},
reponse: responseChan,
}
jobs:= make(chan UploadInfoAsyn)
go workerUploadFileToDropBox(1, jobs)
jobs <- upload
select {
case responseInfo := <-responseChan:
if (responseInfo.err != nil) {
t.Error(" Error : ", responseInfo.err)
}
case <-time.After(timeOut):
t.Error(" Request Time Out ")
}
fmt.Println(" Done with test TestWorkerUploadFileToDropBox ")
}
func TestWorkerUploadFileToDropBoxThroughGRPC(t *testing.T) {
fmt.Println(" Start with test TestWorkerUploadFileToDropBoxThroughGRPC ")
dataFile, err := ioutil.ReadFile("WorldCup.jpg")
if (err != nil) {
log.Println(err)
}
responseChan := make(chan ResponseInfo)
upload := UploadInfoAsyn{
info: UploadInfo{
data: dataFile,
token: "zWnEITOt3sAAAAAAAAAAEYDxegNY7vq2usYt4dJcd-UZ6JTfPCNEh1QMeUYaeMnm",
fullPath: "/" + GetTimeStamp() + "_WorldCup.jpg" ,
},
reponse: responseChan,
}
jobs := make(chan UploadInfoAsyn)
go InitGRPCServer(1,":7777")
go workerSendRequestToGRPC(1,"127.0.0.1:7777", jobs)
jobs <- upload
select {
case responseInfo := <-responseChan:
if (responseInfo.err != nil) {
t.Error(" Error : ", responseInfo.err)
}
case <-time.After(timeOut):
t.Error(" Request Time Out ")
}
fmt.Println(" Done with test TestWorkerUploadFileToDropBoxThroughGRPC ")
}
func BenchmarkWorkerUploadFile(b *testing.B) {
dataFile, err := ioutil.ReadFile("WorldCup.jpg")
if (err != nil) {
log.Println(err)
}
responseChan := make(chan ResponseInfo)
upload := UploadInfoAsyn{
info: UploadInfo{
data: dataFile,
token: "zWnEITOt3sAAAAAAAAAAEYDxegNY7vq2usYt4dJcd-UZ6JTfPCNEh1QMeUYaeMnm",
fullPath: "/" + GetTimeStamp() + "_WorldCup.jpg" ,
},
reponse: responseChan,
}
jobRequestToGrpcs = make(chan UploadInfoAsyn)
go workerUploadFileToDropBox(20, jobRequestToGrpcs)
var wg sync.WaitGroup
wg.Add(b.N)
for i := 0; i < b.N; i++ {
jobRequestToGrpcs <- upload
select {
case <-responseChan:
wg.Done()
case <-time.After(10 * time.Minute):
wg.Done()
}
}
wg.Wait()
}