- fraction type renamed as FractionType and moved from operator-fraction.go to fraction-type.go - ListType moved from operator-list.go to list-type.go - all test file were renamed adding the "t_" prefix - defined a test template in file t_temple_test.go - new test file t_relational_test.go where relational tests are collected - lists can now compared as set using operators <, <=, >, and >= (IMPORTANT: here = menas same content, not same list)
82 lines
1.9 KiB
Go
82 lines
1.9 KiB
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
// t_helpers_test.go
|
|
package expr
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func subtract(ctx ExprContext, name string, args []any) (result any, err error) {
|
|
if len(args) != 2 {
|
|
err = fmt.Errorf("%s(): requires exactly two arguments", name)
|
|
return
|
|
}
|
|
x, xok := args[0].(int64)
|
|
y, yok := args[1].(int64)
|
|
if xok && yok {
|
|
result = x - y
|
|
} else {
|
|
err = fmt.Errorf("expected integer (int64) arguments, got %T and %T values", x, y)
|
|
}
|
|
return
|
|
}
|
|
|
|
func TestEvalStringA(t *testing.T) {
|
|
|
|
source := `a + b * subtract(4,2)`
|
|
args := []Arg{
|
|
{"a", uint8(1)},
|
|
{"b", int8(2)},
|
|
{"subtract", FuncTemplate(subtract)},
|
|
// force coverage
|
|
{"a16", uint16(1)},
|
|
{"b16", int16(2)},
|
|
{"a32", uint32(1)},
|
|
{"b32", int32(2)},
|
|
{"a64", uint64(1)},
|
|
{"b64", int64(2)},
|
|
{"f32", float32(1.0)},
|
|
{"f64", float64(1.0)},
|
|
}
|
|
|
|
wantResult := int64(5)
|
|
gotResult, gotErr := EvalStringA(source, args...)
|
|
if value, ok := gotResult.(int64); ok && value != wantResult {
|
|
t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult)
|
|
t.Errorf("Error: %v", gotErr)
|
|
}
|
|
}
|
|
|
|
func TestEvalString(t *testing.T) {
|
|
|
|
ctx := NewSimpleStore()
|
|
ctx.SetVar("a", uint8(1))
|
|
ctx.SetVar("b", int8(2))
|
|
ctx.SetVar("f", 2.0)
|
|
// force coverage
|
|
ctx.SetVar("a16", uint16(1))
|
|
ctx.SetVar("b16", int16(2))
|
|
ctx.SetVar("a32", uint32(1))
|
|
ctx.SetVar("b32", int32(2))
|
|
ctx.SetVar("a64", uint64(1))
|
|
ctx.SetVar("b64", int64(2))
|
|
ctx.SetVar("f32", float32(1.0))
|
|
ctx.SetVar("f64", float64(1.0))
|
|
|
|
// force coverage
|
|
ctx.GetFuncInfo("dummy")
|
|
ctx.Call("dummy", []any{})
|
|
|
|
source := `a + b * f`
|
|
|
|
wantResult := float64(5)
|
|
gotResult, gotErr := EvalString(ctx, source)
|
|
if value, ok := gotResult.(float64); ok && value != wantResult {
|
|
t.Errorf("Source %q got %v, want %v", source, gotResult, wantResult)
|
|
t.Errorf("Error: %v", gotErr)
|
|
}
|
|
}
|