-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_test.go
60 lines (54 loc) · 1.03 KB
/
server_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
package main
import (
"context"
"fmt"
"log"
"redis-go/client"
"sync"
"testing"
"time"
)
func TestServerWithMultiClients(t *testing.T){
server := NewServer(Config{})
go func(){
log.Fatal(server.Start())
}()
time.Sleep(time.Second)
nClients := 10
wg := sync.WaitGroup{}
wg.Add(nClients)
for i := 0; i < nClients; i++ {
go func (it int) {
c, err := client.New("localhost:3000")
if err!=nil{
log.Fatal(err)
}
defer c.Close()
key := fmt.Sprintf("foo_Client%d",it)
value := fmt.Sprintf("bar_Client%d",it)
if err:=c.Set(context.TODO(), key,value);err!=nil{
log.Fatal(err)
}
val,err:=c.Get(context.TODO(), key)
if err!=nil{
log.Fatal(err)
}
fmt.Printf("client %d got this value back => %s\n",i,val)
wg.Done()
}(i)
}
wg.Wait()
// time.Sleep(time.Second)
//
if len(server.peers)!=0 {
t.Fatalf("expected 0 peers, got %d",len(server.peers))
}
}
func TestFooBar(t *testing.T){
in:=map[string]string{
"first":"1",
"second":"2",
}
out:=respWriteMap(in)
fmt.Println(out)
}