-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquery_test.go
More file actions
298 lines (247 loc) · 7.43 KB
/
query_test.go
File metadata and controls
298 lines (247 loc) · 7.43 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package gospice
import (
"context"
"os"
"testing"
"time"
"github.com/apache/arrow-go/v18/arrow/array"
)
// Execute a basic query and check for columns and rows
func TestBasicQuery(t *testing.T) {
spice := NewSpiceClient()
defer func() { _ = spice.Close() }()
ApiKey, exists := os.LookupEnv("SPICE_API_KEY")
if !exists || ApiKey == "" {
t.Skip("SPICE_API_KEY not set, skipping cloud authentication test")
}
if err := spice.Init(WithApiKey(ApiKey), WithSpiceCloudAddress()); err != nil {
t.Fatalf("error initializing SpiceClient: %v", err)
}
t.Run("Recent Ethereum Blocks", func(t *testing.T) {
t.Skip()
reader, err := spice.Query(context.Background(), "SELECT number, \"timestamp\", hash FROM eth.recent_blocks ORDER BY number LIMIT 10")
if err != nil {
t.Fatalf("error querying: %v", err)
}
defer reader.Release()
schema := reader.Schema()
if !schema.HasField("number") {
t.Fatalf("Schema does not have field 'number'")
}
if !schema.HasField("timestamp") {
t.Fatalf("Schema does not have field 'timestamp'")
}
if !schema.HasField("hash") {
t.Fatalf("Schema does not have field 'hash'")
}
for reader.Next() {
record := reader.RecordBatch()
defer record.Release()
if record.NumRows() != 10 {
t.Fatalf("Expected 10 rows, got %d", record.NumRows())
}
col0 := record.Column(0)
defer col0.Release()
blockNumber := col0.(*array.Int64).Value(0)
if blockNumber <= 16410468 {
t.Fatalf("Expected block number > 16410468, got %d", blockNumber)
}
col1 := record.Column(1)
defer col1.Release()
timestamp := col1.(*array.Int64).Value(0)
fiveMinutesAgo := time.Now().Add(-time.Minute * 5).Unix()
if timestamp > fiveMinutesAgo {
t.Fatalf("Expected timestamp > %d, got %d", fiveMinutesAgo, timestamp)
}
col2 := record.Column(2)
defer col2.Release()
hash := col2.(*array.String).Value(0)
if len(hash) != 66 {
t.Fatalf("Expected hash length 66, got %d", len(hash))
}
}
})
}
// Requires local spice running. Follow the quickstart https://github.com/spiceai/spiceai.
func TestLocalRuntime(t *testing.T) {
spice := NewSpiceClient()
defer func() { _ = spice.Close() }()
if err := spice.Init(WithHttpAddress("http://localhost:8090")); err != nil {
t.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
// Check if Spice is healthy
if !spice.IsSpiceHealthy(ctx) {
t.Fatal("Spice instance is not healthy")
}
// Wait for Spice to be ready (with timeout)
timeout := time.After(120 * time.Second)
ticker := time.NewTicker(1 * time.Second)
defer ticker.Stop()
ready := false
for !ready {
select {
case <-timeout:
t.Fatal("Timed out waiting for Spice to be ready")
case <-ticker.C:
if spice.IsSpiceReady(ctx) {
ready = true
}
}
}
t.Run("Query Local Dataset", func(t *testing.T) {
reader, err := spice.Query(ctx, "select * from taxi_trips limit 3;")
if err != nil {
t.Fatalf("error querying: %v", err)
}
defer reader.Release()
for reader.Next() {
record := reader.RecordBatch()
defer record.Release()
}
})
}
// TestSqlWithoutAuth tests the Sql method without authentication against local Spice runtime.
// This verifies that queries work correctly without authentication when no API key is provided.
func TestSqlWithoutAuth(t *testing.T) {
spice := NewSpiceClient()
defer func() { _ = spice.Close() }()
// Initialize without API key - this should work with local runtime
if err := spice.Init(WithHttpAddress("http://localhost:8090")); err != nil {
t.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
// Check if Spice is healthy
if !spice.IsSpiceHealthy(ctx) {
t.Skip("Local Spice instance is not healthy, skipping test")
}
// Wait for Spice to be ready (with timeout)
timeout := time.After(120 * time.Second)
ticker := time.NewTicker(1 * time.Second)
defer ticker.Stop()
ready := false
for !ready {
select {
case <-timeout:
t.Skip("Timed out waiting for Spice to be ready, skipping test")
case <-ticker.C:
if spice.IsSpiceReady(ctx) {
ready = true
}
}
}
t.Run("Sql without auth - simple query", func(t *testing.T) {
reader, err := spice.Sql(ctx, "SELECT 1 as num")
if err != nil {
t.Fatalf("Sql without auth failed: %v", err)
}
defer reader.Release()
schema := reader.Schema()
if !schema.HasField("num") {
t.Fatalf("Schema does not have field 'num'")
}
rowCount := 0
for reader.Next() {
record := reader.RecordBatch()
rowCount += int(record.NumRows())
record.Release()
}
if rowCount != 1 {
t.Fatalf("Expected 1 row, got %d", rowCount)
}
})
t.Run("Sql without auth - dataset query", func(t *testing.T) {
reader, err := spice.Sql(ctx, "SELECT trip_distance, fare_amount FROM taxi_trips LIMIT 5")
if err != nil {
t.Fatalf("Sql without auth failed: %v", err)
}
defer reader.Release()
schema := reader.Schema()
if !schema.HasField("trip_distance") {
t.Fatalf("Schema does not have field 'trip_distance'")
}
if !schema.HasField("fare_amount") {
t.Fatalf("Schema does not have field 'fare_amount'")
}
rowCount := 0
for reader.Next() {
record := reader.RecordBatch()
rowCount += int(record.NumRows())
record.Release()
}
if rowCount == 0 {
t.Fatalf("Expected at least 1 row, got 0")
}
if rowCount > 5 {
t.Fatalf("Expected at most 5 rows, got %d", rowCount)
}
t.Logf("Sql without auth returned %d rows", rowCount)
})
}
// TestSqlWithAuth tests the Sql method with authentication against Spice Cloud.
func TestSqlWithAuth(t *testing.T) {
ApiKey, exists := os.LookupEnv("SPICE_API_KEY")
if !exists || ApiKey == "" {
t.Skip("SPICE_API_KEY not set, skipping cloud authentication test")
}
spice := NewSpiceClient()
defer func() { _ = spice.Close() }()
if err := spice.Init(WithApiKey(ApiKey), WithSpiceCloudAddress()); err != nil {
t.Fatalf("error initializing SpiceClient: %v", err)
}
ctx := context.Background()
// Check if Spice Cloud is healthy and ready
if !spice.IsSpiceHealthy(ctx) {
t.Fatal("Spice Cloud is not healthy")
}
if !spice.IsSpiceReady(ctx) {
t.Fatal("Spice Cloud is not ready (check API key)")
}
t.Run("Sql with auth - simple query", func(t *testing.T) {
reader, err := spice.Sql(ctx, "SELECT 1 as num")
if err != nil {
t.Fatalf("Sql with auth failed: %v", err)
}
defer reader.Release()
schema := reader.Schema()
if !schema.HasField("num") {
t.Fatalf("Schema does not have field 'num'")
}
rowCount := 0
for reader.Next() {
record := reader.RecordBatch()
rowCount += int(record.NumRows())
record.Release()
}
if rowCount != 1 {
t.Fatalf("Expected 1 row, got %d", rowCount)
}
})
t.Run("Sql with auth - taxi_trips query", func(t *testing.T) {
reader, err := spice.Sql(ctx, "SELECT trip_distance, fare_amount FROM taxi_trips ORDER BY trip_distance LIMIT 5")
if err != nil {
t.Fatalf("Sql with auth failed: %v", err)
}
defer reader.Release()
schema := reader.Schema()
if !schema.HasField("trip_distance") {
t.Fatalf("Schema does not have field 'trip_distance'")
}
if !schema.HasField("fare_amount") {
t.Fatalf("Schema does not have field 'fare_amount'")
}
rowCount := 0
for reader.Next() {
record := reader.RecordBatch()
rowCount += int(record.NumRows())
record.Release()
}
if rowCount == 0 {
t.Fatalf("Expected at least 1 row, got 0")
}
if rowCount > 5 {
t.Fatalf("Expected at most 5 rows, got %d", rowCount)
}
t.Logf("Sql with auth returned %d rows", rowCount)
})
}