func_invoker_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright 2022 EMQ Technologies Co., Ltd.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package xsql
  15. import (
  16. "testing"
  17. "github.com/lf-edge/ekuiper/internal/binder"
  18. "github.com/lf-edge/ekuiper/internal/binder/function"
  19. "github.com/lf-edge/ekuiper/pkg/ast"
  20. )
  21. func TestInvoke(t *testing.T) {
  22. err := function.Initialize([]binder.FactoryEntry{})
  23. if err != nil {
  24. t.Error(err)
  25. return
  26. }
  27. err = validateFuncs("sum", []ast.Expr{})
  28. if err == nil || err.Error() != "Expect 1 arguments but found 0." {
  29. t.Error(err)
  30. }
  31. err = validateFuncs("window_start", []ast.Expr{})
  32. if err != nil {
  33. t.Error(err)
  34. }
  35. }