-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathjsm_test.go
147 lines (122 loc) · 3.65 KB
/
jsm_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
// Copyright 2020 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jsm_test
import (
"encoding/json"
"fmt"
"testing"
"github.com/nats-io/jsm.go/api"
"github.com/nats-io/nats.go"
"github.com/nats-io/jsm.go"
)
func checkErr(t *testing.T, err error, m string) {
t.Helper()
if err == nil {
return
}
t.Fatal(m + ": " + err.Error())
}
func TestAPISubject(t *testing.T) {
cases := []struct {
subject string
prefix string
domain string
res string
}{
{"$JS.API.FOO", "", "", "$JS.API.FOO"},
{"$JS.API.FOO", "js.foreign", "", "js.foreign.FOO"},
{"$JS.API.FOO", "js.foreign", "domain", "$JS.domain.API.FOO"},
{"$JS.API.FOO", "", "domain", "$JS.domain.API.FOO"},
}
for _, tc := range cases {
res := jsm.APISubject(tc.subject, tc.prefix, tc.domain)
if res != tc.res {
t.Fatalf("expected %s got %s", tc.res, res)
}
}
}
func TestIsErrorResponse(t *testing.T) {
if jsm.IsErrorResponse(&nats.Msg{Data: []byte("+OK")}) {
t.Fatalf("OK is Error")
}
if jsm.IsErrorResponse(&nats.Msg{Data: []byte(`{"stream":"test"}`)}) {
t.Fatalf("OK JSON is Error")
}
if !jsm.IsErrorResponse(&nats.Msg{Data: []byte("-ERR 'error'")}) {
t.Fatalf("ERR is not Error")
}
if !jsm.IsErrorResponse(&nats.Msg{Data: []byte(`{"error":{"code":404}}`)}) {
t.Fatalf("JSON response is not Error")
}
}
func TestParseErrorResponse(t *testing.T) {
checkErr(t, jsm.ParseErrorResponse(&nats.Msg{Data: []byte("+OK")}), "expected nil got error")
cases := []struct {
err string
expect string
}{
{"-ERR 'test error", "test error"},
{`{"error":{"code":404,"description":"test error", "err_code":123}}`, "test error (123)"},
}
for _, c := range cases {
err := jsm.ParseErrorResponse(&nats.Msg{Data: []byte(c.err)})
if err == nil {
t.Fatalf("expected an error got nil")
}
if err.Error() != c.expect {
t.Fatalf("expected 'test error' got '%v'", err)
}
}
}
func TestIsOKResponse(t *testing.T) {
if !jsm.IsOKResponse(&nats.Msg{Data: []byte("+OK")}) {
t.Fatalf("OK is Error")
}
if !jsm.IsOKResponse(&nats.Msg{Data: []byte(`{"stream":"x"}`)}) {
t.Fatalf("JSON response is not Error")
}
if jsm.IsOKResponse(&nats.Msg{Data: []byte("-ERR error")}) {
t.Fatalf("ERR is not Error")
}
if jsm.IsOKResponse(&nats.Msg{Data: []byte(`{"error":{"code": 404}}`)}) {
t.Fatalf("JSON is not Error")
}
}
func TestIsValidName(t *testing.T) {
if jsm.IsValidName("") {
t.Fatalf("did not detect empty string as invalid")
}
for _, c := range []string{".", ">", "*"} {
tc := "x" + c + "x"
if jsm.IsValidName(tc) {
t.Fatalf("did not detect %q as invalid", tc)
}
}
}
func TestIsNatsError(t *testing.T) {
pubAck := `{"error":{"code":503,"err_code":10077,"description":"maximum messages exceeded"},"stream":"GOVERNOR_TEST","seq":0}`
resp := api.JSApiResponse{}
err := json.Unmarshal([]byte(pubAck), &resp)
if err != nil {
t.Fatalf("unmarshal failed: %s", err)
}
if !jsm.IsNatsError(resp.ToError(), 10077) {
t.Fatalf("Expected response to be 10077")
}
if jsm.IsNatsError(resp.ToError(), 10076) {
t.Fatalf("Expected response to not be 10076")
}
if jsm.IsNatsError(fmt.Errorf("error"), 10077) {
t.Fatalf("Non api error is 10077")
}
}