-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinterop_test.go
194 lines (163 loc) · 4.71 KB
/
interop_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*******************************************************************************
* ___ _ ____ ____
* / _ \ _ _ ___ ___| |_| _ \| __ )
* | | | | | | |/ _ \/ __| __| | | | _ \
* | |_| | |_| | __/\__ \ |_| |_| | |_) |
* \__\_\\__,_|\___||___/\__|____/|____/
*
* Copyright (c) 2014-2019 Appsicle
* Copyright (c) 2019-2022 QuestDB
*
* 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 questdb_test
import (
"context"
"encoding/json"
"io"
"os"
"strings"
"testing"
qdb "github.com/questdb/go-questdb-client/v3"
"github.com/stretchr/testify/assert"
)
// Tests for interoperability between all ILP clients.
type testCases []testCase
type testCase struct {
Name string `json:"testName"`
Table string `json:"table"`
Symbols []testSymbol `json:"symbols"`
Columns []testColumn `json:"columns"`
Result testResult `json:"result"`
}
type testSymbol struct {
Name string `json:"name"`
Value string `json:"value"`
}
type testColumn struct {
Type string `json:"type"`
Name string `json:"name"`
Value interface{} `json:"value"`
}
type testResult struct {
Status string `json:"status"`
Line string `json:"line"`
}
func TestTcpClientInterop(t *testing.T) {
ctx := context.Background()
testCases, err := readTestCases()
assert.NoError(t, err)
for _, tc := range testCases {
t.Run(tc.Name, func(t *testing.T) {
srv, err := newTestTcpServer(sendToBackChannel)
assert.NoError(t, err)
sender, err := qdb.NewLineSender(ctx, qdb.WithTcp(), qdb.WithAddress(srv.Addr()))
assert.NoError(t, err)
sender.Table(tc.Table)
for _, s := range tc.Symbols {
sender.Symbol(s.Name, s.Value)
}
for _, s := range tc.Columns {
switch s.Type {
case "LONG":
sender.Int64Column(s.Name, int64(s.Value.(float64)))
case "DOUBLE":
sender.Float64Column(s.Name, s.Value.(float64))
case "STRING":
sender.StringColumn(s.Name, s.Value.(string))
case "BOOLEAN":
sender.BoolColumn(s.Name, s.Value.(bool))
default:
assert.Fail(t, "unexpected column type: "+s.Type)
}
}
err = sender.AtNow(ctx)
switch tc.Result.Status {
case "SUCCESS":
assert.NoError(t, err)
err = sender.Flush(ctx)
assert.NoError(t, err)
expectLines(t, srv.BackCh, strings.Split(tc.Result.Line, "\n"))
case "ERROR":
assert.Error(t, err)
default:
assert.Fail(t, "unexpected test status: "+tc.Result.Status)
}
sender.Close(ctx)
srv.Close()
})
}
}
func TestHttpClientInterop(t *testing.T) {
ctx := context.Background()
testCases, err := readTestCases()
assert.NoError(t, err)
for _, tc := range testCases {
t.Run(tc.Name, func(t *testing.T) {
srv, err := newTestHttpServer(sendToBackChannel)
assert.NoError(t, err)
sender, err := qdb.NewLineSender(ctx, qdb.WithHttp(), qdb.WithAddress(srv.Addr()))
assert.NoError(t, err)
sender.Table(tc.Table)
for _, s := range tc.Symbols {
sender.Symbol(s.Name, s.Value)
}
for _, s := range tc.Columns {
switch s.Type {
case "LONG":
sender.Int64Column(s.Name, int64(s.Value.(float64)))
case "DOUBLE":
sender.Float64Column(s.Name, s.Value.(float64))
case "STRING":
sender.StringColumn(s.Name, s.Value.(string))
case "BOOLEAN":
sender.BoolColumn(s.Name, s.Value.(bool))
default:
assert.Fail(t, "unexpected column type: "+s.Type)
}
}
err = sender.AtNow(ctx)
switch tc.Result.Status {
case "SUCCESS":
assert.NoError(t, err)
err = sender.Flush(ctx)
assert.NoError(t, err)
expectLines(t, srv.BackCh, strings.Split(tc.Result.Line, "\n"))
case "ERROR":
assert.Error(t, err)
default:
assert.Fail(t, "unexpected test status: "+tc.Result.Status)
}
sender.Close(ctx)
srv.Close()
})
}
}
func readTestCases() (testCases, error) {
file, err := os.Open("./test/interop/questdb-client-test/ilp-client-interop-test.json")
if err != nil {
return nil, err
}
defer file.Close()
content, err := io.ReadAll(file)
if err != nil {
return nil, err
}
var testCases testCases
err = json.Unmarshal(content, &testCases)
if err != nil {
return nil, err
}
return testCases, nil
}