-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_test.go
54 lines (47 loc) · 907 Bytes
/
client_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
package client
import (
// "bytes"
"context"
"fmt"
"log"
"strconv"
// "sync"
"testing"
// "github.com/tidwall/resp"
)
func TestNewClient1(t *testing.T){
c, err := New("localhost:3000")
if err!=nil{
log.Fatal(err)
}
defer c.Close()
if err:=c.Set(context.TODO(), "foo",69);err!=nil{
log.Fatal(err)
}
fmt.Println("start GET")
val,err:=c.Get(context.TODO(), "foo")
if err!=nil{
log.Fatal(err)
}
n,_ := strconv.Atoi(val)
fmt.Println("end GET")
fmt.Println(n)
}
func TestNewClient(t *testing.T){
c, err := New("localhost:3000")
if err!=nil{
log.Fatal(err)
}
for i := 0; i < 10; i++ {
if err:=c.Set(context.TODO(), fmt.Sprintf("foo_%d", i),fmt.Sprintf("bar_%d", i));err!=nil{
log.Fatal(err)
}
fmt.Println("start GET")
val,err:=c.Get(context.TODO(), fmt.Sprintf("foo_%d", i))
if err!=nil{
log.Fatal(err)
}
fmt.Println("end GET")
fmt.Println(val)
}
}