forked from go-zeromq/zmq4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
security_test.go
111 lines (89 loc) · 2.3 KB
/
security_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
// Copyright 2018 The go-zeromq Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package zmq4
import (
"bytes"
"context"
"os"
"reflect"
"strings"
"testing"
"time"
"golang.org/x/sync/errgroup"
"golang.org/x/xerrors"
)
func TestNullSecurity(t *testing.T) {
sec := nullSecurity{}
if got, want := sec.Type(), NullSecurity; got != want {
t.Fatalf("got=%v, want=%v", got, want)
}
data := []byte("hello world")
wenc := new(bytes.Buffer)
if _, err := sec.Encrypt(wenc, data); err != nil {
t.Fatalf("error encrypting data: %+v", err)
}
if !bytes.Equal(wenc.Bytes(), data) {
t.Fatalf("error encrypted data.\ngot = %q\nwant= %q\n", wenc.Bytes(), data)
}
wdec := new(bytes.Buffer)
if _, err := sec.Decrypt(wdec, wenc.Bytes()); err != nil {
t.Fatalf("error decrypting data: %+v", err)
}
if !bytes.Equal(wdec.Bytes(), data) {
t.Fatalf("error decrypted data.\ngot = %q\nwant= %q\n", wdec.Bytes(), data)
}
}
func TestNullHandshakeReqRep(t *testing.T) {
var (
reqQuit = NewMsgString("QUIT")
repQuit = NewMsgString("bye")
)
sec := nullSecurity{}
ctx, timeout := context.WithTimeout(context.Background(), 10*time.Second)
defer timeout()
ep := "ipc://ipc-req-rep-null-sec"
cleanUp(ep)
req := NewReq(ctx, WithSecurity(sec))
defer req.Close()
rep := NewRep(ctx, WithSecurity(sec))
defer rep.Close()
grp, ctx := errgroup.WithContext(ctx)
grp.Go(func() error {
err := rep.Listen(ep)
if err != nil {
return xerrors.Errorf("could not listen: %w", err)
}
msg, err := rep.Recv()
if err != nil {
return xerrors.Errorf("could not recv REQ message: %w", err)
}
if !reflect.DeepEqual(msg, reqQuit) {
return xerrors.Errorf("got = %v, want = %v", msg, repQuit)
}
err = rep.Send(repQuit)
if err != nil {
return xerrors.Errorf("could not send REP message: %w", err)
}
return nil
})
grp.Go(func() error {
err := req.Dial(ep)
if err != nil {
return xerrors.Errorf("could not dial: %w", err)
}
err = req.Send(reqQuit)
if err != nil {
return xerrors.Errorf("could not send REQ message: %w", err)
}
return nil
})
if err := grp.Wait(); err != nil {
t.Fatalf("error: %+v", err)
}
}
func cleanUp(ep string) {
if strings.HasPrefix(ep, "ipc://") {
os.Remove(ep[len("ipc://"):])
}
}