1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // Copyright erfenjiao, 630166475@qq.com.
- //
- // 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 wasm
- import (
- "fmt"
- "reflect"
- "testing"
- "github.com/lf-edge/ekuiper/internal/plugin/wasm/runtime"
- "github.com/lf-edge/ekuiper/internal/testx"
- )
- func TestValidate(t *testing.T) {
- tests := []struct {
- p *PluginInfo
- err string
- }{
- { // 0 true
- p: &PluginInfo{
- PluginMeta: runtime.PluginMeta{
- Name: "fibonacci",
- Version: "1.0.0",
- WasmEngine: "wasmedge",
- },
- Functions: []string{"fib"},
- },
- err: "",
- }, { // 1
- p: &PluginInfo{
- PluginMeta: runtime.PluginMeta{
- Name: "fibonacci",
- Version: "1.0.0",
- WasmEngine: "wasmedge",
- },
- },
- err: "invalid plugin, must define at lease one function",
- }, { // 2
- p: &PluginInfo{
- PluginMeta: runtime.PluginMeta{
- Name: "fibonacci",
- Version: "1.0.0",
- WasmEngine: "",
- },
- Functions: []string{"fib"},
- },
- err: "invalid WasmEngine",
- }, { // 3
- p: &PluginInfo{
- PluginMeta: runtime.PluginMeta{
- Name: "wrong",
- Version: "1.0.0",
- WasmEngine: "wasmedge",
- },
- Functions: []string{"fib"},
- },
- err: "invalid plugin, expect name 'fibonacci' but got 'wrong'",
- },
- }
- fmt.Printf("The test bucket size is %d.\n\n", len(tests))
- for i, tt := range tests {
- err := tt.p.Validate("fibonacci")
- if !reflect.DeepEqual(tt.err, testx.Errstring(err)) { // not same
- t.Errorf("%d error mismatch:\n\nexp=%#v\n\ngot=%#v\n\n", i, tt.err, err.Error())
- }
- fmt.Println("err: ", err)
- }
- }
|