-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolyscript_test.go
More file actions
648 lines (552 loc) · 17.3 KB
/
polyscript_test.go
File metadata and controls
648 lines (552 loc) · 17.3 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
package polyscript_test
import (
"context"
"errors"
"fmt"
"io"
"log/slog"
"net/url"
"os"
"path/filepath"
"strings"
"testing"
"github.com/robbyt/go-polyscript"
"github.com/robbyt/go-polyscript/engines/mocks"
"github.com/robbyt/go-polyscript/engines/types"
"github.com/robbyt/go-polyscript/platform"
"github.com/robbyt/go-polyscript/platform/data"
"github.com/robbyt/go-polyscript/platform/script/loader"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
// mockPreparer implements evaluation.EvalDataPreparer for testing
type mockPreparer struct {
mock.Mock
}
func (m *mockPreparer) AddDataToContext(
ctx context.Context,
data ...map[string]any,
) (context.Context, error) {
args := m.Called(ctx, data)
return args.Get(0).(context.Context), args.Error(1)
}
// evalAndExtractMap runs evaluation and extracts result as a map[string]any
func evalAndExtractMap(
t *testing.T,
ctx context.Context,
evaluator platform.EvalOnly,
) (map[string]any, error) {
t.Helper()
// Evaluate the script
result, err := evaluator.Eval(ctx)
if err != nil {
return nil, fmt.Errorf("script evaluation failed: %w", err)
}
// Process the result
val := result.Interface()
if val == nil {
return map[string]any{}, nil
}
data, ok := val.(map[string]any)
if !ok {
return nil, fmt.Errorf("result is not a map: %T", val)
}
return data, nil
}
// prepareAndEval combines context preparation and evaluation in a single operation
func prepareAndEval(
t *testing.T,
ctx context.Context,
evaluator platform.Evaluator,
runtimeData map[string]any,
) (platform.EvaluatorResponse, error) {
t.Helper()
enrichedCtx, err := evaluator.AddDataToContext(ctx, runtimeData)
if err != nil {
return nil, fmt.Errorf("failed to prepare context: %w", err)
}
// Evaluate with the enriched context
result, err := evaluator.Eval(enrichedCtx)
if err != nil {
return nil, fmt.Errorf("script evaluation failed: %w", err)
}
return result, nil
}
// Test machine-specific evaluator creators
func TestMachineEvaluators(t *testing.T) {
t.Parallel()
tests := []struct {
name string
content string
machineType types.Type
creator func(string, slog.Handler) (platform.Evaluator, error)
}{
{
name: "FromStarlarkString",
content: `print("Hello, World!")`,
machineType: types.Starlark,
creator: polyscript.FromStarlarkString,
},
{
name: "FromRisorString",
content: `print("Hello, World!")`,
machineType: types.Risor,
creator: polyscript.FromRisorString,
},
}
for _, tc := range tests {
tc := tc // Capture for parallel execution
t.Run(tc.name, func(t *testing.T) {
// Create evaluator directly with content and logger
evaluator, err := tc.creator(tc.content, nil)
require.NoError(t, err)
require.NotNil(t, evaluator)
})
}
}
func TestFromStringLoaders(t *testing.T) {
t.Parallel()
tests := []struct {
name string
content string
creator func(string, slog.Handler) (platform.Evaluator, error)
logHandler slog.Handler
expectError bool
}{
{
name: "FromStarlarkString - Valid",
content: `print("Hello, World!")`,
creator: polyscript.FromStarlarkString,
logHandler: nil,
expectError: false,
},
{
name: "FromRisorString - Valid",
content: `print("Hello, World!")`,
creator: polyscript.FromRisorString,
logHandler: nil,
expectError: false,
},
{
name: "FromStarlarkString - Empty",
content: "",
creator: polyscript.FromStarlarkString,
logHandler: nil,
expectError: true,
},
{
name: "FromRisorString - Empty",
content: "",
creator: polyscript.FromRisorString,
logHandler: nil,
expectError: true,
},
}
for _, tc := range tests {
tc := tc // Capture for parallel execution
t.Run(tc.name, func(t *testing.T) {
evaluator, err := tc.creator(tc.content, tc.logHandler)
if tc.expectError {
require.Error(t, err)
return
}
require.NoError(t, err)
require.NotNil(t, evaluator)
})
}
}
func TestFromFileLoaders(t *testing.T) {
t.Parallel()
// Create a temporary directory for test files
tmpDir := t.TempDir()
risorPath := filepath.Join(tmpDir, "test.risor")
starlarkPath := filepath.Join(tmpDir, "test.star")
// Create a basic Risor script
risorContent := `{ "message": "Hello from Risor!" }`
err := os.WriteFile(risorPath, []byte(risorContent), 0o644)
require.NoError(t, err)
// Create a basic Starlark script
starlarkContent := `result = {"message": "Hello from Starlark!"}
_ = result`
err = os.WriteFile(starlarkPath, []byte(starlarkContent), 0o644)
require.NoError(t, err)
t.Run("FromRisorFile - Valid", func(t *testing.T) {
evaluator, err := polyscript.FromRisorFile(risorPath, nil)
require.NoError(t, err)
require.NotNil(t, evaluator)
// Basic execution
result, err := evaluator.Eval(t.Context())
require.NoError(t, err)
require.NotNil(t, result)
})
t.Run("FromRisorFile - Invalid Path", func(t *testing.T) {
_, err := polyscript.FromRisorFile("non-existent-file.risor", nil)
require.Error(t, err)
})
t.Run("FromRisorFileWithData - Valid", func(t *testing.T) {
staticData := map[string]any{
"test_key": "test_value",
}
evaluator, err := polyscript.FromRisorFileWithData(risorPath, staticData, nil)
require.NoError(t, err)
require.NotNil(t, evaluator)
})
t.Run("FromStarlarkFile - Valid", func(t *testing.T) {
evaluator, err := polyscript.FromStarlarkFile(starlarkPath, nil)
require.NoError(t, err)
require.NotNil(t, evaluator)
// Basic execution
result, err := evaluator.Eval(t.Context())
require.NoError(t, err)
require.NotNil(t, result)
})
t.Run("FromStarlarkFile - Invalid Path", func(t *testing.T) {
_, err := polyscript.FromStarlarkFile("non-existent-file.star", nil)
require.Error(t, err)
})
t.Run("FromStarlarkFileWithData - Valid", func(t *testing.T) {
staticData := map[string]any{
"test_key": "test_value",
}
evaluator, err := polyscript.FromStarlarkFileWithData(starlarkPath, staticData, nil)
require.NoError(t, err)
require.NotNil(t, evaluator)
})
}
func TestDataProviders(t *testing.T) {
t.Parallel()
t.Run("withCompositeProvider", func(t *testing.T) {
// Create a simple script that uses composite data
script := `print(ctx["static_key"], ", ", ctx["dynamic_key"])`
// Create static data
staticData := map[string]any{
"static_key": "static_value",
} // Create an evaluator with composite provider
evaluator, err := polyscript.FromStarlarkStringWithData(
script,
staticData,
nil,
)
require.NoError(t, err)
require.NotNil(t, evaluator)
// Test adding dynamic data
ctx := t.Context()
dynamicData := map[string]any{"dynamic_key": "dynamic_value"}
enrichedCtx, err := evaluator.AddDataToContext(ctx, dynamicData)
require.NoError(t, err)
// Execute the script (won't fail if print works correctly)
_, err = evaluator.Eval(enrichedCtx)
require.NoError(t, err)
})
}
func TestEvalHelpers(t *testing.T) {
t.Parallel()
t.Run("PrepareAndEval", func(t *testing.T) {
// Create a simple Risor evaluator
script := `
name := ctx["name"]
{
"message": "Hello, " + name + "!",
"length": len(name)
}
`
// Create an evaluator with the CompositeProvider
evaluator, err := polyscript.FromRisorStringWithData(
script,
map[string]any{},
nil,
)
require.NoError(t, err)
// Test the PrepareAndEval function
result, err := prepareAndEval(
t,
t.Context(),
evaluator,
map[string]any{"name": "World"},
)
require.NoError(t, err)
require.NotNil(t, result)
// Verify the result
resultMap, ok := result.Interface().(map[string]any)
require.True(t, ok)
assert.Equal(t, "Hello, World!", resultMap["message"])
// Check length without assuming the exact numeric type
length := resultMap["length"]
require.NotNil(t, length, "length field should be present")
switch v := length.(type) {
case int64:
assert.Equal(t, int64(5), v, "length should be 5")
case float64:
assert.InDelta(t, float64(5), v, 0.0001, "length should be 5")
default:
t.Errorf("length is unexpected type %T", v)
}
// Create error-producing mocks
t.Run("AddDataToContext error", func(t *testing.T) {
// Create mocks for testing error cases
mockPrepCtx := &mockPreparer{}
mockEval := &mocks.Evaluator{}
// Create context and data
ctx := t.Context()
d := map[string]any{"name": "World"}
// Mock AddDataToContext to return an error
mockPrepCtx.On("AddDataToContext", ctx, mock.Anything).
Return(ctx, errors.New("prepare error"))
// Create a mock evaluator that implements both interfaces
mockEvalWithPrep := struct {
platform.EvalOnly
data.Setter
}{
EvalOnly: mockEval,
Setter: mockPrepCtx,
}
// PrepareAndEval should return the prepare error
_, err = prepareAndEval(t, ctx, mockEvalWithPrep, d)
require.Error(t, err)
assert.Contains(t, err.Error(), "failed to prepare context")
mockPrepCtx.AssertExpectations(t)
})
t.Run("Eval error", func(t *testing.T) {
// Create mocks for testing error cases
mockPrepCtx := &mockPreparer{}
mockEval := &mocks.Evaluator{}
// Create context and data
ctx := t.Context()
d := map[string]any{"name": "World"}
// Mock AddDataToContext to succeed
// Define a type for context keys to avoid linting warnings
type contextKey string
testKey := contextKey("test-key")
enrichedCtx := context.WithValue(ctx, testKey, "test-value")
mockPrepCtx.On("AddDataToContext", ctx, mock.Anything).Return(enrichedCtx, nil)
// Mock Eval to fail
mockEval.On("Eval", enrichedCtx).
Return((*mocks.EvaluatorResponse)(nil), errors.New("eval error"))
// Create a mock evaluator that implements both interfaces
mockEvalWithPrep := struct {
platform.EvalOnly
data.Setter
}{
EvalOnly: mockEval,
Setter: mockPrepCtx,
}
// PrepareAndEval should return the eval error
_, err = prepareAndEval(t, ctx, mockEvalWithPrep, d)
require.Error(t, err)
assert.Contains(t, err.Error(), "script evaluation failed")
mockPrepCtx.AssertExpectations(t)
mockEval.AssertExpectations(t)
})
})
t.Run("EvalAndExtractMap", func(t *testing.T) {
// Create a simple Risor evaluator
script := `
{
"message": "Hello, Static!",
"length": 12
}
`
// Create an evaluator
evaluator, err := polyscript.FromRisorStringWithData(
script,
map[string]any{},
nil,
)
require.NoError(t, err)
// Test EvalAndExtractMap
resultMap, err := evalAndExtractMap(t, t.Context(), evaluator)
require.NoError(t, err)
// Verify the result
assert.Equal(t, "Hello, Static!", resultMap["message"])
// Check length without assuming the exact numeric type
length := resultMap["length"]
require.NotNil(t, length, "length field should be present")
switch v := length.(type) {
case int64:
assert.Equal(t, int64(12), v, "length should be 12")
case float64:
assert.InDelta(t, float64(12), v, 0.0001, "length should be 12")
default:
t.Errorf("length is unexpected type %T", v)
}
// Test with nil result
nilScript := `nil`
nilEvaluator, err := polyscript.FromRisorString(
nilScript,
nil,
)
require.NoError(t, err)
nilResult, err := evalAndExtractMap(t, t.Context(), nilEvaluator)
require.NoError(t, err)
assert.Equal(t, map[string]any{}, nilResult)
// Test with non-map result (should error)
numScript := `42`
numEvaluator, err := polyscript.FromRisorString(
numScript,
nil,
)
require.NoError(t, err)
_, err = evalAndExtractMap(t, t.Context(), numEvaluator)
require.Error(t, err)
assert.Contains(t, err.Error(), "result is not a map")
// Test with evaluation error
t.Run("Eval error", func(t *testing.T) {
mockEval := &mocks.Evaluator{}
ctx := t.Context()
// Mock Eval to return an error
mockEval.On("Eval", ctx).
Return((*mocks.EvaluatorResponse)(nil), errors.New("eval error"))
// EvalAndExtractMap should return the error
_, err = evalAndExtractMap(t, ctx, mockEval)
require.Error(t, err)
assert.Contains(t, err.Error(), "script evaluation failed")
mockEval.AssertExpectations(t)
})
})
}
func TestDataIntegrationScenarios(t *testing.T) {
t.Parallel()
// Create a temporary directory for test files
tmpDir := t.TempDir()
risorPath := filepath.Join(tmpDir, "test.risor")
starlarkPath := filepath.Join(tmpDir, "test.star")
// Create a basic Risor script that uses context
risorFileContent := `// Get data from context
{
"message": "Hello, " + ctx["name"] + " (v" + ctx["app_version"] + ")",
"timeout": ctx["config"]["timeout"]
}`
err := os.WriteFile(risorPath, []byte(risorFileContent), 0o644)
require.NoError(t, err)
// Create a basic Starlark script that uses context
starlarkFileContent := `# Simple Starlark script
result = {
"message": "Hello, " + ctx["name"] + " (v" + ctx["app_version"] + ")",
"timeout": ctx["config"]["timeout"]
}
_ = result`
err = os.WriteFile(starlarkPath, []byte(starlarkFileContent), 0o644)
require.NoError(t, err)
// Common test data
staticData := map[string]any{
"app_version": "1.0.0",
"config": map[string]any{
"timeout": 30,
},
}
t.Run("RisorWithData", func(t *testing.T) {
// Test script
risorScript := `
// Access static data
version := ctx["app_version"]
timeout := ctx["config"]["timeout"]
// Access dynamic data
name := ctx["name"]
{
"message": "Hello, " + name + " (v" + version + ")",
"timeout": timeout
}
`
// Create evaluator with static data
risorEval, err := polyscript.FromRisorStringWithData(
risorScript,
staticData,
nil,
)
require.NoError(t, err)
// Test with dynamic data
ctx := t.Context()
dynamicData := map[string]any{"name": "Risor User"}
enrichedCtx, err := risorEval.AddDataToContext(ctx, dynamicData)
require.NoError(t, err)
risorResult, err := risorEval.Eval(enrichedCtx)
require.NoError(t, err)
risorMap, ok := risorResult.Interface().(map[string]any)
require.True(t, ok)
assert.Equal(t, "Hello, Risor User (v1.0.0)", risorMap["message"])
// Check timeout without assuming specific number type
timeout := risorMap["timeout"]
require.NotNil(t, timeout, "timeout field should be present")
switch v := timeout.(type) {
case int64:
assert.Equal(t, int64(30), v, "timeout should be 30")
case float64:
assert.InDelta(t, float64(30), v, 0.0001, "timeout should be 30")
default:
t.Errorf("timeout is unexpected type %T", v)
}
})
t.Run("StarlarkWithData", func(t *testing.T) {
// Create evaluator with static data
starlarkEval, err := polyscript.FromStarlarkFileWithData(
starlarkPath,
staticData,
nil,
)
require.NoError(t, err)
// Test with dynamic data
ctx := t.Context()
dynamicData := map[string]any{"name": "Starlark User"}
enrichedCtx, err := starlarkEval.AddDataToContext(ctx, dynamicData)
require.NoError(t, err)
starlarkResult, err := starlarkEval.Eval(enrichedCtx)
require.NoError(t, err)
starlarkMap, ok := starlarkResult.Interface().(map[string]any)
require.True(t, ok)
assert.Equal(t, "Hello, Starlark User (v1.0.0)", starlarkMap["message"])
// Check timeout without assuming specific number type
starlarkTimeout := starlarkMap["timeout"]
require.NotNil(t, starlarkTimeout, "timeout field should be present")
assert.Equal(t, int64(30), starlarkTimeout, "timeout should be 30")
})
}
func TestCreateEvaluatorEdgeCases(t *testing.T) {
t.Parallel()
// Test error with empty script content
t.Run("Empty Script Content Error", func(t *testing.T) {
// Try to create an evaluator with empty script
_, err := polyscript.FromRisorString("", nil)
require.Error(t, err)
assert.Contains(t, err.Error(), "content is empty")
})
// Test invalid path error
t.Run("Invalid Path Error", func(t *testing.T) {
// Try to create an evaluator with non-existent file
_, err := polyscript.FromRisorFile("/path/does/not/exist.risor", nil)
require.Error(t, err)
assert.Contains(t, err.Error(), "no such file or directory")
})
// Test with invalid script content
t.Run("InvalidScriptTest", func(t *testing.T) {
// Try to create an evaluator with invalid script content
_, err := polyscript.FromRisorString("this is not valid risor code }{", nil)
// Should return an error when trying to compile invalid code
require.Error(t, err)
assert.Contains(t, err.Error(), "compile")
})
}
// MockStringLoader is a simple implementation of loader.Loader using a string
type MockStringLoader struct{}
func (m *MockStringLoader) GetReader() (io.ReadCloser, error) {
return io.NopCloser(strings.NewReader("return 0")), nil
}
func (m *MockStringLoader) GetSourceURL() *url.URL {
return nil
}
func TestFromStringLoader(t *testing.T) {
t.Parallel()
// Test the Extism string loader error case directly
t.Run("ExtismStringNotSupported", func(t *testing.T) {
// Just test if a hypothetical FromExtismString would have issues
// For now, we'll simulate this by testing if we can create a string loader
content := "test"
l, err := loader.NewFromString(content)
require.NoError(t, err)
// Since we know Extism is for WASM modules, string content
// would not be valid WASM, so this would fail.
// Just verify our loader was created correctly
require.NotNil(t, l)
require.NotNil(t, l.GetSourceURL())
})
}